/* DynaSim Engineering - Stylesheet */

/* ===== Font Faces ===== */
@font-face {
  font-family: 'Flexo';
  src: url('fonts/flexo-thin.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Flexo';
  src: url('fonts/flexo-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Flexo';
  src: url('fonts/flexo-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('fonts/lato-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('fonts/lato-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('fonts/lato-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('fonts/lato-900.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ===== CSS Variables ===== */
:root {
  --primary: #43A0B4;
  --secondary: #1A3761;
  --accent: #FC4F1E;
  --foreground: #1A3761;
  --background: #F8F8F8;
  --card: #FFFFFF;
  --muted-foreground: #5a6670;
  --border: #e5e5e5;
  --grey: #909AA0;
  --radius: 0.5rem;

  --font-sans: 'Lato', system-ui, sans-serif;
  --font-heading: 'Flexo', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
  height: auto;
}

/* ===== Utilities ===== */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-foreground { color: var(--foreground); }
.font-medium { font-weight: 500; }
.hidden { display: none; }

/* ===== Animations ===== */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.bounce {
  animation: bounce 1.5s infinite;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  background: transparent;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(26, 55, 97, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(67, 160, 180, 0.2);
}

.header-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 3.5rem;
  width: auto;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: white;
}

.lang-toggle {
  padding: 0.25rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  border-radius: 0.5rem;
  transition: background 0.3s ease;
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-nav {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--secondary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  padding: 1rem 1.5rem;
  transform: translateY(-1rem);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-link {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  .mobile-menu-btn {
    display: none;
  }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--secondary);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    60% 60% at 50% 40%,
    transparent 30%,
    rgba(26, 55, 97, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  padding: 10rem 1.5rem 6rem;
  width: 100%;
}

.hero-inner {
  max-width: 48rem;
  text-align: center;
  margin: 0 auto;
}


.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(67, 160, 180, 0.3);
  background: rgba(67, 160, 180, 0.1);
  backdrop-filter: blur(4px);
  margin-bottom: 2rem;
}

.badge-icon {
  color: var(--accent);
}

.hero-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}

.hero-tags {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-tags {
    justify-content: flex-start;
  }
}

.hero-tag-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: white;
}

.hero-word-wrapper {
  position: relative;
  display: inline-block;
}

.hero-rotating-word {
  display: inline-block;
  white-space: nowrap;
  color: var(--primary);
  transition: all 0.3s ease;
}

.hero-rotating-word.animating {
  transform: translateY(1rem);
  opacity: 0;
}

.hero-word-underline {
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background: rgba(252, 79, 30, 0.6);
  border-radius: 9999px;
}

.hero-description {
  margin-top: 3rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-accent {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 20px rgba(252, 79, 30, 0.25);
}

.btn-accent:hover {
  background: #e5461a;
  box-shadow: 0 8px 30px rgba(252, 79, 30, 0.3);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(67, 160, 180, 0.1);
  color: var(--primary);
}

.btn-lg {
  padding: 1rem 2rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
}

.trust-divider {
  width: 1px;
  height: 1rem;
  background: rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 1);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

.scroll-indicator:hover {
  color: var(--primary);
}

.scroll-indicator:hover svg {
  color: var(--accent);
}

@media (min-width: 640px) {
  .hero-inner {
    text-align: left;
    margin: 0;
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-description {
    font-size: 1.25rem;
    margin-left: 0;
    margin-right: 0;
  }
  .hero-buttons {
    justify-content: flex-start;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

/* ===== Expertise Section ===== */
.expertise {
  padding: 5rem 0;
  background-color: var(--background);
  background-image: 
    linear-gradient(rgba(67, 160, 180, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(67, 160, 180, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(67, 160, 180, 0.3);
  background: rgba(67, 160, 180, 0.05);
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.section-title-lg {
  font-size: 2.5rem;
}

.section-divider {
  width: 4rem;
  height: 0.125rem;
  margin: 1rem auto;
  background: var(--accent);
  border-radius: 9999px;
}

.section-divider-left {
  margin-left: auto;
}

.section-description {
  max-width: 42rem;
  margin: 1.5rem auto 0;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.expertise-grid {
  display: grid;
  gap: 1.5rem;
}

.expertise-card {
  position: relative;
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
  overflow: hidden;
}

.expertise-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(67, 160, 180, 0.3);
}

.card-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 4rem;
  height: 4rem;
  overflow: hidden;
}

.card-accent::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 6rem;
  height: 6rem;
  transform: translate(3rem, -3rem) rotate(45deg);
  background: linear-gradient(135deg, rgba(67, 160, 180, 0.2), rgba(252, 79, 30, 0.2));
  transition: all 0.3s ease;
}

.expertise-card:hover .card-accent::before {
  background: linear-gradient(135deg, rgba(67, 160, 180, 0.3), rgba(252, 79, 30, 0.3));
}

.card-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(67, 160, 180, 0.1), rgba(252, 79, 30, 0.1));
  color: var(--primary);
  box-shadow: 0 0 0 1px rgba(67, 160, 180, 0.2);
  transition: all 0.3s ease;
}

.expertise-card:hover .card-icon {
  transform: scale(1.1);
  box-shadow: 0 0 0 2px rgba(67, 160, 180, 0.4);
}

.card-tagline {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.card-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.card-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tool-tag {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: var(--background);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

.expertise-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
  color: var(--muted-foreground);
}

.heart-icon {
  color: var(--accent);
}

@media (min-width: 768px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .expertise {
    padding: 7rem 0;
  }
}

/* ===== About Section ===== */
.about {
  padding: 5rem 0;
  background: var(--card);
}

.about-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(67, 160, 180, 0.1);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1rem;
}

.about-story {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.about-story p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.about-story p + p {
  margin-top: 1.5rem;
}

.values-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 4rem;
}

.value-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: rgba(248, 248, 248, 0.5);
  transition: all 0.5s ease;
}

.value-card:hover {
  background: rgba(67, 160, 180, 0.05);
  transform: translateY(-0.25rem);
}

.value-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(67, 160, 180, 0.1);
  color: var(--primary);
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1);
}

.value-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.value-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.about-stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 4rem;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(252, 79, 30, 0.3);
  background: rgba(252, 79, 30, 0.1);
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-text {
  font-size: 0.875rem;
  color: var(--foreground);
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .about {
    padding: 7rem 0;
  }
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .about-story p {
    font-size: 1.25rem;
  }
}

/* ===== Contact Section ===== */
.contact {
  padding: 5rem 0;
  background-color: var(--background);
  background-image: 
    linear-gradient(rgba(67, 160, 180, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(67, 160, 180, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.contact-header {
  margin-bottom: 3rem;
  text-align: center;
}

.contact-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(67, 160, 180, 0.1);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-grid {
  display: grid;
  align-items: start;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.contact-description {
  max-width: 28rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.contact-highlight {
  display: block;
  margin-top: 0.5rem;
  font-weight: 500;
  color: var(--foreground);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: rgba(67, 160, 180, 0.1);
  color: var(--primary);
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
}

.contact-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--primary);
}

.contact-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.contact-card {
  position: relative;
  margin-top: 0;
  padding: 2rem;
  border-radius: 1rem;
  background: var(--secondary);
  overflow: hidden;
}

.contact-card-bg {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background: 
    radial-gradient(circle at 20% 80%, rgba(67, 160, 180, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 140, 50, 0.2) 0%, transparent 50%);
}

.contact-card-content {
  position: relative;
  z-index: 10;
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(67, 160, 180, 0.2);
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.availability-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
}

.contact-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: white;
  margin-bottom: 1rem;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.list-dot {
  width: 0.375rem;
  height: 0.375rem;
  margin-top: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .contact {
    padding: 7rem 0;
  }
  .contact-header {
    text-align: left;
  }
  .section-divider-left {
    margin-left: 0;
  }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-card {
    padding: 2.5rem;
  }
  .contact-card-title {
    font-size: 1.875rem;
  }
}

/* ===== Footer ===== */
.footer {
  padding: 4rem 0;
  background: var(--secondary);
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

.footer-brand {
  max-width: 20rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 3rem;
  width: auto;
}

.footer-description {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1.5rem;
}

.footer-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  margin-bottom: 1rem;
}

.coffee-icon {
  color: var(--accent);
}

.footer-contact-info {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-email {
  font-weight: 500;
  color: var(--primary);
  transition: color 0.3s ease;
}

.footer-email:hover {
  color: var(--accent);
}

.footer-note {
  font-size: 0.75rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.4);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(0.25rem);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-made {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.heart-icon-small {
  color: var(--accent);
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
