/* ═══════════════════════════════════════════════════════
   Petroviton.cz — Modern Styles
   ═══════════════════════════════════════════════════════ */

:root {
    --blue: #004b93;
    --blue-dark: #002d5a;
    --blue-light: #e8f0fa;
    --accent: #0078d4;
    --accent-glow: rgba(0,120,212,.25);
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --white: #ffffff;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --shadow: 0 1px 3px rgba(0,0,0,.06), 0 6px 24px rgba(0,0,0,.06);
    --shadow-lg: 0 8px 32px rgba(0,0,0,.1), 0 2px 8px rgba(0,0,0,.06);
    --shadow-xl: 0 20px 60px rgba(0,0,0,.12);
    --transition: .3s cubic-bezier(.4,0,.2,1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    animation: pageFadeIn .6s ease;
    top: 0 !important;
}
@keyframes pageFadeIn { from { opacity: 0; filter: blur(6px); } to { opacity: 1; filter: blur(0); } }

.goog-te-banner-frame, .skiptranslate { display: none !important; }
#goog-gt-tt, .goog-te-balloon-frame { display: none !important; }

.lang-overlay {
    position: fixed; inset: 0; z-index: 9998;
    background: rgba(15,23,42,.6);
    backdrop-filter: blur(6px);
    opacity: 0; transition: opacity .4s ease;
    pointer-events: none;
}
.lang-overlay.visible { opacity: 1; pointer-events: all; }
.lang-overlay.fade-out { opacity: 0; }

.lang-loader {
    position: fixed; top: 50%; left: 50%; transform: translate(-50%,-50%);
    z-index: 9999; display: flex; flex-direction: column; align-items: center; gap: 16px;
    color: var(--white); font-size: 15px; font-weight: 500;
    opacity: 0; transition: opacity .4s ease, transform .4s ease;
    transform: translate(-50%,-50%) scale(.9);
}
.lang-loader.visible { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.lang-loader.fade-out { opacity: 0; transform: translate(-50%,-50%) scale(.9); }
.lang-loader-icon {
    width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.1); border-radius: 16px; font-size: 24px;
    animation: langSpin 1.5s ease-in-out infinite;
}
@keyframes langSpin { 0%,100% { transform: rotate(0deg); } 50% { transform: rotate(10deg) scale(1.05); } }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue); }

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

.text-gradient {
    background: linear-gradient(135deg, var(--blue), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Buttons ────────────────────────────────────────── */

.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font); font-weight: 600; font-size: 15px;
    border: 2px solid transparent; border-radius: var(--radius-sm);
    padding: 14px 32px; cursor: pointer; transition: all var(--transition);
    text-decoration: none; position: relative; overflow: hidden;
}

.btn-primary {
    background: var(--blue); color: var(--white); border-color: var(--blue);
    box-shadow: 0 4px 16px rgba(0,75,147,.3);
}
.btn-primary:hover {
    background: var(--blue-dark); border-color: var(--blue-dark);
    box-shadow: 0 6px 24px rgba(0,75,147,.4); transform: translateY(-2px);
    text-decoration: none; color: var(--white);
}

.btn-glass {
    background: rgba(255,255,255,.1); color: var(--white);
    border-color: rgba(255,255,255,.25); backdrop-filter: blur(8px);
}
.btn-glass:hover {
    background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.4);
    text-decoration: none; color: var(--white); transform: translateY(-2px);
}

.btn-outline {
    background: transparent; color: var(--white); border-color: rgba(255,255,255,.3);
}
.btn-outline:hover { border-color: rgba(255,255,255,.6); text-decoration: none; color: var(--white); }

.btn-lg { padding: 16px 40px; font-size: 16px; border-radius: 12px; }
.btn-sm { padding: 8px 18px; font-size: 13px; }

/* ── Header ─────────────────────────────────────────── */

header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0); backdrop-filter: blur(0);
    transition: all .4s ease; padding: 8px 0;
}
header.scrolled {
    background: rgba(255,255,255,.95); backdrop-filter: blur(16px);
    box-shadow: 0 1px 20px rgba(0,0,0,.06); padding: 0;
}
header.scrolled .nav-link { color: var(--gray-800); }
header.scrolled .lang-select { color: var(--gray-800); border-color: var(--gray-200); }

