/* ============================================================
   GRUPO BARRDEGA - Main Stylesheet
   Light & Executive Corporate Theme
   ============================================================ */

/* Google Fonts loaded via <link> in HTML for non-blocking render */

/* --- CSS Custom Properties --- */
:root {
  /* Brand Colors */
  --navy: #0b2545;
  --navy-light: #13365f;
  --navy-dark: #081b33;
  --gold: #b8860b;
  --gold-light: #d4a017;
  --gold-muted: rgba(184, 134, 11, 0.15);

  /* Neutrals */
  --white: #ffffff;
  --off-white: #fafafa;
  --gray-50: #f5f5f5;
  --gray-100: #eeeeee;
  --gray-200: #e0e0e0;
  --gray-300: #bdbdbd;
  --gray-400: #9e9e9e;
  --charcoal: #2c2c2c;
  --charcoal-light: #4a4a4a;

  /* Surfaces & Borders */
  --surface: var(--white);
  --surface-alt: var(--gray-50);
  --border: rgba(0, 0, 0, 0.08);
  --border-light: rgba(0, 0, 0, 0.05);

  /* Text */
  --text-primary: var(--charcoal);
  --text-secondary: var(--charcoal-light);
  --text-muted: #757575;

  /* Typography */
  --font-display: 'DM Serif Display', serif;
  --font-body: 'DM Sans', sans-serif;

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 140px);
  --container-width: 1280px;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);

  /* Gradients */
  --gradient-navy: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--navy) var(--gray-100);
}

html::-webkit-scrollbar {
  width: 8px;
}

html::-webkit-scrollbar-track {
  background: var(--gray-100);
}

html::-webkit-scrollbar-thumb {
  background: var(--navy);
  border-radius: 4px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.7rem);
}

h4 {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-family: var(--font-body);
  font-weight: 600;
}

p {
  color: var(--text-secondary);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-subtitle {
  max-width: 600px;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.8;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 2px 8px rgba(11, 37, 69, 0.2);
}

.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(11, 37, 69, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

.btn-orange {
  background: var(--gradient-gold);
  color: #fff;
  box-shadow: 0 2px 8px rgba(184, 134, 11, 0.25);
}

.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(184, 134, 11, 0.35);
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0, 0, 0, 0.04);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.nav-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) saturate(100%);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 18px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.nav-cta {
  padding: 10px 24px !important;
  background: var(--navy) !important;
  color: #fff !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--navy-light) !important;
  transform: translateY(-1px);
}

/* Language Selector */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.lang-switch a {
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.lang-switch a:hover {
  color: var(--navy);
}

.lang-switch a.active-lang {
  color: var(--navy);
  background: rgba(11, 37, 69, 0.06);
}

.lang-switch .lang-divider {
  color: var(--gray-300);
  user-select: none;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
  padding: 8px;
}

.nav-hamburger span {
  width: 28px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out-expo);
  transform-origin: center;
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-secondary);
  padding: 12px 24px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.nav-mobile.open a {
  animation: mobileNavIn 0.5s var(--ease-out-expo) forwards;
}

.nav-mobile a:nth-child(1) { animation-delay: 0.1s; }
.nav-mobile a:nth-child(2) { animation-delay: 0.15s; }
.nav-mobile a:nth-child(3) { animation-delay: 0.2s; }
.nav-mobile a:nth-child(4) { animation-delay: 0.25s; }
.nav-mobile a:nth-child(5) { animation-delay: 0.3s; }
.nav-mobile a:nth-child(6) { animation-delay: 0.35s; }

.nav-mobile-lang {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  opacity: 0;
  transform: translateY(20px);
}

.nav-mobile.open .nav-mobile-lang {
  animation: mobileNavIn 0.5s var(--ease-out-expo) 0.35s forwards;
}

.nav-mobile-lang a {
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  font-weight: 600;
  padding: 8px 20px !important;
  border-radius: 6px;
  transform: none !important;
}

.nav-mobile-lang a.active-lang {
  color: var(--navy) !important;
  background: rgba(11, 37, 69, 0.06);
}

.nav-mobile-lang .lang-divider {
  color: var(--gray-300);
  font-size: 1rem;
}

.nav-mobile a:hover {
  color: var(--navy);
}

