/* ============================================================
   IONIS s.r.o. — Main Stylesheet
   Design: clean, minimal, premium tech (Motional.com inspired)
   ============================================================ */

/* ── Custom Properties ────────────────────────────────────── */
:root {
  --color-bg:          #ffffff;
  --color-dark:        #080c14;
  --color-blue:        #0057C8;
  --color-blue-light:  #1a6fd4;
  --color-gray-bg:     #f5f6f8;
  --color-text:        #0d0f14;
  --color-muted:       #6b7280;
  --color-border:      #e5e7eb;
  --color-green:       #10b981;

  --font-family:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --nav-height:        72px;
  --container-max:     1200px;
  --container-pad:     clamp(20px, 5vw, 60px);

  --radius-card:       20px;
  --radius-sm:         12px;

  --shadow-card:       0 2px 16px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 8px 40px rgba(0, 0, 0, 0.14);

  --transition:        all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 17px;
  -webkit-text-size-adjust: 100%;
}

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

body.menu-open {
  overflow: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

ul {
  list-style: none;
}

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

/* ── Accessibility ────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Layout Utilities ─────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.section {
  padding: clamp(72px, 9vw, 120px) 0;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

h1 {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.05;
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
}

h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
}

h4 {
  font-size: 15px;
  font-weight: 600;
}

p {
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.75;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 16px;
}

.section-label--light {
  color: rgba(255, 255, 255, 0.5);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.section-header h2 {
  margin-top: 8px;
}

.text-blue {
  color: var(--color-blue);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--color-blue);
  color: #ffffff;
  border-color: var(--color-blue);
}

.btn-primary:hover {
  background-color: var(--color-blue-light);
  border-color: var(--color-blue-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0, 87, 200, 0.35);
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-1px);
}

.btn-white {
  background-color: #ffffff;
  color: var(--color-blue);
  border-color: #ffffff;
}

.btn-white:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

/* ── Fade-In Animations ───────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--delay, 0s);
}

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

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--color-border);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-logo img {
  height: 38px;
  max-width: 130px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-logo img {
  height: 32px;
  max-width: 120px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--color-blue);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  border-radius: 1px;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link:hover::after {
  transform: scaleX(0.6);
}

.navbar.scrolled .nav-link {
  color: var(--color-muted);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--color-text);
}

.nav-cta {
  margin-left: 12px;
  padding: 10px 20px;
  font-size: 14px;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  border-radius: 6px;
  transition: var(--transition);
  z-index: 1100;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.navbar.scrolled .nav-hamburger span {
  background: var(--color-text);
}

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

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

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

/* Nav Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 20, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.visible {
  opacity: 1;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: var(--nav-height) var(--container-pad) 80px;
}

@keyframes heroBg {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(0, 87, 200, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 60%, rgba(26, 111, 212, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 50% 20%, rgba(0, 57, 130, 0.14) 0%, transparent 50%);
  background-size: 200% 200%;
  animation: heroBg 12s ease infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 100%, rgba(8, 12, 20, 0.8) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  animation: heroEntrance 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 24px;
  padding: 6px 16px;
  border: 1px solid rgba(0, 87, 200, 0.35);
  border-radius: 100px;
  background: rgba(0, 87, 200, 0.08);
}

.hero h1 {
  color: #ffffff;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(255, 255, 255, 0.6);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Chevron */
.hero-chevron {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  animation: chevronBounce 2s ease-in-out infinite;
  transition: opacity 0.2s ease;
}

.hero-chevron:hover {
  opacity: 0.7;
}

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

/* ── STATS ────────────────────────────────────────────────── */
.stats {
  background: var(--color-bg);
  padding: clamp(48px, 6vw, 80px) 0;
  border-bottom: 1px solid var(--color-border);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 32px 24px;
}

.stat-number {
  display: block;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-blue);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 1px;
  height: 72px;
  background: var(--color-border);
  flex-shrink: 0;
}

/* ── TECHNOLOGY ───────────────────────────────────────────── */
.technology {
  background: var(--color-gray-bg);
}

.cards-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card {
  background: var(--color-bg);
  border-radius: var(--radius-card);
  padding: 36px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 1px solid transparent;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(0, 87, 200, 0.1);
}

.card-icon {
  margin-bottom: 24px;
  width: 40px;
  height: 40px;
}

.card h3 {
  margin-bottom: 14px;
  color: var(--color-text);
  font-size: 18px;
  line-height: 1.3;
}

.card p {
  font-size: 15px;
  color: var(--color-muted);
  margin-bottom: 20px;
}

.card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-blue);
  transition: gap 0.2s ease, color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.card-link:hover {
  color: var(--color-blue-light);
  gap: 8px;
}

/* ── AIMEC ────────────────────────────────────────────────── */
.aimec {
  background: var(--color-dark);
}

.aimec .section-label {
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.14em;
}

.aimec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.aimec-left h2 {
  color: #ffffff;
  margin-bottom: 24px;
  margin-top: 8px;
}

