/* Transportbidder - Static Website Styles
   Theme: Premium High-Energy | BG: #FDFBF7 | Accent: #FF5F00 | Font: Poppins */

:root {
  --bg: #FDFBF7;
  --bg-alt: #F5F5DC;
  --accent: #FF5F00;
  --accent-hover: #FF4500;
  --accent-light: rgba(255, 95, 0, 0.12);
  --text: #1A1A1A;
  --text-muted: #555;
  --white: #fff;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(255, 95, 0, 0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --font: 'Poppins', sans-serif;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* Skip link (a11y) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 24px;
  padding: 12px 20px;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  z-index: 1000;
  border-radius: var(--radius);
  transition: top 0.2s;
}
.skip-link:focus { top: 24px; }

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 1.35rem;
}
.logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--accent);
}
.footer .logo-icon { color: var(--accent); }
.logo-text { color: var(--accent); }
.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 32px;
}
.nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color var(--transition);
}
.nav a:hover { color: var(--accent); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 50%, var(--accent-light) 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, -20px) scale(1.05); }
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px;
  color: var(--text);
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin: 0 0 32px;
  max-width: 480px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-mockup {
  width: 280px;
  height: 520px;
  background: linear-gradient(145deg, #2a2a2a 0%, #1A1A1A 100%);
  border-radius: 36px;
  padding: 14px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25), 0 0 0 3px rgba(255,95,0,0.2);
  animation: phoneFloat 4s ease-in-out infinite;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--accent) 0%, #252525 30%, #1A1A1A 70%);
  border-radius: 24px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.phone-app-header {
  margin-bottom: 12px;
}
.phone-app-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.phone-tours {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
}
.phone-tour-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.phone-tour-card.tour-card-1 { animation-delay: 0.2s; }
.phone-tour-card.tour-card-2 { animation-delay: 0.5s; }
.phone-tour-card.tour-card-3 { animation-delay: 0.8s; }
/* Reset when switching animation */
.phone-tours:not([data-anim-style]) .phone-tour-card,
.phone-tours[data-anim-style=""] .phone-tour-card {
  opacity: 0;
  transform: translateY(10px);
  animation: none;
}
/* Animation variants - applied via .phone-tours[data-anim-style] */
.phone-tours[data-anim-style="slide-left"] .phone-tour-card {
  opacity: 0;
  transform: translateX(-24px);
  animation: tourSlideLeft 0.6s ease forwards;
}
.phone-tours[data-anim-style="slide-up"] .phone-tour-card {
  opacity: 0;
  transform: translateY(20px);
  animation: tourSlideUp 0.6s ease forwards;
}
.phone-tours[data-anim-style="slide-right"] .phone-tour-card {
  opacity: 0;
  transform: translateX(24px);
  animation: tourSlideRight 0.6s ease forwards;
}
.phone-tours[data-anim-style="fade"] .phone-tour-card {
  opacity: 0;
  animation: tourFade 0.7s ease forwards;
}
.phone-tours[data-anim-style="scale"] .phone-tour-card {
  opacity: 0;
  transform: scale(0.85);
  animation: tourScale 0.6s ease forwards;
}
.phone-tours[data-anim-style="bounce"] .phone-tour-card {
  opacity: 0;
  transform: translateY(30px);
  animation: tourBounce 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes tourSlideLeft {
  to { opacity: 1; transform: translateX(0); }
}
@keyframes tourSlideUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes tourSlideRight {
  to { opacity: 1; transform: translateX(0); }
}
@keyframes tourFade {
  to { opacity: 1; }
}
@keyframes tourScale {
  to { opacity: 1; transform: scale(1); }
}
@keyframes tourBounce {
  to { opacity: 1; transform: translateY(0); }
}
.phone-tour-label {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}
.phone-tour-price {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
.phone-tour-cta {
  margin-top: 12px;
  display: block;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(255, 95, 0, 0.2);
  padding: 10px;
  border-radius: 10px;
  text-decoration: none;
  animation: tourCtaPulse 2s ease-in-out infinite;
}
@keyframes tourCtaPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(8px); }
}

/* Animate in */
.animate-in { opacity: 0; transform: translateY(24px); }
.animate-in.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.15s; }

/* Sections */
.section {
  padding: 80px 0;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  margin: 0 0 12px;
  color: var(--text);
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  margin: 0 0 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-light);
}
.feature-card[data-animate].visible .feature-icon {
  animation: iconPop 0.5s ease;
}
@keyframes iconPop {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
.feature-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.feature-icon svg {
  width: 100%;
  height: 100%;
}
.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text);
}
.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Alt section bg */
.alt-bg { background: var(--bg-alt); }

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.product-card:hover::before { transform: scaleX(1); }
.product-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 16px;
}
.product-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 12px;
}
.product-card p { margin: 0; color: var(--text-muted); }