.header-inner { display: flex; align-items: center; height: 72px; gap: 24px; }

.logo img { height: 28px; transition: opacity var(--transition); }
.logo .logo-dark { display: none; }
.logo .logo-white { display: block; }
header.scrolled .logo .logo-dark { display: block; }
header.scrolled .logo .logo-white { display: none; }

nav { display: flex; gap: 4px; margin-left: auto; }

.nav-link {
    font-weight: 500; font-size: 14px; color: rgba(255,255,255,.85);
    padding: 8px 16px; border-radius: var(--radius-xs); transition: all var(--transition);
    text-decoration: none; position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--white); text-decoration: none; }
header.scrolled .nav-link:hover, header.scrolled .nav-link.active {
    color: var(--blue); background: var(--blue-light);
}
.nav-link::after {
    content: ''; position: absolute; bottom: 2px; left: 50%; width: 0; height: 2px;
    background: var(--accent); transition: all var(--transition); transform: translateX(-50%);
    border-radius: 1px;
}
.nav-link.active::after, .nav-link:hover::after { width: 20px; }

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

.lang-dropdown { position: relative; z-index: 100; }
.lang-current {
    display: flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius-xs); padding: 6px 12px;
    color: rgba(255,255,255,.9); font-size: 13px; font-weight: 500;
    font-family: var(--font); cursor: pointer; transition: all var(--transition);
}
.lang-current:hover { border-color: rgba(255,255,255,.4); }
header.scrolled .lang-current {
    background: var(--gray-50); color: var(--gray-800); border-color: var(--gray-200);
}
header.scrolled .lang-current:hover { border-color: var(--accent); }

.lang-flag { width: 20px; height: 14px; object-fit: cover; border-radius: 2px; }

.lang-list {
    display: none; position: absolute; top: calc(100% + 6px); right: 0;
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm); box-shadow: var(--shadow-lg);
    min-width: 160px; overflow: hidden;
    animation: langDropIn .2s ease;
}
@keyframes langDropIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

.lang-dropdown.open .lang-list { display: block; }

.lang-option {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 16px; font-size: 13px; color: var(--gray-800);
    cursor: pointer; transition: background var(--transition);
}
.lang-option:hover { background: var(--blue-light); }
.lang-option.active { background: var(--blue-light); color: var(--blue); font-weight: 600; }

.menu-toggle {
    display: none; flex-direction: column; gap: 5px; background: none;
    border: none; cursor: pointer; padding: 4px; z-index: 1001;
}
.menu-toggle span {
    display: block; width: 24px; height: 2px; background: var(--white);
    border-radius: 2px; transition: all var(--transition);
}
header.scrolled .menu-toggle span { background: var(--gray-800); }
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── Hero ───────────────────────────────────────────── */

.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute; inset: 0; background: url('/static/img/truck-fuel.jpg') center/cover no-repeat;
    filter: brightness(.3); transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.15); } }

