*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #ffffff;
    --bg-alt: #f7f6f2;
    --bg-dark: #0f1c14;
    --ink: #0f1c14;
    --ink-2: #4a5550;
    --ink-3: #8a938f;
    --accent: #1a8754;
    --accent-2: #14a86a;
    --accent-soft: #e7f5ee;
    --accent-dark: #0e5e3a;
    --gold: #d4a435;
    --gold-soft: #fbf2dc;
    --border: rgba(15, 28, 20, 0.08);
    --border-strong: rgba(15, 28, 20, 0.15);
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 4px 20px rgba(15, 28, 20, 0.06);
    --shadow-lg: 0 20px 60px rgba(15, 28, 20, 0.12);
    --radius: 18px;
    --radius-sm: 10px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.btn-primary { background: var(--accent); color: white; box-shadow: 0 4px 16px rgba(26, 135, 84, 0.25); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26, 135, 84, 0.35); }

.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--border-strong); }
.btn-ghost:hover { background: var(--ink); color: white; border-color: var(--ink); }

.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-full { width: 100%; }

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    gap: 24px;
}

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

.logo {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(26, 135, 84, 0.3);
}

.brand-name {
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.5px;
}

.nav { display: flex; gap: 32px; flex: 1; justify-content: center; }
.nav a { font-size: 14px; font-weight: 500; color: var(--ink-2); }
.nav a:hover { color: var(--accent); }

.menu-toggle { display: none; font-size: 24px; padding: 4px 8px; }

/* ===== HERO ===== */
.hero {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, var(--accent-soft) 0%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(212, 164, 53, 0.15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.badge {
    display: inline-block;
    background: white;
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-2);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.hero h1 {
    font-family: 'Lora', serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.accent { color: var(--accent); font-style: italic; }

.lead {
    font-size: 18px;
    color: var(--ink-2);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong {
    font-family: 'Lora', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--ink);
}
.hero-stats span { font-size: 13px; color: var(--ink-3); margin-top: 2px; }

/* ===== HERO VISUAL ===== */
.hero-visual {
    position: relative;
    perspective: 1000px;
}

.article-mock {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transform: rotate(-2deg);
    transition: transform 0.4s ease;
}

.article-mock:hover { transform: rotate(0deg) translateY(-8px); }

.mock-header {
    padding: 14px 16px;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border);
}

.mock-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border-strong); }
.mock-url {
    margin-left: 12px;
    font-size: 12px;
    color: var(--ink-3);
    background: white;
    padding: 4px 12px;
    border-radius: 6px;
    flex: 1;
}

.mock-body { padding: 32px 28px; }
.mock-tag {
    display: inline-block;
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.mock-body h3 {
    font-family: 'Lora', serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
}
.mock-meta { font-size: 12px; color: var(--ink-3); margin-bottom: 20px; }
.mock-line { height: 8px; background: var(--bg-alt); border-radius: 4px; margin-bottom: 10px; }
.mock-h2 { height: 14px; width: 60%; background: var(--ink); border-radius: 4px; margin: 22px 0 14px; }
.w-100 { width: 100%; } .w-95 { width: 95%; } .w-92 { width: 92%; }
.w-90 { width: 90%; } .w-85 { width: 85%; } .w-78 { width: 78%; }

.float-card {
    position: absolute;
    background: white;
    padding: 14px 18px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 4s ease-in-out infinite;
}

.float-card-1 { top: 20px; left: -30px; animation-delay: 0s; }
.float-card-2 { bottom: 30px; right: -20px; animation-delay: 1.5s; }

.float-card strong { display: block; font-size: 13px; }
.float-card span { font-size: 11px; color: var(--ink-3); }

.float-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
}
.float-icon.green { background: var(--accent); }
.float-icon.gold { background: var(--gold); }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== TRUST BAR ===== */
.trust { padding: 40px 0; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-label {
    text-align: center;
    font-size: 12px;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.trust-logos {
    display: flex;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
    align-items: center;
}
.trust-logos span {
    font-family: 'Lora', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink-3);
    letter-spacing: 1px;
    opacity: 0.6;
    transition: var(--transition);
}
.trust-logos span:hover { opacity: 1; color: var(--ink); }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }

.section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    padding: 4px 14px;
    background: var(--accent-soft);
    border-radius: 30px;
}

.section-tag.light { background: rgba(255,255,255,0.1); color: var(--accent-2); }

.section-head h2 {
    font-family: 'Lora', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-head p { font-size: 17px; color: var(--ink-2); }

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--accent-soft);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 56px; height: 56px;
    background: var(--accent-soft);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
}

.service-card h3 {
    font-family: 'Lora', serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p { color: var(--ink-2); font-size: 14px; }

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.price-card {
    background: white;
    padding: 36px 28px;
    border-radius: var(--radius);
    border: 2px solid var(--border);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-card.featured {
    border-color: var(--accent);
    box-shadow: 0 12px 40px rgba(26, 135, 84, 0.15);
    transform: scale(1.03);
}

.price-card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: var(--shadow-lg); }
.price-card.featured:hover { transform: scale(1.03) translateY(-4px); }

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.price-card .words {
    font-family: 'Lora', serif;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 4px;
}

.price-card .desc { color: var(--ink-3); font-size: 13px; margin-bottom: 24px; }

.price-card .price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 24px;
}

