/* ============================================
   ODYSSEY — VENTURE STUDIO
   ============================================ */

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

:root {
  --bg: #080B16;
  --bg-alt: #0C1022;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(139, 92, 246, 0.45);
  --text: #F1F5F9;
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  --accent: #8B5CF6;
  --accent-light: #A78BFA;
  --cyan: #22D3EE;
  --gradient: linear-gradient(135deg, #8B5CF6 0%, #22D3EE 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(139,92,246,0.15) 0%, rgba(34,211,238,0.15) 100%);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-accent: 0 0 40px rgba(139, 92, 246, 0.2);
  --transition: 0.25s ease;
  --nav-height: 72px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- UTILS ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

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

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}

.btn--primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 24px rgba(139, 92, 246, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(139, 92, 246, 0.5);
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--text);
  background: rgba(139, 92, 246, 0.05);
}

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

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all 0.35s ease;
}

.nav.scrolled {
  background: rgba(8, 11, 22, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}

.nav__container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-size: 22px;
  font-weight: 900;
  text-decoration: none;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}

.nav__links a:hover {
  color: var(--text);
}

.nav__cta-link {
  color: var(--accent-light) !important;
  font-weight: 600 !important;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(8, 11, 22, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__link {
  font-size: 28px;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
  transition: color var(--transition);
}

.mobile-menu__link:hover {
  color: var(--accent-light);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--nav-height) + 60px) 0 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.hero__blob--1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(139,92,246,0.18) 0%, transparent 70%);
  top: -250px;
  right: -150px;
}

.hero__blob--2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(34,211,238,0.12) 0%, transparent 70%);
  bottom: -250px;
  left: -100px;
}

.hero__blob--3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, transparent 70%);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 90%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__inner {
  max-width: 780px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
  flex-shrink: 0;
}

.hero__title {
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.hero__stat {
  padding: 0 40px 0 0;
}

.hero__stat:first-child {
  padding-left: 0;
}

.hero__stat-num {
  display: block;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 3px;
}

.hero__stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  margin: 0 40px 0 0;
  flex-shrink: 0;
}

/* ---- ABOUT ---- */
.about {
  padding: 110px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about__content .section-title {
  margin-bottom: 24px;
}

.about__content p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 18px;
}

.about__content p:last-child {
  margin-bottom: 0;
}

.about__content strong {
  color: var(--text);
  font-weight: 600;
}

.about__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: all var(--transition);
  cursor: default;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-accent);
}

.feature-card__icon {
  font-size: 28px;
  margin-bottom: 14px;
  line-height: 1;
}

.feature-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.feature-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---- VERTICALS ---- */
.verticals {
  padding: 110px 0;
  background: var(--bg);
}

.verticals__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.vertical-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.vertical-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-subtle);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: inherit;
  pointer-events: none;
}

.vertical-card:hover {
  border-color: rgba(139, 92, 246, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), var(--shadow-accent);
}

.vertical-card:hover::after {
  opacity: 1;
}

.vertical-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.vertical-card__icon {
  font-size: 40px;
  line-height: 1;
}

.vertical-card__num {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 100px;
}

.vertical-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.vertical-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.vertical-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.vertical-card__tags span {
  padding: 5px 13px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.02em;
  transition: all var(--transition);
}

.vertical-card:hover .vertical-card__tags span {
  border-color: rgba(139, 92, 246, 0.3);
  color: var(--text-muted);
}

/* ---- PROCESS ---- */
.process {
  padding: 110px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--cyan) 100%);
  opacity: 0.3;
}

.process__step {
  padding: 0 24px;
  position: relative;
}

.process__step:first-child {
  padding-left: 0;
}

.process__step:last-child {
  padding-right: 0;
}

.process__num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.process__num::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  z-index: -1;
}

.process__step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.process__step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ---- CONTACT ---- */
.contact {
  padding: 110px 0;
  background: var(--bg);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact__content .section-title {
  margin-bottom: 20px;
}

.contact__content p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  transition: color var(--transition);
}

