/* ===== ANICETO LOGISTICS GROUP — Brand Design System v2 ===== */

:root {
  --brand-blue: #2B5EA0;
  --brand-blue-dark: #1E4478;
  --brand-blue-deeper: #152F55;
  --brand-blue-light: #4A8AD4;
  --brand-blue-pale: #D6E4F5;
  --brand-blue-ghost: #EBF1FA;
  --brand-white: #FFFFFF;
  --brand-navy: #152F55;
  --brand-accent: #C9A24E;
  --brand-accent-light: #E8D49F;
  --color-text: #2D3748;
  --color-text-light: #5A6B80;
  --color-surface: #FFFFFF;
  --color-background: #F5F8FC;
  --color-border: #D0DAE8;
  --font-heading: 'Nunito', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --max-width: 1200px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 8px rgba(43, 94, 160, 0.06);
  --shadow-md: 0 4px 20px rgba(43, 94, 160, 0.1);
  --shadow-lg: 0 12px 40px rgba(43, 94, 160, 0.14);
  --shadow-card: 0 2px 16px rgba(43, 94, 160, 0.07);
  --transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-background);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brand-blue-light); }
ul, ol { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--brand-navy);
  line-height: 1.2;
  font-weight: 800;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; max-width: 72ch; }
.lead { font-size: 1.15rem; color: var(--color-text-light); line-height: 1.8; }

/* ===== BRAND SWIRL (SVG background element) ===== */
.swirl-bg {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.08;
}

.swirl-bg--hero {
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  opacity: 0.15;
}

.swirl-bg--section {
  right: -200px;
  top: -100px;
  width: 500px;
  height: 500px;
  opacity: 0.05;
}

.swirl-bg--left {
  left: -200px;
  bottom: -100px;
  width: 400px;
  height: 400px;
  opacity: 0.04;
  transform: scaleX(-1);
}

/* ===== LAYOUT ===== */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; position: relative; overflow: hidden; }
.section--alt { background: var(--color-surface); }
.section--brand { background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 50%, var(--brand-blue-deeper) 100%); color: var(--brand-white); }
.section--brand h2, .section--brand h3, .section--brand h4 { color: var(--brand-white); }
.section--brand .lead { color: rgba(255,255,255,0.8); }
.section--pale { background: var(--brand-blue-ghost); }

.grid { display: grid; gap: 2rem; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 28rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); }
.text-center { text-align: center; }

/* ===== DIAGONAL SECTIONS (brand brochure style) ===== */
.section--diagonal::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  height: 120px;
  background: inherit;
  transform: skewY(-2deg);
  z-index: 1;
}

.section--diagonal-reverse::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  height: 120px;
  background: inherit;
  transform: skewY(2deg);
  z-index: 1;
}

/* ===== HEADER / NAVBAR ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(43, 94, 160, 0.08);
  transition: box-shadow var(--transition);
}
.header--scrolled { box-shadow: 0 4px 24px rgba(43, 94, 160, 0.1); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* LOGO — matching brand */
.header__logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}

.logo-svg { height: 42px; width: auto; }

.nav { display: flex; align-items: center; gap: 0.25rem; }
.nav__link {
  padding: 0.5rem 0.9rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-navy);
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav__link:hover, .nav__link--active {
  color: var(--brand-blue);
  background: var(--brand-blue-ghost);
}

.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 260px;
  padding: 0.75rem 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 100;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__dropdown-item {
  display: block;
  padding: 0.65rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  transition: all var(--transition);
}
.nav__dropdown-item:hover {
  background: var(--brand-blue-ghost);
  color: var(--brand-blue);
  padding-left: 1.75rem;
}

.nav__lang {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 1.25rem;
  padding: 3px;
  background: var(--brand-blue-ghost);
  border-radius: 999px;
}
.nav__lang a {
  padding: 0.3rem 0.8rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 999px;
  color: var(--color-text-light);
  transition: all var(--transition);
}
.nav__lang a.active {
  background: var(--brand-blue);
  color: var(--brand-white);
  box-shadow: 0 2px 8px rgba(43, 94, 160, 0.3);
}
.nav__cta { margin-left: 1rem; }

.header__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--brand-navy);
}
.header__toggle svg { width: 24px; height: 24px; }

