* { box-sizing: border-box; }
html, body { height: 100%; overflow-x: hidden; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0f0f0f; }
::-webkit-scrollbar-thumb { background: #ffb703; border-radius: 4px; transition: background 0.2s ease; }
::-webkit-scrollbar-thumb:hover { background: #ffd54f; box-shadow: 0 0 8px rgba(255,183,3,.5); }
* { scrollbar-width: thin; scrollbar-color: #ffb703 #0f0f0f; }
body { margin: 0; font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: #ffffff; background: #000000; }
.loader { position: fixed; inset: 0; background: #0b1324; display: flex; align-items: center; justify-content: center; z-index: 9999; transition: opacity .3s ease, visibility .3s ease; }
.loader[aria-hidden="true"] { opacity: 0; visibility: hidden; }
.loader-spinner { width: 44px; height: 44px; border-radius: 50%; border: 3px solid rgba(255,255,255,.2); border-top-color: #ffb703; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
:root { --color-brand: #ffb703; --color-brand-ink: #0b1324; --shadow-1: 0 1px 2px rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.04); --radius-6: 6px; --radius-10: 10px; --container: 1200px; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; height: 44px; padding: 0 16px; border-radius: var(--radius-10); font-weight: 600; text-decoration: none; transition: transform .12s ease, box-shadow .2s ease, background-color .2s ease; white-space: nowrap; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--color-brand); color: var(--color-brand-ink); box-shadow: 0 4px 16px rgba(255,183,3,.3); font-weight: 700; }
.btn-primary:hover { filter: brightness(1.05); }
.site-header { position: sticky; top: 0; z-index: 100; background: #000000; border-bottom: 1px solid rgba(255,255,255,.12); backdrop-filter: saturate(180%) blur(8px); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: #ffffff; font-weight: 700; font-size: 18px; text-decoration: none; }
.brand-logo { width: 28px; height: 28px; }
.brand-text { letter-spacing: .2px; }
.nav { display: flex; align-items: center; gap: 20px; }
.language-selector { position: relative; }
.lang-btn { display: flex; align-items: center; gap: 8px; padding: 8px 12px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-6); color: #ffffff; font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.2s ease; }
.lang-btn:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.3); }
.lang-dropdown { position: absolute; top: 100%; right: 0; background: #000000; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-6); padding: 8px 0; min-width: 160px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all 0.2s ease; z-index: 1000; }
.language-selector:hover .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-option { display: flex; align-items: center; gap: 12px; padding: 8px 16px; color: #ffffff; text-decoration: none; font-size: 14px; transition: background-color 0.2s ease; }
.lang-option:hover { background: rgba(255,255,255,.1); }
.lang-option.active { background: rgba(255,183,3,.2); color: #ffb703; }
.lang-flag { font-size: 16px; }
.lang-text { font-weight: 500; }
@media (max-width: 768px) { .language-selector { order: -1; margin-right: auto; position: relative; } .lang-btn { padding: 8px 12px; font-size: 14px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-6); min-width: 80px; justify-content: center; } .lang-dropdown { position: absolute; top: 100%; left: 0; right: auto; min-width: 160px; background: #000000; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-6); margin-top: 4px; box-shadow: 0 4px 12px rgba(0,0,0,.3); } .lang-option { padding: 10px 16px; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,.05); } .lang-option:last-child { border-bottom: none; } .lang-option.active { background: rgba(255,183,3,.2); color: #ffb703; } .lang-option:hover { background: rgba(255,255,255,.1); } .lang-text { font-weight: 500; } .lang-flag { font-size: 18px; } .nav-toggle:checked ~ .nav .language-selector { margin-top: 20px; margin-bottom: 20px; width: 100%; } .nav-toggle:checked ~ .nav .lang-btn { width: 100%; justify-content: center; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); } .nav-toggle:checked ~ .nav .lang-dropdown { width: 100%; left: 0; right: 0; position: static; margin-top: 8px; box-shadow: none; border: 1px solid rgba(255,255,255,.1); display: none; } .nav-toggle:checked ~ .nav .language-selector:hover .lang-dropdown { display: none; } }
.nav-list { list-style: none; display: flex; align-items: center; gap: 16px; margin: 0; padding: 0; }
.nav-list a { display: inline-flex; align-items: center; height: 36px; padding: 0 10px; border-radius: var(--radius-6); color: #e9edf5; text-decoration: none; font-weight: 500; }
.nav-list a:hover { background: rgba(255,255,255,.06); }
.nav-toggle { display: none; }
.hamburger { display: none; width: 40px; height: 40px; border-radius: var(--radius-10); align-items: center; justify-content: center; cursor: pointer; border: 1px solid rgba(255,255,255,.12); flex-direction: column; }
.hamburger span { display: block; width: 18px; height: 2px; background: #e9edf5; margin: 3px 0; transition: transform .2s ease, opacity .2s ease; }
@media (max-width: 900px) { .hamburger { display: inline-flex; } .nav { position: fixed; inset: 72px 0 auto 0; background: #000000; border-top: 1px solid rgba(255,255,255,.12); box-shadow: var(--shadow-1); flex-direction: column; align-items: stretch; gap: 12px; padding: 12px 20px; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease; } .nav-list { flex-direction: column; align-items: stretch; gap: 4px; } .nav-list a { height: 44px; padding: 0 12px; font-size: 16px; } .btn { height: 44px; } .nav-toggle:checked ~ .hamburger { border-color: transparent; } .nav-toggle:checked ~ .hamburger span:nth-child(1) { transform: translateY(5px) rotate(45deg); } .nav-toggle:checked ~ .hamburger span:nth-child(2) { opacity: 0; } .nav-toggle:checked ~ .hamburger span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); } .nav-toggle:checked ~ .nav { transform: translateY(0); opacity: 1; pointer-events: auto; } }
.section { padding: 48px 0; }
.section h2 { margin: 0 0 16px; font-size: 28px; }
.section-head { text-align: center; }
.section-head p { margin: 0 0 24px; color: #d9e0ea; opacity: .9; }
.section-order { background: linear-gradient(180deg, rgba(11,19,36,.65), rgba(11,19,36,.35)), url('../../img/background.png') center/cover no-repeat; min-height: calc(100vh - 72px); display: flex; align-items: center; padding: 64px 0; }
.order-wrap { display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px; align-items: start; }
.order-hero { position: relative; color: #fff; padding: 32px; border-radius: var(--radius-10); min-height: 320px; background: rgba(0,0,0,.6); box-shadow: 0 8px 32px rgba(0,0,0,.4); border: 1px solid rgba(255,255,255,.08); }
.order-hero .accent { color: #ffb703; }
.order-hero h1 { margin: 0 0 8px; font-size: 54px; line-height: 1.05; }
.order-hero .subtitle { margin: 0 0 8px; font-weight: 600; opacity: .9; }
.order-hero .lead { margin: 0 0 12px; opacity: .9; }
.hero-features { display: flex; gap: 16px; flex-wrap: wrap; list-style: none; margin: 8px 0 0; padding: 0; font-weight: 600; opacity: .95; }
.hero-features li { display: flex; align-items: center; gap: 8px; }
.hero-features li svg { width: 16px; height: 16px; fill: #ffb703; flex-shrink: 0; }
.hero-cta { margin-top: 32px; text-align: center; }
.btn-hero { font-size: 18px; padding: 16px 32px; height: 56px; border-radius: 12px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; box-shadow: 0 8px 24px rgba(255,183,3,.4); transition: all 0.3s ease; position: relative; overflow: hidden; }
.btn-hero:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255,183,3,.5); filter: brightness(1.1); }
.btn-hero:active { transform: translateY(-1px); }
.order-card { padding: 32px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-10); box-shadow: 0 8px 32px rgba(0,0,0,.4); background: #000000; color: #ffffff; }
.order-card h2 { margin: 0 0 24px; font-size: 32px; color: #ffffff; text-align: center; font-weight: 700; }
.order-form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 600; color: #ffffff; margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
.form-field label svg { width: 16px; height: 16px; fill: #ffb703; flex-shrink: 0; }
.form-field input, .form-field select, .form-field textarea { height: 48px; padding: 12px 16px; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-10); font: inherit; background: #111111; color: #ffffff; transition: all 0.2s ease; }
.form-field textarea { height: auto; resize: vertical; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #888888; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: #ffb703; box-shadow: 0 0 0 3px rgba(255,183,3,.15); background: #1a1a1a; }
.form-actions { display: flex; align-items: center; gap: 12px; }
.form-feedback { margin: 0; color: var(--color-muted); font-size: 14px; }
@media (max-width: 900px) { .order-wrap { grid-template-columns: 1fr; gap: 20px; } .form-row { grid-template-columns: 1fr; } .section-order { min-height: calc(100vh - 72px); padding: 32px 0; } .order-hero h1 { font-size: 36px; } .order-card h2 { font-size: 24px; margin-bottom: 20px; } .btn-hero { font-size: 16px; padding: 14px 28px; height: 50px; } .hero-cta { margin-top: 24px; } .order-hero { padding: 24px; min-height: auto; } .order-card { padding: 24px; } .form-field input, .form-field select, .form-field textarea { height: 44px; padding: 10px 14px; } .btn { height: 44px; } }
.section-services { background: #000000; color: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.service-card { background: #23262d; border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius-10); padding: 32px; box-shadow: var(--shadow-1); transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; position: relative; overflow: hidden; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(255,183,3,.15); border-color: rgba(255,183,3,.3); }
.service-card h3 { margin: 16px 0 12px; color: #ffb703; font-size: 22px; font-weight: 700; }
.service-card p { margin: 0; color: #d9e0ea; line-height: 1.6; font-size: 15px; }
.service-icon { width: 60px; height: 60px; border-radius: 16px; display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(255,183,3,.2) 0%, rgba(255,183,3,.1) 100%); color: #ffb703; box-shadow: 0 4px 16px rgba(255,183,3,.2); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.service-icon svg { width: 24px; height: 24px; fill: currentColor; }
.service-card:hover .service-icon { transform: scale(1.1); box-shadow: 0 6px 20px rgba(255,183,3,.3); }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; gap: 20px; } .service-card { padding: 24px; } .service-icon { width: 50px; height: 50px; font-size: 20px; } .service-card h3 { font-size: 20px; } }
@media (max-width: 480px) { .service-card { padding: 20px; } .service-icon { width: 45px; height: 45px; font-size: 18px; } .service-card h3 { font-size: 18px; margin: 12px 0 8px; } .service-card p { font-size: 14px; } }
@media (max-width: 480px) { .container { padding: 0 16px; } .order-hero h1 { font-size: 28px; } .order-card h2 { font-size: 20px; } .btn-hero { font-size: 14px; padding: 12px 24px; height: 44px; } .hero-cta { margin-top: 20px; } .order-hero { padding: 20px; } .order-card { padding: 20px; } .form-field input, .form-field select, .form-field textarea { height: 40px; padding: 8px 12px; font-size: 16px; } .btn { height: 40px; padding: 0 12px; font-size: 14px; } .section { padding: 32px 0; } .section h2 { font-size: 24px; } }
.section-vehicles { background: #000; color: #fff; }
.vehicle-wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items: center; }
.vehicle-copy h3 { margin: 0 0 12px; font-size: 28px; }
.vehicle-copy p { margin: 0 0 16px; color: #d9e0ea; }
.vehicle-features { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.vehicle-features li { display: flex; align-items: center; gap: 8px; }
.vehicle-features li svg { width: 16px; height: 16px; fill: #ffb703; flex-shrink: 0; }
.vehicle-media { margin: 0; padding: 0; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); box-shadow: 0 10px 40px rgba(255,183,3,.08), inset 0 0 0 1px rgba(255,255,255,.03); }
.vehicle-media img { display: block; width: 100%; height: auto; filter: brightness(.9) contrast(1.05); }
@media (max-width: 900px) { .vehicle-wrap { grid-template-columns: 1fr; } }
.section-werkgebied { background: linear-gradient(180deg, #000000 0%, #0f172a 100%); color: #fff; }
.chips { --chip-bg: #191d24; --chip-border: rgba(255,255,255,.08); --chip-shadow: 0 2px 10px rgba(0,0,0,.15); list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.chip { padding: 12px 16px; background: var(--chip-bg); border: 1px solid var(--chip-border); border-radius: 14px; box-shadow: var(--chip-shadow); color: #e9edf5; }
.chip:hover { background: #1f2430; }
.section-pricing { background: linear-gradient(180deg, #000000 0%, #0f172a 100%); color: #fff; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-bottom: 40px; }
.pricing-card { background: #23262d; border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius-10); padding: 32px; box-shadow: var(--shadow-1); transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; position: relative; overflow: hidden; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(255,183,3,.15); border-color: rgba(255,183,3,.3); }
.pricing-card.featured { border-color: var(--color-brand); background: linear-gradient(135deg, #23262d 0%, #1a1d24 100%); transform: scale(1.05); box-shadow: 0 8px 32px rgba(255,183,3,.2); }
.pricing-card.featured:hover { transform: scale(1.05) translateY(-4px); box-shadow: 0 12px 40px rgba(255,183,3,.25); }
.pricing-badge { position: absolute; top: 16px; right: 16px; background: var(--color-brand); color: var(--color-brand-ink); padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; box-shadow: 0 4px 12px rgba(255,183,3,.3); }
.pricing-header { text-align: center; margin-bottom: 24px; }
.pricing-icon { margin-bottom: 16px; display: flex; justify-content: center; }
.pricing-icon svg { width: 32px; height: 32px; fill: #ffb703; }
.pricing-header h3 { margin: 0 0 16px; font-size: 24px; color: #ffffff; }
.price { display: flex; align-items: baseline; justify-content: center; gap: 4px; }
.currency { font-size: 20px; font-weight: 600; color: #d9e0ea; }
.amount { font-size: 48px; font-weight: 700; color: var(--color-brand); line-height: 1; text-shadow: 0 4px 20px rgba(255,183,3,.3); }
.period { font-size: 16px; color: #d9e0ea; font-weight: 500; }
.pricing-features { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.pricing-features li { padding-left: 24px; position: relative; color: #d9e0ea; font-weight: 500; }
.pricing-features li::before { content: '✦'; position: absolute; left: 0; color: var(--color-brand); font-weight: 700; font-size: 16px; }
.pricing-note { text-align: center; background: rgba(255,183,3,.1); border: 1px solid rgba(255,183,3,.2); border-radius: var(--radius-10); padding: 20px; margin-top: 32px; }
.pricing-note p { margin: 0; color: #ffffff; font-weight: 500; }
.section-payment { background: linear-gradient(180deg, #0f172a 0%, #000000 100%); color: #ffffff; }
.section-payment .section-head p { color: #d9e0ea; }
.payment-methods { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; margin-bottom: 40px; }
.payment-method { background: #23262d; border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius-10); padding: 24px; text-align: center; transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease; box-shadow: var(--shadow-1); }
.payment-method:hover { transform: translateY(-2px); background: #2a2d34; border-color: rgba(255,183,3,.3); box-shadow: 0 8px 32px rgba(255,183,3,.15); }
.payment-icon { font-size: 48px; margin-bottom: 16px; display: block; filter: drop-shadow(0 4px 12px rgba(255,183,3,.2)); }
.payment-icon svg { width: 32px; height: 32px; fill: currentColor; }
.payment-method h3 { margin: 0 0 8px; font-size: 20px; color: #ffffff; }
.payment-method p { margin: 0; color: #d9e0ea; font-size: 14px; line-height: 1.5; }
.payment-info { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.info-card { background: #23262d; border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius-10); padding: 24px; box-shadow: var(--shadow-1); transition: border-color 0.2s ease; }
.info-card:hover { border-color: rgba(255,183,3,.2); }
.info-card h3 { margin: 0 0 12px; font-size: 20px; color: var(--color-brand); }
.info-card p { margin: 0; color: #d9e0ea; line-height: 1.6; }
@media (max-width: 768px) { .pricing-grid { grid-template-columns: 1fr; gap: 20px; } .pricing-card.featured { transform: none; } .pricing-card.featured:hover { transform: translateY(-4px); } .payment-methods { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; } .payment-info { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .pricing-card { padding: 24px; } .amount { font-size: 36px; } .payment-method { padding: 20px; } .payment-icon { font-size: 36px; } }
.section-contact { background: linear-gradient(180deg, #000000 0%, #0f172a 100%); color: #ffffff; }
.section-contact .section-head p { color: #d9e0ea; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-bottom: 40px; }
.contact-card { background: #23262d; border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius-10); padding: 32px; text-align: center; box-shadow: var(--shadow-1); transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(255,183,3,.15); border-color: rgba(255,183,3,.3); }
.contact-icon { margin-bottom: 16px; display: flex; justify-content: center; }
.contact-icon svg { width: 32px; height: 32px; fill: #ffb703; }
.contact-card h3 { margin: 0 0 8px; font-size: 20px; color: #ffffff; }
.contact-card p { margin: 0 0 16px; color: #d9e0ea; font-size: 16px; }
.contact-link { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; background: #ffb703; color: #000000; text-decoration: none; border-radius: var(--radius-10); font-weight: 600; font-size: 14px; transition: all 0.2s ease; box-shadow: 0 4px 16px rgba(255,183,3,.3); }
.contact-link:hover { background: #ffc233; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,183,3,.4); }
.contact-info { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.contact-info .info-card { background: #23262d; border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius-10); padding: 24px; box-shadow: var(--shadow-1); transition: border-color 0.2s ease; }
.contact-info .info-card:hover { border-color: rgba(255,183,3,.2); }
.contact-info .info-card h3 { margin: 0 0 12px; font-size: 20px; color: #ffb703; }
.contact-info .info-card p { margin: 0; color: #d9e0ea; line-height: 1.6; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 20px; } .contact-card { padding: 24px; } .contact-info { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .contact-card { padding: 20px; } .contact-link { padding: 10px 20px; font-size: 13px; } }
.site-footer { background: #000000; color: #ffffff; border-top: 1px solid rgba(255,255,255,.1); padding: 48px 0 24px; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.footer-section h3 { margin: 0 0 16px; font-size: 18px; color: #ffb703; font-weight: 700; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo { width: 24px; height: 24px; }
.footer-brand-text { font-size: 20px; font-weight: 700; color: #ffffff; }
.footer-description { margin: 0 0 20px; color: #d9e0ea; line-height: 1.6; font-size: 14px; }
.footer-social { display: flex; gap: 12px; }
.social-link { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(255,183,3,.1); border: 1px solid rgba(255,183,3,.2); border-radius: 8px; color: #ffb703; text-decoration: none; transition: all 0.2s ease; }
.social-link:hover { background: rgba(255,183,3,.2); border-color: rgba(255,183,3,.4); transform: translateY(-2px); }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-links li { color: #d9e0ea; font-size: 14px; }
.footer-links a { color: #d9e0ea; text-decoration: none; transition: color 0.2s ease; }
.footer-links a:hover { color: #ffb703; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-legal p { margin: 0; color: #d9e0ea; font-size: 14px; }
.footer-links-small { display: flex; gap: 24px; }
.footer-links-small a { color: #d9e0ea; text-decoration: none; font-size: 14px; transition: color 0.2s ease; }
.footer-links-small a:hover { color: #ffb703; }
@media (max-width: 900px) { .footer-content { grid-template-columns: 1fr 1fr; gap: 32px; } .footer-section:first-child { grid-column: 1 / -1; } }
@media (max-width: 600px) { .footer-content { grid-template-columns: 1fr; gap: 24px; } .footer-bottom { flex-direction: column; gap: 16px; text-align: center; } .footer-links-small { justify-content: center; } }
.mobile-actions { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000; padding: 12px 20px; gap: 12px; justify-content: center; }
.mobile-btn { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 20px; border-radius: 12px; text-decoration: none; font-weight: 600; font-size: 14px; transition: all 0.2s ease; flex: 1; max-width: 160px; }
.mobile-btn-call { background: #ffb703; color: #000000; box-shadow: 0 4px 16px rgba(255,183,3,.3); }
.mobile-btn-call:hover { background: #ffc233; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,183,3,.4); }
.mobile-btn-whatsapp { background: #25d366; color: #ffffff; box-shadow: 0 4px 16px rgba(37,211,102,.3); }
.mobile-btn-whatsapp:hover { background: #22c55e; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.4); }
.mobile-btn-icon { font-size: 18px; }
.mobile-btn-icon svg { width: 20px; height: 20px; fill: currentColor; }
.mobile-btn-text { font-weight: 700; letter-spacing: 0.5px; }
@media (max-width: 768px) { .mobile-actions { display: flex; } main { padding-bottom: 80px; } }