.contact__link svg {
  opacity: 0.6;
  flex-shrink: 0;
}

.contact__link:hover {
  color: var(--accent-light);
}

.contact__link:hover svg {
  opacity: 1;
}

.contact__form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group:last-of-type {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: all var(--transition);
  outline: none;
  resize: none;
  line-height: 1.5;
}

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

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(139, 92, 246, 0.05);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.form-note {
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-dim);
}

/* ---- FOOTER ---- */
.footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
  background: var(--bg-alt);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
  gap: 48px;
}

.footer__brand .nav__logo {
  display: inline-block;
  margin-bottom: 12px;
}

.footer__brand p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}

.footer__nav {
  display: flex;
  gap: 64px;
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.footer__nav-col a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  transition: color var(--transition);
}

.footer__nav-col a:hover {
  color: var(--text);
}

.footer__copy {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.footer__bottom {
  border-top: 1px solid var(--border);
}

.footer__address {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ---- COOKIE BANNER ---- */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 300;
  width: calc(100% - 48px);
  max-width: 780px;
  background: rgba(15, 18, 32, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.5);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookie-banner.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(16px);
  pointer-events: none;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 200px;
}

.cookie-banner__text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.cookie-banner__text a {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__text a:hover {
  color: var(--text);
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 9px 20px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
}

.cookie-btn--decline {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border);
}

.cookie-btn--decline:hover {
  border-color: rgba(255,255,255,0.2);
  color: var(--text-muted);
}

.cookie-btn--accept {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 2px 16px rgba(139, 92, 246, 0.3);
}

.cookie-btn--accept:hover {
  box-shadow: 0 4px 24px rgba(139, 92, 246, 0.45);
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .cookie-banner {
    bottom: 16px;
    width: calc(100% - 32px);
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}

/* ---- SCROLL ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.about__cards .fade-up:nth-child(1) { transition-delay: 0.05s; }
.about__cards .fade-up:nth-child(2) { transition-delay: 0.1s; }
.about__cards .fade-up:nth-child(3) { transition-delay: 0.15s; }
.about__cards .fade-up:nth-child(4) { transition-delay: 0.2s; }

.verticals__grid .fade-up:nth-child(1) { transition-delay: 0s; }
.verticals__grid .fade-up:nth-child(2) { transition-delay: 0.1s; }
.verticals__grid .fade-up:nth-child(3) { transition-delay: 0.15s; }
.verticals__grid .fade-up:nth-child(4) { transition-delay: 0.2s; }

.process__steps .fade-up:nth-child(1) { transition-delay: 0s; }
.process__steps .fade-up:nth-child(2) { transition-delay: 0.1s; }
.process__steps .fade-up:nth-child(3) { transition-delay: 0.2s; }
.process__steps .fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .about__grid {
    gap: 56px;
  }

  .process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .process__steps::before {
    display: none;
  }
}

@media (max-width: 900px) {
  .nav__links {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .about__grid,
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__content .section-title {
    font-size: 32px;
  }

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

  .hero__stats {
    gap: 0;
  }

  .hero__stat {
    padding: 16px 24px 16px 0;
  }

  .hero__stat-divider {
    margin: 0 24px 0 0;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    padding: calc(var(--nav-height) + 40px) 0 60px;
  }

  .hero__title {
    font-size: 40px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 48px;
  }

  .hero__stats {
    flex-direction: column;
    gap: 0;
  }

  .hero__stat {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .hero__stat:last-child {
    border-bottom: none;
  }

  .hero__stat-divider {
    display: none;
  }

  .about,
  .verticals,
  .process,
  .contact {
    padding: 72px 0;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact__form {
    padding: 28px 24px;
  }

  .vertical-card {
    padding: 28px;
  }

  .process__steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process__step {
    padding: 0;
  }

  .footer__inner {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 32px;
  }

  .footer__nav {
    gap: 40px;
    flex-wrap: wrap;
  }

  .footer__copy {
    text-align: center;
  }
}