.hero-particles {
    position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-particles .particle {
    position: absolute; width: 4px; height: 4px; background: rgba(255,255,255,.15);
    border-radius: 50%; animation: particleFloat linear infinite;
}
@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

.hero-content { position: relative; z-index: 1; max-width: 1150px; width: 100%; padding: 140px 0 100px; }

.hero-badge {
    display: inline-block; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
    backdrop-filter: blur(8px); padding: 8px 20px; border-radius: 50px;
    font-size: 13px; font-weight: 500; color: rgba(255,255,255,.9);
    letter-spacing: .5px; margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(36px, 5.5vw, 60px); font-weight: 900; color: var(--white);
    line-height: 1.1; margin-bottom: 20px; letter-spacing: -.02em;
}
.hero h1 .text-gradient {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-sub {
    font-size: 18px; color: rgba(255,255,255,.7); margin-bottom: 36px;
    line-height: 1.7; max-width: 560px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
    display: flex; align-items: stretch; gap: 0;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(12px); border-radius: var(--radius);
    overflow: hidden;
}
.hero-stat {
    display: flex; align-items: center; gap: 14px;
    padding: 24px 32px; flex: 1; transition: background var(--transition);
}
.hero-stat:hover { background: rgba(255,255,255,.05); }
.hero-stat-icon {
    width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
    background: rgba(96,165,250,.15); border-radius: 12px;
    font-size: 18px; color: #60a5fa; flex-shrink: 0;
}
.hero-stat-num { display: inline; font-size: 26px; font-weight: 800; color: var(--white); line-height: 1.1; }
.hero-stat-plus { font-size: 26px; font-weight: 800; color: #60a5fa; line-height: 1em; }
.hero-stat-label { display: block; font-size: 11px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 500; line-height: 1em; margin-top: 2px; }
.hero-stat-divider { width: 1px; background: rgba(255,255,255,.1); align-self: stretch; margin: 12px 0; }

.hero-scroll {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    animation: bounce 2s ease-in-out infinite;
}
.hero-scroll a { opacity: .5; transition: opacity var(--transition); }
.hero-scroll a:hover { opacity: 1; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ── Sections ───────────────────────────────────────── */

.section { padding: 120px 0; }
.section-dark { background: var(--gray-900); color: var(--white); }
.section-dark .section-header p { color: var(--gray-400); }
.section-dark h2 { color: var(--white); }

.section-label {
    display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2px; color: var(--accent); margin-bottom: 12px;
    background: var(--blue-light); padding: 6px 14px; border-radius: 50px;
}
.section-dark .section-label { background: rgba(0,120,212,.15); }

.section h2 {
    font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--gray-900);
    margin-bottom: 20px; line-height: 1.15; letter-spacing: -.01em;
}

.section-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.section-header p { color: var(--gray-500); font-size: 17px; line-height: 1.7; }

/* Co děláme */
.section-light { background: var(--gray-50); }

.codelame-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.codelame-text p {
    color: var(--gray-600); font-size: 16px; line-height: 1.9; margin-bottom: 20px;
}
.codelame-text p:first-child { font-size: 18px; color: var(--gray-800); font-weight: 400; }
.codelame-cards { display: flex; flex-direction: column; gap: 20px; }
.codelame-card {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius); padding: 28px; transition: all var(--transition);
    box-shadow: var(--shadow);
}
.codelame-card:hover {
    border-color: var(--accent); transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.codelame-card-icon {
    width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
    background: var(--blue-light); border-radius: 12px;
    font-size: 20px; color: var(--blue); margin-bottom: 14px;
}
.codelame-card h3 { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.codelame-card p { font-size: 14px; color: var(--gray-500); line-height: 1.7; margin: 0; }

@media (max-width: 1024px) {
    .codelame-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* About grid */
.section-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.section-text p { color: var(--gray-600); margin-bottom: 16px; font-size: 16px; line-height: 1.8; }

.section-img { position: relative; }
.section-img img { border-radius: var(--radius); box-shadow: var(--shadow-xl); }

.img-float-card {
    position: absolute; bottom: -24px; right: -24px;
    background: var(--white); border-radius: var(--radius-sm); padding: 20px 28px;
    box-shadow: var(--shadow-lg); text-align: center;
    animation: floatCard 3s ease-in-out infinite;
}
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.img-float-num { display: block; font-size: 32px; font-weight: 900; color: var(--blue); }
.img-float-label { font-size: 12px; color: var(--gray-500); text-transform: uppercase; letter-spacing: .5px; }

.features { display: flex; gap: 24px; margin-top: 32px; justify-content: center; }
.feature {
    display: flex; flex-direction: column; gap: 12px; align-items: center; text-align: center;
    padding: 32px 24px; border-radius: var(--radius); flex: 1; max-width: 320px;
    background: var(--white); border: 1px solid var(--gray-200);
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
    transition: all .4s cubic-bezier(.4,0,.2,1);
}
.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,75,147,.12);
    border-color: var(--accent);
}
.feature-icon {
    font-size: 22px; color: var(--blue); width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    background: var(--blue-light); border-radius: 16px;
    transition: all .4s ease;
}
.feature:hover .feature-icon {
    background: var(--blue); color: var(--white);
    transform: scale(1.1) rotate(5deg);
}
.feature strong { color: var(--gray-900); font-size: 16px; display: block; margin-bottom: 2px; }
.feature div:last-child { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* ── Products hero banner ───────────────────────────── */

.products-hero {
    position: relative; padding: 80px 0 100px; overflow: hidden; text-align: center;
}
.products-hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--gray-900), var(--blue-dark), var(--blue-dark));
    background-size: 300% 300%;
    animation: gradientShift 10s ease infinite;
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.products-hero-circles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.ph-circle {
    position: absolute; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.08);
    animation: phFloat linear infinite;
}
.ph-circle-1 { width: 300px; height: 300px; top: -80px; right: -60px; animation-duration: 18s; }
.ph-circle-2 { width: 200px; height: 200px; bottom: -40px; left: -30px; animation-duration: 14s; animation-delay: 2s; }
.ph-circle-3 { width: 120px; height: 120px; top: 30%; left: 20%; animation-duration: 20s; animation-delay: 4s; border-color: rgba(255,255,255,.05); }
.ph-circle-4 { width: 80px; height: 80px; top: 10%; right: 30%; animation-duration: 12s; animation-delay: 1s; background: rgba(255,255,255,.03); }
.ph-circle-5 { width: 180px; height: 180px; bottom: -20px; right: 25%; animation-duration: 16s; animation-delay: 3s; }

@keyframes phFloat {
    0% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -15px) scale(1.05); }
    50% { transform: translate(-10px, -30px) scale(1); }
    75% { transform: translate(-20px, -10px) scale(.95); }
    100% { transform: translate(0, 0) scale(1); }
}

