:root {
  --barco-blue: #005EB8;
  --barco-dark: #003d75;
  --barco-light: #e6f0fa;
  --accent-gold: #c9a227;
  --text-dark: #1a1a2e;
  --text-body: #333344;
  --text-light: #666677;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-card: #ffffff;
  --border: #e2e8f0;
  --success: #059669;
  --warning: #d97706;
  --error: #dc2626;
  --radius: 8px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
  --max-width: 1600px;
  --top-bar-height: 32px;
  --mid-bar-height: 36px;
  --nav-height: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

/* ===== Premium SVG Icons ===== */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-sm  { width: 20px; height: 20px; }
.icon-md  { width: 24px; height: 24px; }
.icon-lg  { width: 32px; height: 32px; }
.icon-xl  { width: 48px; height: 48px; }
.icon-2xl { width: 56px; height: 56px; }

.icon-box {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--barco-light);
  color: var(--barco-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.card:hover .icon-box {
  background: var(--barco-blue);
  color: white;
  transform: scale(1.1);
}

.icon-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--barco-blue), var(--barco-dark));
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,94,184,0.25);
}

.icon-gold {
  background: linear-gradient(135deg, var(--accent-gold), #b8941f);
  box-shadow: 0 4px 12px rgba(201,162,39,0.25);
}

.status-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--barco-blue);
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--barco-light);
}

.success-ring {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--success), #047857);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 16px rgba(5,150,105,0.3);
  margin-bottom: 16px;
}

.contact-icon-premium {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--barco-light);
  color: var(--barco-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Skip Link */
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--barco-blue); color: white;
  padding: 8px 16px; z-index: 10000;
  transition: top 0.3s;
}
.skip-link:focus { top: 0; }

/* ===== 3-Row Header ===== */

.site-header { position: relative; }

/* Row 1: Top Bar */
.top-bar {
  background: var(--text-dark);
  height: var(--top-bar-height);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.top-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  width: 100%;
}
.top-bar a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  transition: color 0.2s;
  white-space: nowrap;
}
.top-bar a:hover {
  color: var(--accent-gold);
}
.top-bar span.divider {
  color: rgba(255,255,255,0.2);
  font-size: 10px;
}

/* Row 2: Middle Bar */
.middle-bar {
  background: linear-gradient(135deg, var(--barco-blue), var(--barco-dark));
  height: var(--mid-bar-height);
  display: flex;
  align-items: center;
}
.middle-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: white;
  font-size: 12px;
}
.middle-bar-tagline {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
}
.middle-bar-segments {
  color: rgba(255,255,255,0.8);
}
.middle-bar-phone {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}
.middle-bar-phone span {
  color: var(--accent-gold);
  font-weight: 700;
}

/* Row 3: Main Nav - Sticky */
.header-main {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: 72px;
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 48px; height: 48px;
  background: var(--barco-blue);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 20px;
}
.logo-text {
  display: flex; flex-direction: column;
}
.logo-text .brand {
  font-size: 22px; font-weight: 800;
  color: var(--barco-blue); letter-spacing: -0.5px;
  line-height: 1.2;
}
.logo-text .tagline {
  font-size: 11px; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 1px;
}

/* Navigation */
.main-nav { display: flex; align-items: center; gap: 8px; }
.nav-link {
  text-decoration: none; color: var(--text-dark);
  font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: var(--radius);
  transition: all 0.2s; position: relative;
}
.nav-link:hover, .nav-link.active {
  background: var(--barco-light); color: var(--barco-blue);
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  width: 0; height: 2px; background: var(--barco-blue);
  transition: all 0.3s; transform: translateX(-50%);
}
.nav-link:hover::after, .nav-link.active::after { width: 60%; }