.aimec-left p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
  font-size: 16px;
}

.aimec-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  padding: 10px 16px;
  border: 1px solid rgba(0, 87, 200, 0.3);
  border-radius: 8px;
  background: rgba(0, 87, 200, 0.06);
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 0;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  padding-bottom: 28px;
}

.timeline-item--last {
  padding-bottom: 0;
}

.timeline-line {
  position: absolute;
  left: 15px;
  top: 28px;
  bottom: -4px;
  width: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.timeline-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(0, 87, 200, 0.5);
  background: rgba(0, 87, 200, 0.12);
  flex-shrink: 0;
  margin-right: 20px;
  position: relative;
  z-index: 1;
}

.timeline-dot::after {
  content: '';
  position: absolute;
  inset: 6px;
  background: var(--color-blue);
  border-radius: 50%;
}

.timeline-content {
  flex: 1;
  padding-top: 4px;
}

.timeline-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.wp-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-blue);
  background: rgba(0, 87, 200, 0.12);
  border: 1px solid rgba(0, 87, 200, 0.25);
  padding: 2px 8px;
  border-radius: 4px;
}

.type-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 4px;
}

.type-rnd {
  color: var(--color-blue);
  background: rgba(0, 87, 200, 0.1);
  border: 1px solid rgba(0, 87, 200, 0.2);
}

.type-fid {
  color: var(--color-green);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.timeline-content h4 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.timeline-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

/* ── PARTNERS ─────────────────────────────────────────────── */
.partners {
  background: var(--color-bg);
}

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

.partner-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.partner-card:hover {
  border-color: var(--color-blue);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.partner-logo-area {
  display: flex;
  align-items: center;
}

.partner-info h3 {
  font-size: 17px;
  color: var(--color-text);
  margin-bottom: 4px;
}

.partner-sub {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
  display: block;
  margin-bottom: 12px;
}

.partner-info p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.65;
}

/* ── ABOUT ────────────────────────────────────────────────── */
.about {
  background: var(--color-gray-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-left .section-label {
  margin-bottom: 24px;
}

blockquote {
  border-left: 3px solid var(--color-blue);
  padding-left: 28px;
}

blockquote p {
  font-size: clamp(17px, 2vw, 21px);
  font-style: italic;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.65;
}

.about-dl {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-bg);
}

.about-row {
  display: flex;
  border-bottom: 1px solid var(--color-border);
}

.about-row:last-child {
  border-bottom: none;
}

.about-row dt,
.about-row dd {
  padding: 14px 20px;
  font-size: 14px;
}

.about-row dt {
  font-weight: 600;
  color: var(--color-text);
  min-width: 150px;
  flex-shrink: 0;
  background: var(--color-gray-bg);
  border-right: 1px solid var(--color-border);
}

.about-row dd {
  color: var(--color-muted);
  font-weight: 400;
}

/* ── CTA ──────────────────────────────────────────────────── */
.cta-section {
  background: var(--color-blue);
  padding: clamp(72px, 9vw, 100px) 0;
  text-align: center;
}

.cta-content h2 {
  color: #ffffff;
  font-size: clamp(26px, 3.5vw, 44px);
  max-width: 680px;
  margin: 0 auto 20px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--color-dark);
  padding-top: clamp(48px, 6vw, 80px);
}

.footer-top {
  display: flex;
  gap: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(40px, 5vw, 60px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  flex-shrink: 0;
  min-width: 200px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer-social:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.footer-links {
  display: flex;
  gap: clamp(24px, 4vw, 56px);
  flex: 1;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

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

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
}

/* ── RESPONSIVE: 1024px ───────────────────────────────────── */
@media (max-width: 1024px) {
  .cards-2x2 {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .aimec-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .aimec-left h2 {
    font-size: clamp(28px, 4vw, 44px);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }
}

/* ── RESPONSIVE: 768px ────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --container-pad: 20px;
  }

  /* Navbar mobile */
  .nav-hamburger {
    display: flex;
  }

  .nav-overlay {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--color-dark);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 32px 40px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1050;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-link {
    width: 100%;
    font-size: 16px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.75);
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover,
  .nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 16px;
    width: 100%;
    justify-content: center;
  }

  /* Scrolled navbar keeps white hamburger lines dark */
  .navbar.scrolled .nav-hamburger.open span {
    background: #ffffff;
  }

  /* Hero */
  .hero {
    padding-bottom: 100px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  /* Stats */
  .stats-grid {
    flex-direction: column;
    gap: 0;
  }

  .stat-divider {
    width: 80%;
    height: 1px;
  }

  /* Technology */
  .cards-2x2 {
    grid-template-columns: 1fr;
  }

  /* Partners */
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Footer */
  .footer-links {
    gap: 28px;
  }

  .footer-col {
    min-width: calc(50% - 14px);
  }
}

@media (max-width: 480px) {
  .footer-col {
    min-width: 100%;
  }

  blockquote p {
    font-size: 16px;
  }
}