.btn-product {
    padding: 10px 32px; font-size: 14px;
}

/* ── Product sections ───────────────────────────────── */

.product-section { padding: 100px 0; }
.product-section-alt { background: var(--gray-50); }

.product-row {
    display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: center;
}
.product-row-reverse { grid-template-columns: 1.1fr .9fr; }
.product-row-reverse .product-img { order: 2; }
.product-row-reverse .product-text { order: 1; }

.product-img { overflow: hidden; border-radius: var(--radius); }
.product-img img {
    width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius);
    transition: transform .8s cubic-bezier(.4,0,.2,1);
}
.product-row:hover .product-img img { transform: scale(1.04); }

.product-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--blue-light); color: var(--blue);
    padding: 6px 16px; border-radius: 50px;
    font-size: 13px; font-weight: 600; letter-spacing: .5px; margin-bottom: 16px;
}

.product-text h3 {
    font-size: 32px; font-weight: 800; color: var(--gray-900);
    margin-bottom: 16px; line-height: 1.15;
}
.product-text > p {
    font-size: 16px; color: var(--gray-600); line-height: 1.8; margin-bottom: 28px;
}

.product-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 28px; }

.product-cols h4 {
    font-size: 13px; font-weight: 700; color: var(--blue); text-transform: uppercase;
    letter-spacing: 1.5px; margin-bottom: 14px;
    padding-bottom: 8px; border-bottom: 2px solid var(--blue-light);
}
.product-cols ul { list-style: none; padding: 0; margin: 0; }
.product-cols ul li {
    position: relative; padding-left: 24px; font-size: 14px; color: var(--gray-600);
    line-height: 1.3em; margin-bottom: 10px;
}
.product-cols ul li::before {
    content: '\2713'; position: absolute; left: 0; top: 0;
    color: var(--accent); font-weight: 700; font-size: 14px;
}

@media (max-width: 1024px) {
    .product-section { padding: 64px 0; }
    .product-row, .product-row-reverse { grid-template-columns: 1fr; gap: 32px; }
    .product-row-reverse .product-img { order: 0; }
    .product-row-reverse .product-text { order: 0; }
    .product-cols { grid-template-columns: 1fr; gap: 20px; }
    .product-text h3 { font-size: 26px; }
}

/* ── Contact ────────────────────────────────────────── */

.contact-layout { text-align: center; max-width: 700px; margin: 0 auto; }

.contact-header { margin-bottom: 48px; }
.contact-header h2 { color: var(--white); font-size: clamp(28px,4vw,40px); }
.contact-header p { color: var(--gray-400); font-size: 17px; line-height: 1.8; margin-top: 16px; }

.contact-details {
    display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-bottom: 32px;
}
.contact-detail-item {
    display: flex; align-items: flex-start; gap: 14px; text-align: left;
    color: var(--gray-300); font-size: 15px; line-height: 1.6;
}
.contact-detail-icon {
    width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
    background: rgba(96,165,250,.12); border-radius: 12px;
    font-size: 18px; color: #60a5fa; flex-shrink: 0;
}
.contact-detail-item strong { color: var(--white); }