.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 100%; left: 0;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 240px; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all 0.2s;
  padding: 8px 0;
}
.dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-item {
  display: block; padding: 10px 16px;
  text-decoration: none; color: var(--text-body);
  font-size: 14px; transition: all 0.15s;
}
.dropdown-item:hover {
  background: var(--barco-light); color: var(--barco-blue);
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--barco-blue); color: white;
}
.btn-primary:hover {
  background: var(--barco-dark); transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
.btn-outline {
  background: transparent; color: var(--barco-blue);
  border: 2px solid var(--barco-blue);
}
.btn-outline:hover {
  background: var(--barco-blue); color: white;
}
.btn-outline--on-dark {
  color: white;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline--on-dark:hover {
  background: rgba(255,255,255,0.15);
  color: white;
  border-color: white;
}
.btn-gold {
  background: var(--accent-gold); color: var(--text-dark);
}
.btn-gold:hover {
  background: #b8941f; transform: translateY(-1px);
}

/* Mobile Menu */
.mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  width: 24px; height: 2px; background: var(--text-dark);
  transition: all 0.3s;
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--barco-blue) 0%, var(--barco-dark) 100%);
  color: white;
  padding: 60px 24px 80px;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  max-width: var(--max-width); margin: 0 auto;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-content h1 {
  font-size: 52px; font-weight: 800; line-height: 1.1;
  margin-bottom: 20px; letter-spacing: -1px;
}
.hero-content h1 span { color: var(--accent-gold); }
.hero-content p {
  font-size: 18px; opacity: 0.9; margin-bottom: 32px;
  max-width: 540px;
}
.hero-badges {
  display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px;
}
.badge {
  background: rgba(255,255,255,0.15); backdrop-filter: blur(4px);
  padding: 8px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.2);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-visual--image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  max-width: 420px;
  margin-left: auto;
}
.hero-img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  border-radius: 12px;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.hero-visual--image:hover .hero-img {
  transform: scale(1.03);
  filter: grayscale(80%);
}

/* ===== Hero Image Slider ===== */
.hero-slider {
  position: relative;
  width: 800px;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.hero-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}
.hero-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}
.hero-slide.active img {
  filter: grayscale(100%);
}
.hero-slider:hover .hero-slide img {
  filter: grayscale(80%);
}
.hero-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 24px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease 0.2s;
}
.hero-slide.active .hero-slide-caption {
  opacity: 1;
  transform: translateY(0);
}
.hero-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  z-index: 10;
  opacity: 0;
}
.hero-slider:hover .hero-slider-btn {
  opacity: 1;
}
.hero-slider-btn:hover {
  background: rgba(255,255,255,0.3);
}
.hero-slider-btn.prev { left: 16px; }
.hero-slider-btn.next { right: 16px; }
.hero-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.hero-slider-dot.active {
  background: var(--accent-gold);
  width: 28px;
  border-radius: 4px;
}
.hero-slider-dot:hover {
  background: rgba(255,255,255,0.7);
}
@media (max-width: 1200px) {
  .hero-slider {
    width: 100%;
    max-width: 600px;
    height: 320px;
  }
}
@media (max-width: 768px) {
  .hero-slider {
    width: 100%;
    max-width: 100%;
    height: 260px;
    order: -1;
    margin-bottom: 20px;
  }
  .hero-slider-btn { opacity: 1; width: 36px; height: 36px; }
}
.hero-card {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 16px;
  padding: 32px; width: 100%; max-width: 420px;
}
.hero-card h3 { font-size: 18px; margin-bottom: 16px; }
.hero-card .stat-row {
  display: flex; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
}
.hero-card .stat-row:last-child { border-bottom: none; }

/* Ticker */
.ticker-wrap {
  background: var(--text-dark); color: white;
  overflow: hidden; white-space: nowrap;
  padding: 10px 0; position: relative;
}
.ticker-label {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--barco-blue); color: white;
  padding: 0 18px; display: flex; align-items: center;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  z-index: 2; letter-spacing: 1.5px;
}
.ticker {
  display: inline-block;
  animation: ticker 300s linear infinite;
  padding-left: 270px;
}
.ticker-item {
  display: inline-block; padding: 0 40px;
  font-size: 13px; color: rgba(255,255,255,0.8);
}
.ticker-item strong { color: var(--accent-gold); }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Sections */
.section {
  padding: 80px 24px; max-width: var(--max-width);
  margin: 0 auto;
}
.section-header {
  text-align: center; max-width: 700px; margin: 0 auto 56px;
}
.section-header h2 {
  font-size: 38px; font-weight: 800; color: var(--text-dark);
  margin-bottom: 16px; letter-spacing: -0.5px;
}
.section-header p {
  font-size: 17px; color: var(--text-light);
}

