/* Twinkle Pet Food - Premium B2B Styles */
:root {
    --primary: #3c225c;
    --primary-dark: #2a1840;
    --primary-light: #5a3d7a;
    --gold: #c9a227;
    --gold-light: #e8c547;
    --beige: #f5f0e8;
    --beige-dark: #e8e0d4;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-400: #adb5bd;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --black: #1a1a1a;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 2px 8px rgba(60,34,92,0.08);
    --shadow-md: 0 8px 32px rgba(60,34,92,0.12);
    --shadow-lg: 0 16px 48px rgba(60,34,92,0.16);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; color: var(--primary); }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-label { display: inline-block; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); margin-bottom: 12px; }
.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.light h2, .section-header.light .section-label { color: var(--white); }
.bg-beige { background: var(--beige); }
.bg-dark { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); color: var(--white); }
.bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--white); }

/* Glass Card */
.glass-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 28px; font-family: var(--font-body); font-size: 0.9375rem; font-weight: 600;
    border-radius: 50px; border: 2px solid transparent; cursor: pointer;
    transition: all var(--transition); text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: var(--white); color: var(--primary); }
.btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); color: var(--primary-dark); }
.btn-glass { background: rgba(255,255,255,0.15); color: var(--white); border-color: rgba(255,255,255,0.3); backdrop-filter: blur(10px); }
.btn-glass:hover { background: rgba(255,255,255,0.25); color: var(--white); }
.btn-white { background: var(--white); color: var(--primary); }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-link { font-weight: 600; color: var(--primary); }
.btn-link.gold { color: var(--gold); }

/* Header */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: all var(--transition); }
.site-header.scrolled { background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); box-shadow: var(--shadow-sm); }
.header-top { background: var(--primary-dark); color: rgba(255,255,255,0.8); font-size: 0.8125rem; padding: 8px 0; }
.header-top-inner { display: flex; justify-content: space-between; align-items: center; }
.header-top a { color: rgba(255,255,255,0.8); }
.header-top a:hover { color: var(--gold); }
.header-top .sep { margin: 0 12px; opacity: 0.4; }
.header-main { display: flex; align-items: center; justify-content: space-between; height: var(--header-height); }
.logo img { height: 48px; width: auto; }
.nav-menu { display: flex; list-style: none; gap: 4px; }
.nav-item { position: relative; }
.nav-item > a { display: block; padding: 12px 16px; font-weight: 500; font-size: 0.9375rem; color: var(--gray-800); border-radius: 8px; transition: all var(--transition); }
.nav-item > a:hover, .nav-item:hover > a { color: var(--primary); background: rgba(60,34,92,0.05); }
.header-right { display: flex; align-items: center; gap: 16px; }
.search-toggle, .mobile-toggle { background: none; border: none; cursor: pointer; padding: 8px; color: var(--primary); }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--primary); transition: var(--transition); }

/* Mega Menu */
.mega-menu {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px);
    background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
    padding: 24px; min-width: 480px; opacity: 0; visibility: hidden; transition: all var(--transition);
}
.has-mega:hover .mega-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mega-item { display: flex; flex-direction: column; align-items: center; padding: 16px; border-radius: var(--radius); text-align: center; transition: var(--transition); }
.mega-item:hover { background: var(--beige); }
.mega-icon { font-size: 1.5rem; margin-bottom: 8px; }

/* Language Switcher */
.lang-switcher { position: relative; }
.lang-btn { background: none; border: none; color: rgba(255,255,255,0.8); cursor: pointer; display: flex; align-items: center; gap: 4px; font-size: 0.8125rem; }
.lang-dropdown { position: absolute; top: 100%; right: 0; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-md); list-style: none; min-width: 140px; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 100; }
.lang-switcher.open .lang-dropdown { opacity: 1; visibility: visible; }
.lang-dropdown a { display: block; padding: 10px 16px; color: var(--gray-800); font-size: 0.875rem; }
.lang-dropdown a:hover, .lang-dropdown a.active { background: var(--beige); color: var(--primary); }

/* Search */
.search-overlay { position: fixed; inset: 0; background: rgba(60,34,92,0.95); z-index: 2000; display: flex; align-items: flex-start; padding-top: 120px; opacity: 0; visibility: hidden; transition: var(--transition); }
.search-overlay.active { opacity: 1; visibility: visible; }
.search-box input { width: 100%; padding: 20px 24px; font-size: 1.25rem; border: none; border-radius: var(--radius); background: var(--white); }
.search-results { margin-top: 16px; background: var(--white); border-radius: var(--radius); max-height: 400px; overflow-y: auto; }
.search-results a { display: block; padding: 16px 24px; border-bottom: 1px solid var(--gray-200); color: var(--gray-800); }
.search-results a:hover { background: var(--beige); }

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-video-wrap { position: absolute; inset: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(60,34,92,0.85) 0%, rgba(42,24,64,0.7) 50%, rgba(60,34,92,0.5) 100%); }
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 800px; padding-top: var(--header-height); }
.hero-badge { display: inline-block; padding: 8px 20px; background: rgba(201,162,39,0.2); border: 1px solid var(--gold); border-radius: 50px; font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 24px; }
.hero-title { color: var(--white); margin-bottom: 20px; }
.hero-subtitle { font-size: clamp(1.125rem, 2vw, 1.5rem); opacity: 0.9; margin-bottom: 40px; font-weight: 300; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero-scroll span { display: block; width: 24px; height: 40px; border: 2px solid rgba(255,255,255,0.5); border-radius: 12px; position: relative; }
.hero-scroll span::after { content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: var(--white); border-radius: 2px; animation: scrollDown 2s infinite; }
@keyframes scrollDown { 0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); } 50% { opacity: 0.3; transform: translateX(-50%) translateY(12px); } }