.contact-privacy { margin-top: 16px; }
.contact-privacy a { color: var(--gray-400); font-size: 14px; transition: color var(--transition); }
.contact-privacy a:hover { color: #60a5fa; }

.contact-map { width: 100%; line-height: 0; }
.contact-map iframe { width: 100%; display: block; }
.feature-icon, .card-icon, .info-icon { /* prevent GTranslate from replacing icons */ }
[translate="no"] { font-style: normal; }
.info-row a { color: var(--accent); }

/* ── Footer ─────────────────────────────────────────── */

.footer { background: var(--gray-900); color: var(--gray-400); padding: 64px 0 0; }

.footer-top {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px;
    padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand {}
.footer-logo { height: 28px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: var(--gray-500); max-width: 280px; }

.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
    font-size: 13px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--white); margin-bottom: 4px;
}
.footer-col a {
    color: var(--gray-400); font-size: 14px; transition: all var(--transition); text-decoration: none;
}
.footer-col a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-row {
    display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-400);
}
.footer-contact-row i { color: var(--gray-500); font-size: 13px; min-width: 16px; }
.footer-contact-row a { color: var(--gray-400); }
.footer-contact-row a:hover { color: #60a5fa; }

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px 0; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 13px; color: var(--gray-500); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--gray-500); font-size: 13px; transition: color var(--transition); }
.footer-legal a:hover { color: var(--white); text-decoration: none; }

@media (max-width: 1024px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Cookie Banner ──────────────────────────────────── */

.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: var(--gray-900); color: var(--gray-200); padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,.15);
}
.cookie-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cookie-inner p { font-size: 14px; margin: 0; line-height: 1.5; }
.cookie-inner a { color: var(--accent); }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }

/* ── Animations ─────────────────────────────────────── */

.anim-fade { opacity: 0; transition: opacity .8s ease; }
.anim-fade.visible { opacity: 1; }

.anim-slide-up { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.anim-slide-up.visible { opacity: 1; transform: translateY(0); }

.anim-slide-right { opacity: 0; transform: translateX(-40px); transition: opacity .7s ease, transform .7s ease; }
.anim-slide-right.visible { opacity: 1; transform: translateX(0); }

.anim-slide-left { opacity: 0; transform: translateX(40px); transition: opacity .7s ease, transform .7s ease; }
.anim-slide-left.visible { opacity: 1; transform: translateX(0); }

.anim-delay-1 { transition-delay: .15s; }
.anim-delay-2 { transition-delay: .3s; }
.anim-delay-3 { transition-delay: .45s; }

/* ── Responsive ─────────────────────────────────────── */

@media (max-width: 1024px) {
    .section-grid { grid-template-columns: 1fr; gap: 48px; }
    .section-img { order: -1; }
    .contact-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 20px; padding: 16px 24px; }
    .img-float-card { right: 16px; bottom: -16px; }
}

@media (max-width: 768px) {
    .header-inner { height: 64px; }

    nav {
        display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(15,23,42,.97); backdrop-filter: blur(16px);
        flex-direction: column; align-items: center; justify-content: center;
        gap: 8px; z-index: 1000;
    }
    nav.open { display: flex; }
    nav.open .nav-link { color: var(--white); font-size: 20px; padding: 12px 24px; }

    .menu-toggle { display: flex; z-index: 1001; }

    .lang-select { font-size: 12px; padding: 4px 28px 4px 8px; }

    .hero { min-height: 100svh; }
    .hero-content { padding: 120px 0 80px; }
    .hero h1 { font-size: 32px; }
    .hero-sub { font-size: 16px; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { text-align: center; justify-content: center; }
    .hero-stats { flex-wrap: wrap; }
    .hero-stat { flex: 1 1 45%; padding: 16px 20px; }
    .hero-stat-divider { display: none; }

    .section { padding: 80px 0; }
    .cards { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .features { flex-wrap: wrap; gap: 16px; }
    .feature { max-width: 100%; }

    .footer-inner { flex-direction: column; text-align: center; }
    .cookie-inner { flex-direction: column; text-align: center; }
}
