/* ═══════════════════════════════════════════════════════════════════════
   CARIBBEAN VOICE — styles.css
   Pure CSS: no framework, no preprocessor
═══════════════════════════════════════════════════════════════════════ */

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

:root {
  --orange:      #D4500A;
  --amber:       #F5A623;
  --bg:          #0F0F0F;
  --bg-dark:     #0A0A0A;
  --bg-card:     #141414;
  --bg-card2:    #1A1A1A;
  --border:      rgba(255,255,255,0.07);
  --text:        #F5F5F5;
  --text-muted:  rgba(255,255,255,0.55);
  --text-dim:    rgba(255,255,255,0.35);
  --font-head:   'Libre Baskerville', Georgia, serif;
  --font-body:   'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:      8px;
  --transition:  0.2s ease-out;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-dark);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1024px) { .container { padding: 0 40px; } }

/* ── Typography helpers ───────────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(90deg, var(--orange), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Scroll fade-in ───────────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  transition-delay: var(--delay, 0ms);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Wave Divider ─────────────────────────────────────────────────────── */
.wave-divider {
  width: 100%;
  height: 40px;
  overflow: hidden;
  line-height: 0;
  background: var(--bg);
}
.wave-divider svg { width: 100%; height: 100%; }
.wave-flip { transform: scaleY(-1); }

/* ═══════════════════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
@media (min-width: 768px) { .header-inner { height: 96px; } }

.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 48px; width: auto; object-fit: contain; }
@media (min-width: 768px) { .logo-img { height: 56px; } }

/* Desktop nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 32px;
}
@media (min-width: 768px) { .desktop-nav { display: flex; } }

.desktop-nav a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color var(--transition);
}
.desktop-nav a:hover { color: var(--amber); }

.btn-nav {
  margin-left: 8px;
  padding: 10px 20px;
  background: var(--orange);
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background var(--transition);
}
.btn-nav:hover { background: var(--amber) !important; color: #fff !important; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
@media (min-width: 768px) { .hamburger { display: none; } }

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(10,10,10,0.98);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
}
.mobile-nav.open { display: flex; }

.mobile-link {
  padding: 14px 0;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-link:hover { color: var(--amber); }
.mobile-cta {
  margin-top: 16px;
  text-align: center;
  border-bottom: none;
  padding: 14px 20px;
  border-radius: var(--radius);
}

/* ═══════════════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.6) 50%, rgba(10,10,10,1) 100%);
}
.hero-glow {
  position: absolute;
  top: 30%; left: 20%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(212,80,10,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 80px;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(212,80,10,0.4);
  border-radius: 999px;
  margin-bottom: 28px;
  font-size: 11px;
  font-weight: 700;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 40px;
}

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

.btn-primary {
  display: inline-block;
  padding: 16px 32px;
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background var(--transition);
}
.btn-primary:hover { background: var(--amber); }

.btn-outline {
  display: inline-block;
  padding: 16px 32px;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: border-color var(--transition), color var(--transition);
}
.btn-outline:hover { border-color: var(--amber); color: var(--amber); }

/* Stat bar */
.stat-bar {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(8px);
}
.stat-bar-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: 24px 0;
}
@media (min-width: 640px) { .stat-bar-inner { grid-template-columns: repeat(4, 1fr); } }

.stat-item {
  text-align: center;
  padding: 12px 16px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
@media (min-width: 768px) { .stat-num { font-size: 2rem; } }

.stat-label {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
  animation: bounce 2s infinite;
}
.scroll-cue:hover { color: var(--amber); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ═══════════════════════════════════════════════════════════════════════
   SECTIONS — shared
═══════════════════════════════════════════════════════════════════════ */
.section { padding: 96px 0; }

.section-header { margin-bottom: 56px; }

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.title-bar {
  width: 56px; height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════════════════════ */
.services-section { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.service-card:hover {
  border-color: rgba(212,80,10,0.4);
  background: var(--bg-card2);
}

.card-top-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  opacity: 0.55;
  transition: opacity 0.3s ease;
}
.service-card:hover .card-top-bar { opacity: 1; }

.card-icon {
  width: 40px; height: 40px;
  background: rgba(212,80,10,0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--orange);
  transition: background 0.3s ease;
}
.service-card:hover .card-icon { background: rgba(212,80,10,0.2); }

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════
   NETWORK
═══════════════════════════════════════════════════════════════════════ */
.network-section { background: var(--bg-dark); }

.network-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}
@media (min-width: 1024px) { .network-grid { grid-template-columns: 1fr 1fr; } }

/* Network stats */
.network-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.net-stat {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 20px;
}

.net-stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.net-stat-unit {
  font-size: 1rem;
  color: var(--orange);
  font-family: var(--font-body);
  font-weight: 600;
  margin-left: 4px;
}

.net-stat-label {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

/* Coverage */
.coverage-block { border-left: 2px solid var(--orange); padding-left: 20px; }

.coverage-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.coverage-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--bg-card2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}

/* Network image */
.network-right { position: relative; }

.network-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.network-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.network-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 60%),
              linear-gradient(to right, rgba(212,80,10,0.08) 0%, transparent 60%);
}