.price-card .price strong {
    font-family: 'Lora', serif;
    font-size: 44px;
    font-weight: 700;
    color: var(--ink);
}
.price-card .price span { color: var(--ink-3); font-size: 14px; }

.price-card ul { list-style: none; margin-bottom: 28px; flex: 1; }
.price-card li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--ink-2);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid var(--border);
}
.price-card li:last-child { border-bottom: none; }
.price-card li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}

.bulk-banner {
    background: linear-gradient(135deg, var(--ink) 0%, #1a2e22 100%);
    color: white;
    border-radius: var(--radius);
    padding: 36px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.bulk-banner h3 {
    font-family: 'Lora', serif;
    font-size: 24px;
    margin-bottom: 6px;
}

.bulk-banner p { color: rgba(255,255,255,0.7); font-size: 15px; }
.bulk-banner strong { color: var(--gold); }

/* ===== PROCESS ===== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-card {
    text-align: center;
    padding: 32px 20px;
    position: relative;
}

.step-num {
    display: inline-block;
    font-family: 'Lora', serif;
    font-size: 50px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 14px;
    line-height: 1;
    -webkit-text-stroke: 1px var(--accent);
    color: transparent;
}

.process-card h3 {
    font-family: 'Lora', serif;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
}

.process-card p { color: var(--ink-2); font-size: 14px; }

/* ===== SAMPLES ===== */
.samples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sample-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.sample-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-soft);
}

.sample-cat {
    display: inline-block;
    background: var(--gold-soft);
    color: var(--gold);
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.sample-card h3 {
    font-family: 'Lora', serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

.sample-card p { color: var(--ink-2); font-size: 14px; margin-bottom: 20px; }

.sample-meta {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--ink-3);
    font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial {
    background: white;
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.stars { color: var(--gold); margin-bottom: 14px; letter-spacing: 2px; }
.testimonial p {
    font-family: 'Lora', serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    margin-bottom: 20px;
}

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

.avatar {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.author strong { display: block; font-size: 14px; }
.author span { font-size: 12px; color: var(--ink-3); }

/* ===== ORDER ===== */
.section-dark {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #14241a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(26, 135, 84, 0.2), transparent 70%);
    border-radius: 50%;
}

.order-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    position: relative;
}

.order-info h2 {
    font-family: 'Lora', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 700;
    margin: 16px 0 16px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.order-info p { color: rgba(255,255,255,0.7); margin-bottom: 28px; }

.order-features { list-style: none; }
.order-features li {
    padding: 10px 0;
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.order-features li:last-child { border-bottom: none; }

.order-form {
    background: white;
    color: var(--ink);
    padding: 36px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }

.form-group { margin-bottom: 16px; }

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-alt);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: white;
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-group textarea { resize: vertical; min-height: 90px; }

.total-box {
    background: var(--accent-soft);
    border: 1.5px solid var(--accent);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 8px 0 16px;
}

.total-box span { font-weight: 600; color: var(--ink-2); font-size: 14px; }
.total-box strong {
    font-family: 'Lora', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--accent);
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--ink-3);
    margin-top: 12px;
}

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover { border-color: var(--accent-soft); }
.faq-item.open { border-color: var(--accent); box-shadow: var(--shadow); }

.faq-q {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-q::after {
    content: '+';
    font-size: 24px;
    color: var(--accent);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-q::after { transform: rotate(45deg); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 24px 22px;
}

.faq-a p { color: var(--ink-2); font-size: 15px; line-height: 1.7; }

/* ===== CTA ===== */
.cta {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1), transparent 50%);
}

.cta h2 {
    font-family: 'Lora', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
    position: relative;
}

.cta p {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    position: relative;
}

.cta .btn-primary {
    background: white;
    color: var(--accent);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    position: relative;
}

.cta .btn-primary:hover { background: var(--ink); color: white; }

/* ===== FOOTER ===== */
.footer {
    background: var(--ink);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .brand { margin-bottom: 16px; color: white; }
.footer-brand .brand-name { color: white; }
.footer-brand p { font-size: 14px; max-width: 300px; }

.footer h4 {
    color: white;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer a {
    display: block;
    padding: 6px 0;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}
.footer a:hover { color: var(--accent-2); }

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(150px);
    background: var(--ink);
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 300;
    pointer-events: none;
    max-width: calc(100% - 40px);
    text-align: center;
}

.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { background: var(--accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { order: -1; max-width: 480px; margin: 0 auto; }
    .services-grid, .pricing-grid, .samples-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .price-card.featured { transform: none; }
    .price-card.featured:hover { transform: translateY(-4px); }
    .order-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
    .nav { display: none; }
    .menu-toggle { display: block; }
    .nav.open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
    }
    .hero { padding: 50px 0 70px; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .hero-stats strong { font-size: 22px; }
    .section { padding: 70px 0; }
    .section-head { margin-bottom: 40px; }
    .services-grid, .pricing-grid, .samples-grid, .testimonial-grid, .process-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .order-form { padding: 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .bulk-banner { flex-direction: column; text-align: center; padding: 28px 24px; }
    .float-card { display: none; }
    .article-mock { transform: none; }
    .trust-logos { gap: 28px; }
    .trust-logos span { font-size: 14px; }
}