/* Reviews */
.reviews-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.review-stars {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 1.05rem;
  font-style: italic;
  margin: 0 0 16px;
  color: var(--text);
}
.review-card cite {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: normal;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.blog-image {
  height: 180px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.blog-image-1 {
  background: linear-gradient(135deg, #FF5F00 0%, #ff8c42 50%, #ffa366 100%);
  background-size: 200% 200%;
  animation: blogGradient1 6s ease infinite;
}
.blog-image-2 {
  background: linear-gradient(135deg, #1A1A1A 0%, #333 50%, #444 100%);
  background-size: 200% 200%;
  animation: blogGradient2 6s ease infinite;
}
.blog-image-3 {
  background: linear-gradient(135deg, #2d5016 0%, #4a7c23 50%, #5a9c2e 100%);
  background-size: 200% 200%;
  animation: blogGradient3 6s ease infinite;
}
@keyframes blogGradient1 {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes blogGradient2 {
  0%, 100% { background-position: 100% 50%; }
  50% { background-position: 0% 50%; }
}
@keyframes blogGradient3 {
  0%, 100% { background-position: 50% 0%; }
  50% { background-position: 50% 100%; }
}
.blog-image-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: blogShine 3s ease-in-out infinite;
}
@keyframes blogShine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.blog-image-icon {
  width: 72px;
  height: 72px;
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  z-index: 1;
  animation: blogIconFloat 4s ease-in-out infinite;
}
.blog-image-icon svg {
  width: 100%;
  height: 100%;
}
.blog-card:nth-child(2) .blog-image-icon { animation-delay: 0.5s; }
.blog-card:nth-child(3) .blog-image-icon { animation-delay: 1s; }
@keyframes blogIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.blog-content { padding: 24px; }
.blog-content h3 {
  font-size: 1.15rem;
  margin: 0 0 8px;
}
.blog-content h3 a {
  color: var(--text);
  text-decoration: none;
  transition: color var(--transition);
}
.blog-content h3 a:hover { color: var(--accent); }
.blog-content p {
  margin: 0 0 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.blog-content time {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
}

/* Download */
.download-box {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  border: 2px solid var(--accent-light);
}
.download-cta-text {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 24px;
  color: var(--text);
}
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.store-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: transform var(--transition);
}
.store-badge:hover { transform: scale(1.05); }
.store-badge img {
  height: 56px;
  width: auto;
  display: block;
}
/* iOS badge fallback (no external image dependency) */
.app-store-badge-fallback {
  display: inline-block;
  padding: 12px 20px;
  background: #000;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  line-height: 1.2;
  text-align: center;
  min-width: 180px;
}
.store-android .app-store-badge-fallback { display: none; }
.badge-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}
.download-note {
  margin: 24px 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.25rem;
  margin: 0 0 20px;
}
.contact-info address {
  font-style: normal;
  margin: 0 0 24px;
}
.contact-info address p {
  margin: 0 0 8px;
  color: var(--text);
}
.contact-info a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.contact-info a:hover { text-decoration: underline; }
.social-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.social-links a {
  display: inline-block;
  padding: 10px 18px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-links a:hover {
  background: var(--accent);
  color: var(--white);
}
.contact-form-wrap { background: var(--white); padding: 32px; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.contact-form label {
  display: block;
  font-weight: 600;
  margin: 16px 0 6px;
  color: var(--text);
}
.contact-form label:first-of-type { margin-top: 0; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 1rem;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form button { margin-top: 24px; width: 100%; }

/* Footer */
.footer {
  background: var(--text);
  color: var(--white);
  padding: 48px 0 24px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer .logo { color: var(--white); }
.footer .logo-text { color: var(--accent); }
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--accent); }
.footer-bottom {
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

/* Data-animate visibility */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-shrink: 0;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 4px 6px;
  border-radius: 4px;
  transition: all var(--transition);
}
.lang-btn.active,
.lang-btn:hover {
  color: var(--accent);
  background: var(--accent-light);
}

/* Stats */
.stats-section {
  background: var(--text);
  padding: 48px 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 24px 16px;
}
.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-suffix {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--accent);
}
.stat-label {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* How It Works */
.how-it-works { background: var(--bg); }
.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.step-card {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  text-align: center;
  padding: 36px 24px;
  position: relative;
}
.step-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: transform var(--transition), background var(--transition);
}
.step-card:hover .step-icon {
  transform: scale(1.1);
  background: var(--accent);
  color: var(--white);
}
.step-icon svg {
  width: 32px;
  height: 32px;
}
.step-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text);
}
.step-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.step-connector {
  flex-shrink: 0;
  width: 48px;
  color: var(--accent);
  opacity: 0.4;
  display: flex;
  align-items: center;
}
.step-connector svg {
  width: 40px;
  height: 16px;
}

/* FAQ */
.faq { background: var(--bg-alt); }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
  transition: box-shadow var(--transition);
}
.faq-item.open {
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-light);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  gap: 12px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-answer p {
  margin: 0;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-answer a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.faq-answer a:hover { text-decoration: underline; }

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255,95,0,0.4);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
  z-index: 200;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover { background: var(--accent-hover); }
.back-to-top svg { width: 22px; height: 22px; }

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text);
  color: var(--white);
  z-index: 300;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-inner p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  flex: 1;
}
.cookie-inner a {
  color: var(--accent);
  text-decoration: none;
}
.cookie-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}
.cookie-decline {
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  padding: 8px 4px;
  transition: color var(--transition);
}
.cookie-decline:hover { color: var(--white); }
.cookie-actions .btn-primary { padding: 10px 20px; font-size: 0.9rem; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-visual { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .stat-divider { display: none; }
  .stats-grid { gap: 8px; }
  .stat-item { min-width: 140px; }
  .step-connector { display: none; }
  .steps-grid { gap: 16px; }
  .step-card { min-width: 200px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    transition: transform var(--transition);
  }
  .nav.is-open { transform: translateY(0); }
  .nav ul { flex-direction: column; gap: 0; }
  .nav li { border-bottom: 1px solid rgba(0,0,0,0.06); }
  .nav a { display: block; padding: 16px 0; }
  .lang-toggle { margin-left: 8px; }
  .store-badges { flex-direction: column; }
  .footer-top { flex-direction: column; text-align: center; }
  .footer-nav { justify-content: center; }
  .back-to-top { bottom: 20px; right: 16px; }
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; text-align: center; }
  .download-box { padding: 32px 24px; }
  .faq-question { padding: 16px 18px; font-size: 0.95rem; }
  .step-card { max-width: 100%; }
  .lang-toggle { display: none; }
}