/* Stats Grid */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; margin-bottom: 60px; }
.stat-card { padding: 32px 24px; text-align: center; transition: var(--transition); }
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stat-icon { width: 48px; height: 48px; margin: 0 auto 16px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: 12px; }
.stat-card p { font-weight: 600; color: var(--primary); font-size: 0.9375rem; }

/* Gallery */
.overview-gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 16px; }
.gallery-large { grid-row: span 2; }
.gallery-item { border-radius: var(--radius-lg); overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.05); }

/* Products */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 32px; }
.product-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-image { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-image img { transform: scale(1.08); }
.product-overlay { position: absolute; inset: 0; background: rgba(60,34,92,0.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.product-card:hover .product-overlay { opacity: 1; }
.product-info { padding: 24px; }
.product-category { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); }
.product-info h3 { margin: 8px 0 12px; }
.product-info p { color: var(--gray-600); font-size: 0.9375rem; margin-bottom: 16px; }
.product-actions { display: flex; gap: 16px; }

/* Split Section */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.feature-list { list-style: none; margin: 24px 0 32px; }
.feature-list li { padding: 12px 0 12px 32px; position: relative; border-bottom: 1px solid var(--gray-200); }
.feature-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* Process Timeline */
.process-timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 24px; }
.process-step { text-align: center; padding: 24px; }
.process-number { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold); margin-bottom: 12px; }
.process-step h4 { color: var(--white); font-family: var(--font-body); font-size: 0.9375rem; font-weight: 600; }

/* Certifications */
.cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px; }
.cert-card { padding: 32px 24px; text-align: center; }
.cert-logo { font-weight: 700; font-size: 1rem; color: var(--primary); margin-bottom: 8px; }

/* Export Map */
.export-map-wrap { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }
.world-map { position: relative; }
.map-marker { position: absolute; width: 12px; height: 12px; background: var(--gold); border-radius: 50%; transform: translate(-50%, -50%); box-shadow: 0 0 0 4px rgba(201,162,39,0.3); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 4px rgba(201,162,39,0.3); } 50% { box-shadow: 0 0 0 12px rgba(201,162,39,0); } }
.export-regions { display: flex; flex-direction: column; gap: 16px; }
.region-card { padding: 20px; background: var(--white); border-radius: var(--radius); border-left: 4px solid var(--gold); }
.region-card h4 { margin-bottom: 4px; font-size: 1rem; }