/* Cards — Glassmorphic Why Choose Us */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .card-grid { grid-template-columns: 1fr; }
}
.card {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,94,184,0.06), inset 0 1px 0 rgba(255,255,255,0.8);
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--barco-blue), var(--accent-gold));
  opacity: 0;
  transition: opacity 0.3s;
}
.card:hover::before { opacity: 1; }
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,94,184,0.12), inset 0 1px 0 rgba(255,255,255,0.9);
  border-color: rgba(0,94,184,0.2);
  background: rgba(255,255,255,0.75);
}
.card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(0,94,184,0.08); color: var(--barco-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
  transition: all 0.3s;
}
.card:hover .card-icon {
  background: var(--barco-blue); color: white;
  transform: scale(1.08);
}
.card h3 {
  font-size: 18px; font-weight: 700; color: var(--text-dark);
  margin-bottom: 12px;
}
.card p { font-size: 14px; color: var(--text-light); line-height: 1.65; }
.card a {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; color: var(--barco-blue);
  text-decoration: none; font-weight: 600; font-size: 14px;
}
.card a:hover { gap: 10px; }

/* Process Steps */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-step {
  text-align: center; padding: 32px 24px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); position: relative;
}
.process-step::after {
  content: '\2192'; position: absolute; right: -20px; top: 50%;
  transform: translateY(-50%); color: var(--barco-blue);
  font-size: 24px; font-weight: 700;
}
.process-step:last-child::after { display: none; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--barco-blue); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700; margin: 0 auto 16px;
}
.process-step h3 {
  font-size: 18px; font-weight: 700; margin-bottom: 8px;
}
.process-step p { font-size: 14px; color: var(--text-light); }

/* ===== FAQ Accordion ===== */
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.2s;
}
.faq-item:hover {
  border-color: rgba(0,94,184,0.2);
}
.faq-item[open] {
  border-color: rgba(0,94,184,0.25);
  box-shadow: 0 4px 16px rgba(0,94,184,0.06);
}
.faq-item summary {
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--barco-blue);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover {
  background: rgba(0,94,184,0.03);
}
.faq-item .faq-answer {
  padding: 0 24px 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-body);
}
.faq-item .faq-answer p {
  margin: 0;
}
.faq-search input:focus {
  outline: none;
  border-color: var(--barco-blue);
  box-shadow: 0 0 0 4px rgba(0,94,184,0.08);
}
.faq-item.hidden {
  display: none;
}

/* Footer */
.site-footer {
  background: var(--text-dark); color: rgba(255,255,255,0.7);
  padding: 60px 24px 24px;
}
.footer-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-brand .logo-icon {
  background: var(--barco-blue); margin-bottom: 16px;
}
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.footer-brand .company-name {
  color: white; font-weight: 600; font-size: 15px;
}
.footer-col h4 {
  color: white; font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.6); text-decoration: none;
  font-size: 14px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent-gold); }

.footer-ticker {
  grid-column: 1 / -1;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius); padding: 20px;
  margin-top: 20px;
}
.footer-ticker h4 {
  color: var(--accent-gold); font-size: 13px;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 12px;
}

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px; margin-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent-gold); }

/* Accessibility Widget */
.a11y-widget {
  position: fixed; bottom: 24px; left: 24px;
  z-index: 9999;
}
.a11y-toggle {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--barco-blue); color: white;
  border: none; cursor: pointer; font-size: 24px;
  box-shadow: var(--shadow-lg); transition: all 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.a11y-toggle:hover { transform: scale(1.1); }