@media (max-width: 1024px) {
  .header__toggle { display: flex; }
  .nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    height: calc(100vh - 76px);
    height: calc(100dvh - 76px);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translate3d(100%, 0, 0);
    transition: transform 300ms ease, visibility 300ms ease;
    visibility: hidden;
    gap: 0.125rem;
    z-index: 999;
  }
  .nav--open { transform: translate3d(0, 0, 0); visibility: visible; }
  body.nav-is-open { overflow: hidden; }
  .nav__link { padding: 0.875rem 1rem; font-size: 1rem; }
  .nav__dropdown-menu {
    position: static; opacity: 1; visibility: visible;
    transform: none; box-shadow: none; border: none;
    padding-left: 1rem; background: transparent;
  }
  .nav__lang { margin: 1rem 0 0; justify-content: center; }
  .nav__cta { margin: 0.5rem 0 0; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 800;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:focus-visible { outline: 3px solid var(--brand-blue-light); outline-offset: 2px; }
.btn svg { width: 18px; height: 18px; }

.btn--primary {
  background: var(--brand-blue);
  color: var(--brand-white);
  box-shadow: 0 4px 16px rgba(43, 94, 160, 0.3);
}
.btn--primary:hover {
  background: var(--brand-blue-dark);
  color: var(--brand-white);
  box-shadow: 0 6px 24px rgba(43, 94, 160, 0.4);
  transform: translateY(-1px);
}

.btn--secondary {
  background: transparent;
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}
.btn--secondary:hover {
  background: var(--brand-blue);
  color: var(--brand-white);
  transform: translateY(-1px);
}

.btn--white {
  background: var(--brand-white);
  color: var(--brand-blue);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.btn--white:hover {
  background: var(--brand-blue-ghost);
  color: var(--brand-blue-dark);
  transform: translateY(-1px);
}

.btn--outline-white {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
  color: var(--brand-white);
  backdrop-filter: blur(4px);
}
.btn--outline-white:hover {
  background: var(--brand-white);
  color: var(--brand-blue);
  border-color: var(--brand-white);
}

.btn--sm { padding: 0.55rem 1.25rem; font-size: 0.8125rem; }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 11rem 0 7rem;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 40%, var(--brand-blue-deeper) 100%);
  color: var(--brand-white);
  overflow: hidden;
}

.hero__swirl {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  max-width: 700px;
  height: auto;
  opacity: 0.12;
  pointer-events: none;
}

.hero__logo-right {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: min(38vw, 420px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.22;
}
.hero__logo-right img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 960px) { .hero__logo-right { display: none; } }

.hero__wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 2;
}

.hero h1 { color: var(--brand-white); margin-bottom: 1.5rem; max-width: 700px; }
.hero .lead { color: rgba(255,255,255,0.85); max-width: 620px; margin-bottom: 2rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
  color: rgba(255,255,255,0.9);
}

/* ===== CARDS ===== */
.card {
  background: var(--color-surface);
  border: 1px solid rgba(43, 94, 160, 0.08);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue-light));
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(43, 94, 160, 0.12);
}
.card:hover::before { opacity: 1; }

.card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-blue-ghost), var(--brand-blue-pale));
  color: var(--brand-blue);
  margin-bottom: 1.5rem;
}
.card__icon svg { width: 26px; height: 26px; }

.card h3 { margin-bottom: 0.75rem; color: var(--brand-navy); }
.card p { color: var(--color-text-light); font-size: 0.9375rem; }

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--brand-blue);
}
.card__link svg { width: 16px; height: 16px; transition: transform var(--transition); }
.card__link:hover svg { transform: translateX(4px); }

/* ===== STATS ===== */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2.5rem; }

.stat {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(43, 94, 160, 0.05);
  transition: all var(--transition);
}
.stat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.stat__number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--brand-blue);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.stat__label { font-size: 0.875rem; color: var(--color-text-light); line-height: 1.5; }

/* ===== SERVICE LIST (bullet dots) ===== */
.service-list { list-style: none; padding: 0; }
.service-list li {
  position: relative;
  padding: 0.6rem 0 0.6rem 2rem;
  color: var(--color-text);
  font-size: 0.9375rem;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-light));
  box-shadow: 0 2px 6px rgba(43, 94, 160, 0.3);
}