@keyframes mobileNavIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--off-white);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--white) 0%, var(--gray-50) 50%, rgba(11, 37, 69, 0.03) 100%);
  z-index: 0;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
  padding-top: 120px;
}

.hero-content {
  flex: 1;
  min-width: 0;
}

.hero-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-logo::before {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(11, 37, 69, 0.95), var(--navy));
  box-shadow:
    0 20px 60px rgba(11, 37, 69, 0.3),
    0 0 0 1px rgba(184, 134, 11, 0.15),
    inset 0 -4px 20px rgba(0, 0, 0, 0.2);
  animation: logo-float 6s ease-in-out infinite;
}

.hero-logo::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(184, 134, 11, 0.12);
  animation: logo-float 6s ease-in-out infinite reverse;
}

.hero-logo img {
  position: relative;
  z-index: 1;
  width: 220px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
  animation: logo-float 6s ease-in-out infinite;
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--gold-muted);
  border: 1px solid rgba(184, 134, 11, 0.25);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
  max-width: 800px;
  margin-bottom: 1.5rem;
  color: var(--navy);
}

.text-gradient {
  color: var(--gold);
}

.hero-description {
  max-width: 550px;
  font-size: clamp(1.05rem, 1.3vw, 1.15rem);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: var(--text-secondary);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-number .counter-suffix {
  color: var(--gold);
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: float-scroll 3s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--navy), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes float-scroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products {
  padding: var(--section-pad) 0;
  position: relative;
  background: var(--white);
}

.products-header {
  text-align: center;
  margin-bottom: 4rem;
}

.products-header .section-label {
  justify-content: center;
}

.products-header .section-label::before {
  display: none;
}

.products-header .section-subtitle {
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 32px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--gray-200);
}

.product-card-glow {
  display: none;
}

.product-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.product-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.product-icon--warehouse { background: rgba(11, 37, 69, 0.08); }
.product-icon--books { background: rgba(184, 134, 11, 0.1); }
.product-icon--customs { background: rgba(11, 37, 69, 0.06); }

.product-card h3 {
  margin-bottom: 0.75rem;
}

.product-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.5rem;
}

.product-feature {
  padding: 6px 14px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  transition: all 0.3s ease;
}

.product-link:hover {
  color: var(--gold);
  gap: 12px;
}

/* ============================================================
   ZEBRA PARTNERSHIP SECTION
   ============================================================ */
.zebra-section {
  padding: var(--section-pad) 0;
  position: relative;
  background: var(--gray-50);
  overflow: hidden;
}

.zebra-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.zebra-text {
  max-width: 540px;
}

.zebra-text p {
  margin-bottom: 2rem;
  line-height: 1.8;
}

.zebra-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.zebra-logo-container {
  width: 200px;
  height: 200px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.zebra-logo-container img {
  width: 100%;
  height: auto;
}

.zebra-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.zebra-badge {
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.zebra-badge-icon {
  color: var(--gold);
  font-size: 1.1rem;
}

.zebra-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   CLIENTS SECTION
   ============================================================ */
.clients {
  padding: var(--section-pad) 0;
  background: var(--white);
  overflow: hidden;
}

.clients-header {
  text-align: center;
  margin-bottom: 3rem;
}

.clients-header .section-label {
  justify-content: center;
}

.clients-header .section-label::before {
  display: none;
}

.clients-track {
  display: flex;
  animation: scroll-logos 30s linear infinite;
  gap: 60px;
  padding: 20px 0;
}

.clients-track:hover {
  animation-play-state: paused;
}

.client-logo {
  flex-shrink: 0;
  height: 60px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.5;
  transition: all 0.4s ease;
}

.client-logo:hover {
  opacity: 1;
}

@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT SECTION (Homepage preview)
   ============================================================ */
.about-preview {
  padding: var(--section-pad) 0;
  background: var(--gray-50);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 37, 69, 0.05), transparent);
}

.about-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  padding: var(--section-pad) 0;
  background: var(--white);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  border-color: var(--gray-200);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: #fff;
}

.contact-icon svg {
  stroke: #fff;
}

.contact-item h3,
.contact-item h4 {
  margin-bottom: 4px;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--navy);
}