.asn-badge {
  position: absolute;
  top: 16px; right: 16px;
  padding: 6px 14px;
  background: rgba(10,10,10,0.85);
  border: 1px solid rgba(212,80,10,0.4);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.network-glow {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(212,80,10,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════════════
   WHO WE SERVE
═══════════════════════════════════════════════════════════════════════ */
.serve-section { background: var(--bg); }

.serve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
@media (min-width: 640px) { .serve-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .serve-grid { grid-template-columns: repeat(5, 1fr); } }

.serve-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.serve-card:hover {
  border-color: rgba(212,80,10,0.4);
  background: var(--bg-card2);
}

.serve-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  margin: 0 auto 16px;
  transition: background 0.3s ease;
}
.serve-card:hover .serve-dot { background: var(--amber); }

.serve-card h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.3;
}

.serve-card p {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* SLA strip */
.sla-strip {
  background: linear-gradient(135deg, rgba(212,80,10,0.08) 0%, rgba(245,166,35,0.04) 50%, rgba(212,80,10,0.08) 100%);
  border: 1px solid rgba(212,80,10,0.2);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}

.sla-strip p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  max-width: 720px;
  margin: 0 auto;
}

.sla-strip strong { color: var(--amber); font-weight: 700; }

.sla-strip a {
  color: var(--orange);
  transition: color var(--transition);
}
.sla-strip a:hover { color: var(--amber); }

/* ═══════════════════════════════════════════════════════════════════════
   AERIAL BANNER
═══════════════════════════════════════════════════════════════════════ */
.aerial-banner {
  position: relative;
  height: 220px;
  overflow: hidden;
}
@media (min-width: 768px) { .aerial-banner { height: 280px; } }

.aerial-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.aerial-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--bg) 0%, rgba(10,10,10,0.5) 50%, var(--bg-dark) 100%);
}

.aerial-text {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 0 24px;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════════════════ */
.contact-section { background: var(--bg-dark); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-intro {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact-items { display: flex; flex-direction: column; gap: 28px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 40px; height: 40px;
  background: rgba(212,80,10,0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}

.contact-item-val {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
  transition: color var(--transition);
}
a.contact-item-val:hover { color: var(--amber); }

/* Form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 12px 16px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }

.form-group select { cursor: pointer; }
.form-group select option { background: #1a1a1a; color: #fff; }

.form-group textarea { resize: vertical; min-height: 100px; }

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background var(--transition);
}
.btn-submit:hover { background: var(--amber); }

/* Form success */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 32px;
  height: 100%;
}

.success-icon {
  width: 56px; height: 56px;
  background: rgba(212,80,10,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: 20px;
}

.form-success h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.form-success p { color: var(--text-muted); font-size: 0.9rem; }

/* ═══════════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════════ */
.site-footer {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 16px;
  padding-bottom: 0;
}

.footer-wave { width: 100%; height: 40px; line-height: 0; margin-bottom: 40px; }
.footer-wave svg { width: 100%; height: 100%; }

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
@media (min-width: 768px) { .footer-inner { grid-template-columns: 2fr 1fr 1.5fr; gap: 48px; } }

.footer-brand {}
.footer-logo { height: 48px; width: auto; object-fit: contain; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 280px; }

.footer-nav h4,
.footer-contact h4 {
  font-size: 10px;
  font-weight: 700;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--amber); }

.footer-contact ul { display: flex; flex-direction: column; gap: 14px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-contact li svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-contact li div { display: flex; flex-direction: column; gap: 3px; }
.footer-contact a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--amber); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.2); }