.a11y-panel {
  position: absolute; bottom: 70px; left: 0;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  width: 280px; padding: 20px; display: none;
}
.a11y-panel.open { display: block; }
.a11y-panel h4 {
  font-size: 14px; font-weight: 700; margin-bottom: 16px;
  color: var(--text-dark);
}
.a11y-option {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.a11y-option:last-child { border-bottom: none; }
.a11y-switch {
  width: 44px; height: 24px; border-radius: 12px;
  background: var(--border); position: relative; cursor: pointer;
  transition: background 0.3s;
}
.a11y-switch.active { background: var(--barco-blue); }
.a11y-switch::after {
  content: ''; position: absolute; top: 2px; left: 2px;
  width: 20px; height: 20px; border-radius: 50%;
  background: white; transition: transform 0.3s;
}
.a11y-switch.active::after { transform: translateX(20px); }

/* Platform Cards — Glassmorphic 2×3 Grid */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .platform-grid { grid-template-columns: 1fr; }
}
.platform-grid a.platform-card,
.platform-grid a.platform-card:hover {
  text-decoration: none;
  color: var(--text-body);
}
.platform-card {
  position: relative;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.35s ease;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0,94,184,0.05), inset 0 1px 0 rgba(255,255,255,0.8);
}
.platform-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--barco-blue), var(--accent-gold));
  opacity: 0;
  transition: opacity 0.3s;
}
.platform-card:hover::before { opacity: 1; }
.platform-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,94,184,0.12), inset 0 1px 0 rgba(255,255,255,0.9);
  border-color: rgba(0,94,184,0.15);
  background: rgba(255,255,255,0.72);
}
.platform-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(0,94,184,0.08);
  color: var(--barco-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
  transition: all 0.3s;
}
.platform-card:hover .platform-icon {
  background: var(--barco-blue);
  color: white;
  transform: scale(1.1);
}
.platform-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.platform-card p {
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.platform-card ul {
  list-style: none;
  font-size: 13px;
  color: var(--text-light);
}
.platform-card li {
  padding: 5px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 8px;
}
.platform-card li:last-child { border-bottom: none; }
.platform-card li::before {
  content: '\2713';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}
.platform-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--barco-blue);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none !important;
  transition: gap 0.2s;
}
.platform-link:hover {
  gap: 10px;
  text-decoration: none !important;
}
.platform-card--gold .platform-icon {
  background: rgba(201,162,39,0.12);
  color: #8a6d0b;
}
.platform-card--gold:hover .platform-icon {
  background: var(--accent-gold);
  color: var(--text-dark);
}
.platform-card--gold::before {
  background: var(--accent-gold);
}

/* Coverage Cards - bigger, flush row */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.coverage-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.coverage-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--barco-blue), var(--accent-gold));
  opacity: 0;
  transition: opacity 0.3s;
}
.coverage-card:hover::before { opacity: 1; }
.coverage-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--barco-blue);
}
.coverage-icon {
  font-size: 56px;
  margin-bottom: 16px;
  line-height: 1;
}
.coverage-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.coverage-card p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.6;
}
.coverage-card .btn {
  margin-top: auto;
}

/* Geo Pages */
.geo-hero {
  background: linear-gradient(135deg, var(--barco-blue), var(--barco-dark));
  color: white; padding: 120px 24px 60px;
}
.geo-hero-inner {
  max-width: var(--max-width); margin: 0 auto;
}
.geo-hero h1 { font-size: 42px; font-weight: 800; margin-bottom: 16px; }
.geo-hero p { font-size: 18px; opacity: 0.9; max-width: 600px; }