/* ===== FAQ ===== */
.faq { max-width: 800px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--color-border); }
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.4rem 0;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-navy);
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}
.faq__question:hover { color: var(--brand-blue); }
.faq__question svg {
  width: 20px; height: 20px;
  color: var(--brand-blue);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq__item.active .faq__question svg { transform: rotate(180deg); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 300ms ease; }
.faq__answer p { padding-bottom: 1.25rem; color: var(--color-text-light); font-size: 0.9375rem; }
.faq__item.active .faq__answer { max-height: 200px; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 50%, var(--brand-blue-deeper) 100%);
  color: var(--brand-white);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section h2 { color: var(--brand-white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 2.5rem; }

/* ===== CERTIFICATIONS ===== */
.cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }

.cert-card {
  background: var(--color-surface);
  border: 1px solid rgba(43, 94, 160, 0.08);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.cert-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-accent));
  opacity: 0;
  transition: opacity var(--transition);
}
.cert-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.cert-card:hover::after { opacity: 1; }

.cert-card__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.75rem;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--brand-blue-ghost), var(--brand-blue-pale));
  color: var(--brand-blue);
}
.cert-card__badge svg { width: 36px; height: 36px; }

.cert-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  margin: 0 auto 1.75rem;
  padding: 0 1rem;
}
.cert-card__logo img {
  max-height: 110px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

/* ===== CONTACT FORM ===== */
.form { display: grid; gap: 1.25rem; }
.form__group { display: flex; flex-direction: column; gap: 0.4rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 640px) { .form__row { grid-template-columns: 1fr; } }

.form__label {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--brand-navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form__input, .form__select, .form__textarea {
  padding: 0.85rem 1.15rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--color-surface);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form__input:focus, .form__select:focus, .form__textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(43, 94, 160, 0.1);
}
.form__textarea { min-height: 130px; resize: vertical; }

.form__status {
  display: none;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-lg);
  font-size: 0.9375rem;
  font-weight: 500;
}
.form__status:not(:empty) { display: block; }
.form__status--success {
  background: #ecfdf5;
  color: #065f46;
  border: 1.5px solid #6ee7b7;
}
.form__status--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1.5px solid #fca5a5;
}

.btn__spinner {
  display: inline-block;
  width: 1em;
  height: 1em;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-left: 0.4em;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 0.75rem 0;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--brand-white); }
.breadcrumb span { margin: 0 0.5rem; }

/* ===== MAP ===== */
.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid rgba(43, 94, 160, 0.08);
  height: 450px;
  box-shadow: var(--shadow-md);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.map-embed {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(43, 94, 160, 0.08);
}

/* ===== PLACEHOLDER IMAGES ===== */
.section-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.section-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: inherit;
}

.placeholder-img {
  background: linear-gradient(135deg, var(--brand-blue-ghost) 0%, var(--brand-blue-pale) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}
.placeholder-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30h60M30 0v60' stroke='%232B5EA0' stroke-width='0.3' opacity='0.1'/%3E%3C/svg%3E");
  opacity: 0.5;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--brand-navy);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 2rem;
  position: relative;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
@media (max-width: 768px) { .footer__grid { grid-template-columns: 1fr; gap: 2rem; } }

.footer__brand { max-width: 300px; }
.footer__logo { height: 80px; width: auto; margin-bottom: 1.25rem; }

.footer h4 {
  color: var(--brand-white);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
}

.footer__links { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer__links a:hover { color: var(--brand-white); transform: translateX(3px); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
}
.footer__contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; opacity: 0.5; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}
@media (max-width: 640px) {
  .footer__bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}

.footer__social { display: flex; gap: 1rem; }
.footer__social a { color: rgba(255,255,255,0.4); transition: all var(--transition); }
.footer__social a:hover { color: var(--brand-white); transform: translateY(-2px); }
.footer__social svg { width: 22px; height: 22px; }

/* ===== ABOUT PAGE: image with angled clip ===== */
.angled-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
.angled-img::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(43, 94, 160, 0.05));
}

/* ===== VALUES CARDS (brand accent bottom bar) ===== */
.value-card {
  background: var(--color-surface);
  border: 1px solid rgba(43, 94, 160, 0.06);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.value-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--brand-blue);
  transition: all var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-card:hover::after { left: 0; right: 0; }

.value-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand-blue-ghost), var(--brand-blue-pale));
  color: var(--brand-blue);
  margin: 0 auto 1.5rem;
}
.value-card__icon svg { width: 28px; height: 28px; }

/* ===== UTILITIES ===== */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