.contact-item p {
  font-size: 0.9rem;
}

.contact-item a {
  color: var(--navy) !important;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--gold) !important;
}

.contact-form-container {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  min-height: 500px;
}

.contact-form-container iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 60px 0 30px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 300px;
  margin-top: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.footer-brand img {
  height: 36px;
}

.footer h5 {
  font-size: 0.85rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   PAGE HERO (for inner pages)
   ============================================================ */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  background: var(--gray-50);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--white) 0%, var(--gray-50) 100%);
}

.page-hero::after {
  display: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 1rem;
  color: var(--navy);
}

.page-hero p {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ============================================================
   ABOUT PAGE SECTIONS
   ============================================================ */
.about-story {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.about-story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-story-content p {
  margin-bottom: 1.5rem;
  line-height: 1.85;
}

/* Mission, Vision, Values */
.mvv-section {
  padding: var(--section-pad) 0;
  background: var(--gray-50);
  position: relative;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 4rem;
}

.mvv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.mvv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.mvv-card:hover::before {
  transform: scaleX(1);
}

.mvv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.mvv-card:nth-child(2)::before {
  background: var(--gold);
}

.mvv-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(11, 37, 69, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}

.mvv-card h3 {
  margin-bottom: 0.75rem;
}

.mvv-card p {
  font-size: 0.92rem;
  line-height: 1.75;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.value-item {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.value-item:hover {
  border-color: var(--gray-200);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.value-item h4 {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
}

.value-icon {
  color: var(--gold);
  font-size: 1.1rem;
}

.value-item p {
  font-size: 0.88rem;
  line-height: 1.7;
}

/* Team Section */
.team-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.team-card-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-card:hover .team-card-image img {
  transform: scale(1.03);
}

.team-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.8), transparent);
}

.team-card-info {
  padding: 24px;
  text-align: center;
}

.team-card-info h3 {
  margin-bottom: 4px;
  font-size: 1.2rem;
}

.team-card-info .role {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.team-socials a:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

/* ============================================================
   COMPANIES PAGE
   ============================================================ */
.companies-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.company-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.company-tab {
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 6px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.company-tab:hover {
  color: var(--text-secondary);
  background: var(--gray-50);
}

.company-tab.active {
  color: var(--navy);
  background: rgba(11, 37, 69, 0.06);
  border-color: rgba(11, 37, 69, 0.15);
}

.company-panels {
  position: relative;
}

.company-panel {
  display: none;
  animation: panelFadeIn 0.4s ease;
}

.company-panel.active {
  display: block;
}

@keyframes panelFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.company-panel-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 2rem;
}

.company-panel-header > img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: var(--navy);
  border: 1px solid var(--border);
  padding: 12px;
  flex-shrink: 0;
  object-fit: contain;
}

.company-panel-logo {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: var(--navy);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  flex-shrink: 0;
}

.company-panel-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.company-panel-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

.company-panel-content p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.company-panel-content h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.company-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.company-highlight {
  padding: 20px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.company-highlight:hover {
  border-color: var(--gray-200);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.company-highlight h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.company-highlight p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

.highlight-icon {
  color: var(--gold);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form-wrapper {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  padding: 8px;
}

.contact-form-wrapper iframe {
  width: 100%;
  min-height: 600px;
  border: none;
  border-radius: 8px;
}

/* ============================================================
   SCROLL ANIMATIONS — subtle for corporate feel
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.6s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.6s ease;
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .zebra-content,
  .about-grid,
  .contact-grid,
  .about-story-content,
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mvv-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .company-panel-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-layout {
    flex-direction: column-reverse;
    gap: 32px;
    padding-top: 100px;
  }

  .hero-logo::before {
    width: 220px;
    height: 220px;
  }

  .hero-logo::after {
    width: 240px;
    height: 240px;
  }

  .hero-logo img {
    width: 150px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .mvv-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .company-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .company-tabs::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .zebra-buttons {
    flex-direction: column;
  }
}

/* ============================================================
   CLASS ALIASES (compatibility with variant markup)
   ============================================================ */
.company-panel-description { }
.company-panel-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Footer column alias */
.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.2rem;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

/* Social icons alias */
.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

/* Page hero without wrapper div */
.page-hero > .container > .section-label,
.page-hero > .container > h1,
.page-hero > .container > p {
  position: relative;
  z-index: 1;
}

.page-hero > .container > h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 1rem;
  color: var(--navy);
}

.page-hero > .container > p {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.8;
  max-width: 700px;
  color: var(--text-secondary);
}

/* ============================================================
   LEGAL PAGES (Privacy, Terms)
   ============================================================ */
.legal-content {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.legal-content .container {
  max-width: 800px;
}

.legal-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--navy);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.85;
}

.legal-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  list-style: disc;
}

.legal-content ul li {
  margin-bottom: 0.5rem;
  line-height: 1.75;
  color: var(--text-secondary);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
}

/* ============================================================
   PORTFOLIO PILLARS (Homepage 5-pillar cards)
   ============================================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-grid .product-card:nth-child(4),
.portfolio-grid .product-card:nth-child(5) {
  /* Center bottom row of 2 items in a 3-col grid */
}

@media (min-width: 769px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .portfolio-grid-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 66.666%;
    margin: 24px auto 0;
  }
}