/* Why Grid */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.why-card { padding: 32px 24px; text-align: center; background: var(--beige); border-radius: var(--radius-lg); transition: var(--transition); }
.why-card:hover { background: var(--white); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-icon { width: 40px; height: 40px; margin: 0 auto 16px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-radius: 50%; }

/* Testimonials */
.testimonials-slider { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.testimonial-card { padding: 32px; }
.testimonial-card p { font-size: 1.0625rem; font-style: italic; margin-bottom: 20px; color: var(--gray-600); }
.testimonial-card footer strong { display: block; color: var(--primary); }
.testimonial-card footer span { font-size: 0.875rem; color: var(--gray-400); }

/* News */
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }
.news-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.news-card img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.news-content { padding: 24px; }
.news-content time { font-size: 0.8125rem; color: var(--gray-400); }
.news-content h3 { margin: 8px 0 12px; }
.news-content h3 a { color: var(--primary); }
.news-content h3 a:hover { color: var(--gold); }

/* Trade Shows */
.shows-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.show-card { padding: 32px; text-align: center; }
.show-card h4 { color: var(--white); margin-bottom: 8px; }
.show-card p { opacity: 0.8; margin-bottom: 20px; font-size: 0.9375rem; }

/* CTA Banner */
.cta-banner { padding: 60px; text-align: center; background: linear-gradient(135deg, rgba(60,34,92,0.05), rgba(201,162,39,0.05)); }
.cta-banner h2 { margin-bottom: 12px; }
.cta-banner p { font-size: 1.125rem; color: var(--gray-600); margin-bottom: 32px; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* Contact Form */
.contact-form { padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%; padding: 14px 18px; border: 1px solid var(--gray-200); border-radius: var(--radius);
    font-family: var(--font-body); font-size: 0.9375rem; transition: var(--transition); background: var(--white);
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(60,34,92,0.1); }
.contact-form textarea { margin-bottom: 16px; resize: vertical; }
.form-message { margin-top: 16px; padding: 12px; border-radius: var(--radius); display: none; }
.form-message.success { display: block; background: #d4edda; color: #155724; }
.form-message.error { display: block; background: #f8d7da; color: #721c24; }
.contact-info p { margin-bottom: 12px; }

/* Footer */
.site-footer { background: var(--primary-dark); color: rgba(255,255,255,0.8); }
.footer-main { padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(4, 1fr); gap: 40px; }
.footer-brand p { margin: 16px 0 24px; font-size: 0.9375rem; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-social a:hover { background: var(--gold); }
.footer-col h4 { color: var(--white); font-family: var(--font-body); font-size: 0.9375rem; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 0.9375rem; }
.footer-col a:hover { color: var(--gold); }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input { flex: 1; padding: 12px 16px; border: none; border-radius: var(--radius); font-size: 0.875rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; font-size: 0.875rem; }
.footer-langs { display: flex; gap: 16px; }
.footer-langs a { color: rgba(255,255,255,0.6); font-size: 0.8125rem; }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    width: 60px; height: 60px; background: #25D366; color: var(--white);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-lg); transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); color: var(--white); }

/* Page Hero */
.page-hero { padding: 160px 0 60px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: var(--white); }
.page-hero h1 { color: var(--white); }
.page-content { max-width: 800px; }
.page-content h2 { margin: 32px 0 16px; }
.page-content p { margin-bottom: 16px; }
.breadcrumb { font-size: 0.875rem; margin-bottom: 16px; opacity: 0.8; }
.breadcrumb a { color: var(--gold-light); }
.product-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.product-filters a { padding: 8px 20px; border-radius: 50px; background: var(--beige); color: var(--primary); font-weight: 500; font-size: 0.875rem; }
.product-filters a.active, .product-filters a:hover { background: var(--primary); color: var(--white); }

/* Animations */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Error Page */
.error-page { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.error-page h1 { font-size: 8rem; color: var(--primary); }

/* RTL Support */
[dir="rtl"] .feature-list li { padding-left: 0; padding-right: 32px; }
[dir="rtl"] .feature-list li::before { left: auto; right: 0; }
[dir="rtl"] .region-card { border-left: none; border-right: 4px solid var(--gold); }

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .split-section { grid-template-columns: 1fr; }
    .export-map-wrap { grid-template-columns: 1fr; }
    .overview-gallery { grid-template-columns: 1fr 1fr; }
    .gallery-large { grid-row: span 1; }
}
.section-news .section-label { /* blog alias */ }

/* Product Detail - Petibi style rich content */
.product-detail-section { padding-top: 40px; }
.product-detail-layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; margin-bottom: 48px; }
.product-main-image { border-radius: var(--radius-lg); overflow: hidden; background: var(--beige); aspect-ratio: 1; }
.product-main-image img { width: 100%; height: 100%; object-fit: contain; }
.product-thumbs { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.product-thumb { border: 2px solid transparent; border-radius: var(--radius); overflow: hidden; padding: 0; cursor: pointer; width: 72px; height: 72px; background: var(--beige); }
.product-thumb.active { border-color: var(--primary); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-category-badge { display: inline-block; padding: 6px 14px; background: var(--beige); color: var(--primary); border-radius: 50px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; margin-bottom: 16px; }
.product-specs-card, .product-cta-card { padding: 24px; margin-bottom: 20px; }
.product-specs-card h3, .product-cta-card h3 { font-family: var(--font-body); font-size: 1rem; margin-bottom: 16px; }
.specs-list { margin: 0; }
.spec-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--gray-200); font-size: 0.9375rem; }
.spec-row dt { color: var(--gray-600); }
.spec-row dd { font-weight: 600; color: var(--primary); margin: 0; }
.product-lead { font-size: 1.125rem; opacity: 0.9; margin-top: 12px; max-width: 700px; }
.product-rich-content { margin-top: 48px; padding-top: 48px; border-top: 1px solid var(--gray-200); }
.product-rich-content .twp { max-width: 100%; }
.product-rich-content img { max-width: 100%; height: auto; border-radius: var(--radius); }
@media (max-width: 768px) { .product-detail-layout { grid-template-columns: 1fr; } }

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .nav-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--white); flex-direction: column; padding: 100px 24px 24px; z-index: 999; }
    .nav-menu.open { display: flex; }
    .mobile-toggle { display: flex; z-index: 1000; }
    .header-top { display: none; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; gap: 16px; text-align: center; }
    .overview-gallery { grid-template-columns: 1fr; }
    .mega-menu { position: static; transform: none; min-width: auto; box-shadow: none; padding: 12px; }
    .cta-banner { padding: 40px 24px; }
}