.geo-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.geo-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  text-decoration: none; color: var(--text-body);
  transition: all 0.2s;
}
.geo-card:hover {
  border-color: var(--barco-blue); transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.geo-card h3 { font-size: 16px; font-weight: 700; color: var(--text-dark); }
.geo-card p { font-size: 13px; color: var(--text-light); margin-top: 4px; }

/* Booking Form */
.booking-container {
  max-width: 900px; margin: 0 auto;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.booking-progress {
  display: flex; background: var(--bg-light);
  border-bottom: 1px solid var(--border);
}
.booking-step {
  flex: 1; padding: 20px; text-align: center;
  font-size: 14px; font-weight: 600; color: var(--text-light);
  position: relative;
}
.booking-step.active {
  background: var(--barco-blue); color: white;
}
.booking-step.completed { color: var(--success); }
.booking-step::after {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0;
  width: 1px; background: var(--border);
}
.booking-step:last-child::after { display: none; }

.booking-body { padding: 40px; }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block; font-size: 14px; font-weight: 600;
  color: var(--text-dark); margin-bottom: 8px;
}
.form-group label .required { color: var(--error); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 15px; font-family: inherit;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--barco-blue);
  box-shadow: 0 0 0 3px var(--barco-light);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-hint { font-size: 12px; color: var(--text-light); margin-top: 4px; }

.checkbox-group {
  display: flex; align-items: flex-start; gap: 12px;
}
.checkbox-group input { width: auto; margin-top: 4px; }
.checkbox-group label { font-weight: 400; font-size: 14px; }

.form-nav {
  display: flex; justify-content: space-between; margin-top: 32px;
  padding-top: 24px; border-top: 1px solid var(--border);
}

/* Error Code Tables */
.error-table {
  width: 100%; border-collapse: collapse; font-size: 14px;
  margin-bottom: 32px;
}
.error-table th {
  background: var(--barco-blue); color: white;
  padding: 14px 16px; text-align: left; font-weight: 600;
}
.error-table td {
  padding: 14px 16px; border-bottom: 1px solid var(--border);
}
.error-table tr:nth-child(even) { background: var(--bg-light); }
.error-table tr:hover { background: var(--barco-light); }
.code-badge {
  display: inline-block; padding: 4px 10px; border-radius: 4px;
  background: var(--barco-light); color: var(--barco-blue);
  font-family: monospace; font-weight: 700; font-size: 13px;
}
.severity-high { color: var(--error); font-weight: 700; }
.severity-med { color: var(--warning); font-weight: 700; }
.severity-low { color: var(--success); font-weight: 700; }

/* Breadcrumbs */
.breadcrumbs {
  background: var(--bg-light); padding: 12px 24px;
  border-bottom: 1px solid var(--border);
}
.breadcrumbs-inner {
  max-width: var(--max-width); margin: 0 auto;
  font-size: 13px; color: var(--text-light);
}
.breadcrumbs a { color: var(--barco-blue); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span { color: var(--text-light); margin: 0 8px; }

/* Admin */
.admin-login { min-height:100vh; display:flex; align-items:center; justify-content:center; background:linear-gradient(135deg,var(--barco-blue),var(--barco-dark)); }
.admin-box { background:white; padding:48px; border-radius:var(--radius); box-shadow:var(--shadow-lg); width:100%; max-width:420px; }
.admin-box h2 { text-align:center; margin-bottom:24px; color:var(--text-dark); }
.admin-dashboard { display:none; padding:40px 24px; max-width:var(--max-width); margin:0 auto; }
.admin-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:32px; }
.admin-stats { display:grid; grid-template-columns:repeat(4, 1fr); gap:20px; margin-bottom:32px; }
.admin-stat { background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius); padding:24px; }
.admin-stat .number { font-size:32px; font-weight:800; color:var(--barco-blue); }
.admin-stat .label { font-size:13px; color:var(--text-light); margin-top:4px; }
.admin-table-wrap { background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; }
.admin-table { width:100%; border-collapse:collapse; font-size:14px; }
.admin-table th { background:var(--bg-light); padding:14px 16px; text-align:left; font-size:12px; text-transform:uppercase; letter-spacing:0.5px; color:var(--text-light); font-weight:700; border-bottom:1px solid var(--border); }
.admin-table td { padding:14px 16px; border-bottom:1px solid var(--border); }
.admin-table tr:hover { background:var(--bg-light); }
.status-badge { display:inline-block; padding:4px 10px; border-radius:100px; font-size:12px; font-weight:600; }
.status-new { background:#dbeafe; color:#1e40af; }
.status-progress { background:#fef3c7; color:#92400e; }
.status-complete { background:#d1fae5; color:#065f46; }

/* About page */
.about-hero { background: linear-gradient(135deg, var(--barco-blue), var(--barco-dark)); color: white; padding: 60px 24px 80px; }
.about-hero-inner { max-width: var(--max-width); margin: 0 auto; text-align: center; }
.about-hero h1 { font-size: 48px; font-weight: 800; margin-bottom: 16px; }
.about-hero p { font-size: 18px; opacity: 0.9; max-width: 700px; margin: 0 auto; }
.about-content { max-width: 900px; margin: 0 auto; }
.about-content h3 { font-size: 24px; font-weight: 700; color: var(--text-dark); margin: 40px 0 16px; }
.about-content p { font-size: 16px; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.about-content ul { list-style: none; margin: 16px 0; }
.about-content li { padding: 8px 0; display: flex; align-items: center; gap: 10px; color: var(--text-body); }
.about-content li::before { content: '\2713'; color: var(--success); font-weight: 700; }

/* Services page */
.services-list { max-width: 900px; margin: 0 auto; }
.service-item { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 60px; align-items: center; }
.service-item:nth-child(even) { direction: rtl; }
.service-item:nth-child(even) > * { direction: ltr; }
.service-text h3 { font-size: 24px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.service-text p { font-size: 15px; color: var(--text-light); line-height: 1.7; }
.service-text ul { list-style: none; margin-top: 16px; }
.service-text li { padding: 6px 0; display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-body); }
.service-text li::before { content: '\2713'; color: var(--success); font-weight: 700; }
.service-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.service-img img { width: 100%; height: auto; display: block; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 900px; margin: 0 auto; }
.contact-info h3 { font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 16px; }
.contact-info p { font-size: 15px; color: var(--text-light); margin-bottom: 12px; }
.contact-info a { color: var(--barco-blue); text-decoration: none; }
.contact-info a:hover { text-decoration: underline; }
.contact-form .form-group { margin-bottom: 20px; }

/* Responsive */
@media (max-width: 1200px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step::after { display: none; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 36px; }
  .main-nav { display: none; }
  .mobile-toggle { display: flex; }
  .footer-inner { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
  .section-header h2 { font-size: 28px; }
  .about-hero h1 { font-size: 36px; }
  .service-item { grid-template-columns: 1fr; }
  .service-item:nth-child(even) { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }
  .hero-visual--image { margin-top: 24px; order: -1; max-width: 100%; }
  .hero-img { max-height: 220px; }
  .middle-bar-inner { flex-direction: column; gap: 4px; font-size: 10px; text-align: center; }
  .middle-bar { height: auto; padding: 6px 0; }
  .top-bar-inner { flex-wrap: wrap; justify-content: center; }
  .top-bar { height: auto; padding: 4px 0; }
}

/* Dark mode support via accessibility widget */
body.high-contrast {
  --text-dark: #000;
  --text-body: #000;
  --bg-white: #fff;
  --bg-light: #fff;
  --border: #000;
}
body.large-text { font-size: 18px; }
body.large-text .hero-content h1 { font-size: 58px; }

/* ===== Cookie Consent Banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  padding: 0 16px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner-inner {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0,94,184,0.12);
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.1);
  padding: 24px 32px;
  max-width: 900px;
  width: 100%;
}
.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.cookie-overlay.visible { display: flex; opacity: 1; }
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 520px;
  width: 90%;
  padding: 32px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  transform: translateY(20px);
  transition: transform 0.3s;
}
.cookie-overlay.visible .cookie-modal { transform: translateY(0); }

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.testimonial-card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.8);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
  color: var(--accent-gold);
}
.testimonial-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}