@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-grid-bottom {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid-bottom {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}

.product-icon--cloud { background: rgba(11, 37, 69, 0.08); }
.product-icon--hardware { background: rgba(184, 134, 11, 0.1); }
.product-icon--logistics { background: rgba(11, 37, 69, 0.06); }
.product-icon--ecommerce { background: rgba(184, 134, 11, 0.08); }
.product-icon--saas { background: rgba(11, 37, 69, 0.1); }

/* ============================================================
   AT A GLANCE STATS (About page)
   ============================================================ */
.stats-section {
  padding: var(--section-pad) 0;
  background: var(--navy);
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 32px 16px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   OFFICE LOCATIONS (Contact page + About page)
   ============================================================ */
.offices-section {
  padding: var(--section-pad) 0;
  background: var(--gray-50);
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.office-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.office-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--gray-200);
}

.office-flag {
  margin-bottom: 1rem;
  line-height: 1;
}

.office-flag img {
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.office-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.office-card .office-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.office-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.office-card a {
  color: var(--navy);
  font-weight: 500;
  transition: color 0.3s ease;
}

.office-card a:hover {
  color: var(--gold);
}

@media (max-width: 1024px) {
  .offices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .offices-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ============================================================
   PARTNERSHIPS SECTION (About page)
   ============================================================ */
.partners-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-content: center;
  margin-top: 2rem;
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px 24px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  min-height: 120px;
}

.partner-card img,
.partner-card svg {
  max-height: 40px;
  max-width: 160px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.partner-card span {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

.partner-card:hover {
  border-color: var(--gray-200);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.partner-card:hover img,
.partner-card:hover svg {
  transform: scale(1.05);
}

.partner-badge {
  padding: 16px 32px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.partner-badge:hover {
  border-color: var(--gray-200);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .partners-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================================
   PILLAR SECTIONS (Companies page - replaces flat tabs)
   ============================================================ */
.pillar-section {
  padding: var(--section-pad) 0;
  position: relative;
}

.pillar-section:nth-child(odd) {
  background: var(--white);
}

.pillar-section:nth-child(even) {
  background: var(--gray-50);
}

.pillar-header {
  margin-bottom: 3rem;
}

.pillar-number {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.pillar-companies {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.pillar-company-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.pillar-section:nth-child(even) .pillar-company-card {
  background: var(--white);
}

.pillar-company-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--gray-200);
}

.pillar-company-card h3 {
  margin-bottom: 0.5rem;
}

.pillar-company-card .company-url {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.pillar-company-card .company-url:hover {
  color: var(--gold-light);
}

.pillar-company-card p {
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.pillar-company-card .product-features {
  margin-bottom: 0;
}

/* Single full-width pillar card */
.pillar-companies--single {
  grid-template-columns: 1fr;
}

.pillar-companies--single .pillar-company-card {
  max-width: 800px;
}

/* Three-column pillar layout */
.pillar-companies--three {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .pillar-companies--three {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pillar-companies,
  .pillar-companies--three {
    grid-template-columns: 1fr;
  }
}

/* Team card bio text */
.team-card-info .bio {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  text-align: left;
}
