:root {
  --navy: #0B2545;
  --navy-light: #14315C;
  --gold: #F6A700;
  --gold-dark: #D48A00;
  --bg: #F6F7F5;
  --text: #0B2545;
  --muted: #5B6B84;
  --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; border-radius: 0 !important; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, .brand {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Signature: container-door stripe */
.container-bar {
  height: 14px;
  background: repeating-linear-gradient(
    90deg,
    var(--navy) 0px,
    var(--navy) 18px,
    var(--navy-light) 18px,
    var(--navy-light) 20px
  );
  position: relative;
}
.container-id {
  position: absolute;
  right: 24px;
  top: -2px;
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gold);
  background: var(--navy);
  padding: 4px 8px;
}

/* Header */
.site-header {
  background: var(--navy);
  padding: 22px 0;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-weight: 600;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.brand-logo {
  height: 32px;
  width: auto;
  display: block;
}
.brand-d {
  color: var(--white);
  line-height: 1;
}
.brand-c {
  color: var(--gold);
  margin-left: 2px;
  line-height: 1;
}

.header-cta {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--gold);
  padding: 9px 18px;
  transition: background 0.15s ease, color 0.15s ease;
}
.header-cta:hover {
  background: var(--gold);
  color: var(--navy);
}

/* Hero */
.hero {
  padding: 96px 0 72px;
}
.eyebrow {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(34px, 5.4vw, 58px);
  line-height: 1.08;
  color: var(--navy);
  max-width: 800px;
  margin-bottom: 22px;
}
.lead {
  color: var(--muted);
  font-size: 17px;
  max-width: 560px;
  margin-bottom: 36px;
}

.cta-row {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  padding: 14px 26px;
  transition: transform 0.12s ease, background 0.15s ease, color 0.15s ease;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.phones {
  list-style: none;
  display: flex;
  gap: 24px;
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
}
.phones a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}
.phones a:hover { color: var(--gold-dark); }

/* Scrolling strip */
.strip {
  background: var(--navy);
  overflow: hidden;
  padding: 14px 0;
}
.strip-track {
  display: flex;
  gap: 18px;
  white-space: nowrap;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--gold);
  animation: scroll-strip 26s linear infinite;
  width: max-content;
}
.strip-track span:nth-child(odd) { color: var(--white); }
@keyframes scroll-strip {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .strip-track { animation: none; }
}

/* Info grid */
.info { padding: 72px 0; }
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #DDE1E6;
  border: 1px solid #DDE1E6;
}
.info-card {
  background: var(--white);
  padding: 32px 28px;
}
.info-label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 14px;
}
.info-card h2 {
  font-size: 19px;
  color: var(--navy);
  margin-bottom: 10px;
}
.info-card p {
  color: var(--muted);
  font-size: 14.5px;
}

/* Footer */
.site-footer {
  background: var(--navy);
  padding: 40px 0;
}
.footer-grid { text-align: center; }
.brand-footer { justify-content: center; display: flex; margin-bottom: 10px; }
.footer-note {
  color: var(--gold);
  font-size: 14px;
  font-style: italic;
  margin-bottom: 14px;
}
.footer-copy {
  color: #7C8AA3;
  font-size: 12.5px;
}

/* Floating WhatsApp button */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--gold);
  color: var(--navy);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(11, 37, 69, 0.28);
  transition: transform 0.15s ease, background 0.15s ease;
  z-index: 50;
}
.wa-float:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 760px) {
  .info-grid { grid-template-columns: 1fr; }
  .site-header .wrap { flex-direction: column; gap: 14px; }
  .phones { flex-direction: column; gap: 10px; }
}

/* Keyboard focus visibility */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 3px;
}
