/* Rounded fonts per language */
@import url('https://fonts.googleapis.com/css2?family=Jua&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap');

:root {
  /* Background */
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-tertiary: #1a1a24;
  --bg-card: rgba(255, 255, 255, 0.03);

  /* Accent */
  --accent-purple: #7c3aed;
  --accent-blue: #3b82f6;
  --accent-purple-light: #a78bfa;
  --gradient-accent: linear-gradient(135deg, #7c3aed, #3b82f6);
  --gradient-accent-hover: linear-gradient(135deg, #8b5cf6, #60a5fa);

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-glow: rgba(124, 58, 237, 0.15);
  --glass-glow-hover: rgba(124, 58, 237, 0.3);

  /* Text */
  --text-primary: #f5f5f5;
  --text-secondary: #a0a0b0;
  --text-muted: #6b6b80;

  /* Font - defaults, overridden per language */
  --font-base: 'Nunito', 'Jua', sans-serif;
  --font-heading: 'Nunito', 'Jua', sans-serif;

  /* Spacing */
  --container-width: 1200px;
  --section-padding: 100px 0;
  --section-padding-sm: 60px 0;
  --card-padding: 32px;
  --card-radius: 16px;
  --nav-height: 72px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.min.css');

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-purple-light);
}

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: var(--section-padding);
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 16px;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

::selection {
  background: var(--accent-purple);
  color: white;
}
/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: background var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.95);
}

.navbar-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.navbar-logo img {
  height: 32px;
  width: auto;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

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

.navbar-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 1px;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-selector {
  display: flex;
  gap: 8px;
}

.lang-btn {
  background: none;
  border: 1px solid transparent;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all var(--transition-fast);
  font-family: var(--font-base);
}

.lang-btn:hover {
  color: var(--text-secondary);
}

.lang-btn.active {
  color: var(--text-primary);
  border-color: var(--glass-border);
  background: var(--glass-bg);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  transition: all var(--transition-fast);
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 30px;
}

.footer-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 12px;
  max-width: 300px;
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Grid utilities */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Glassmorphism Card */
.card-glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  padding: var(--card-padding);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.card-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--card-radius);
  padding: 1px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), transparent, rgba(59, 130, 246, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.card-glass:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px var(--glass-glow);
  border-color: rgba(124, 58, 237, 0.2);
}

.card-glass:hover::before {
  opacity: 1;
}

.card-glass .card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-glass .card-icon img {
  width: 32px;
  height: 32px;
}

.card-glass .card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.card-glass .card-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-base);
  cursor: pointer;
  border: none;
  transition: all var(--transition-normal);
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-accent);
  color: white;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
  background: var(--gradient-accent-hover);
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.4);
  transform: translateY(-2px);
  color: white;
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  border-color: var(--accent-purple);
  background: rgba(124, 58, 237, 0.1);
  color: var(--text-primary);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* Form inputs */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: none;
  border-bottom: 1px solid var(--glass-border);
  border-radius: 4px 4px 0 0;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: var(--font-base);
  transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-bottom-color: var(--accent-purple);
  background: rgba(255, 255, 255, 0.05);
}

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

.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23a0a0b0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

/* Badge */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-accent {
  background: rgba(124, 58, 237, 0.15);
  color: var(--accent-purple-light);
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.badge-blue {
  background: rgba(59, 130, 246, 0.15);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Stats */
.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 4px;
}
/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 15, 0.7) 0%,
    rgba(10, 10, 15, 0.5) 50%,
    rgba(10, 10, 15, 0.95) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.1;
}

.hero-content .hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

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

/* ===== SERVICES HIGHLIGHT (home) ===== */
.services-highlight {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

/* ===== PORTFOLIO PREVIEW (home) ===== */
.portfolio-preview {
  padding: var(--section-padding);
}

.portfolio-preview-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.portfolio-preview-img {
  border-radius: var(--card-radius);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.portfolio-preview-img img {
  width: 100%;
  display: block;
}

.portfolio-preview-text h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.portfolio-preview-text .badge {
  margin-bottom: 16px;
}

.portfolio-preview-text p {
  margin-bottom: 24px;
}

/* ===== SERVICES PAGE ===== */
.services-page {
  padding-top: calc(var(--nav-height) + 60px);
}

.services-b2c {
  margin-bottom: 80px;
}

.service-card-large {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.service-card-large:hover {
  border-color: rgba(124, 58, 237, 0.2);
  box-shadow: 0 8px 32px var(--glass-glow);
}

.service-card-large .card-img {
  height: 200px;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-large .card-img img {
  height: 80px;
  opacity: 0.8;
}

.service-card-large .card-body {
  padding: 24px;
}

.service-card-large .card-body h3 {
  margin-bottom: 8px;
}

.service-card-large .card-body p {
  margin-bottom: 16px;
  font-size: 0.9rem;
}

/* B2B full-width */
.b2b-section {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.b2b-section .b2b-img {
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-tertiary);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.b2b-section .b2b-img img {
  height: 120px;
  opacity: 0.8;
}

/* ===== PORTFOLIO PAGE ===== */
.portfolio-page {
  padding-top: calc(var(--nav-height) + 60px);
}

.case-study {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  overflow: hidden;
  margin-bottom: 60px;
}

.case-study-img {
  padding: 24px;
}

.case-study-img img {
  border-radius: 12px;
  width: 100%;
}

.case-study-details {
  padding: 0 32px 32px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
}

.case-study-meta dt {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 12px;
}

.case-study-meta dd {
  font-size: 0.95rem;
  color: var(--text-primary);
}

.upcoming-grid {
  margin-bottom: 60px;
}

.stats-bar {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  padding: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 24px;
}

/* ===== ABOUT PAGE ===== */
.about-page {
  padding-top: calc(var(--nav-height) + 60px);
}

.vision-section {
  text-align: center;
  margin-bottom: 80px;
}

.vision-section blockquote {
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto 24px;
  font-style: italic;
}

.company-info-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  padding: 40px;
  max-width: 600px;
  margin: 0 auto 80px;
}

.company-info-card table {
  width: 100%;
  border-collapse: collapse;
}

.company-info-card th,
.company-info-card td {
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
  text-align: left;
}

.company-info-card th {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  width: 40%;
}

.company-info-card td {
  color: var(--text-primary);
}

.values-section {
  margin-top: 80px;
}

/* ===== CONTACT PAGE ===== */
.contact-page {
  padding-top: calc(var(--nav-height) + 60px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
}

.contact-form-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  padding: 40px;
}

.contact-info {
  padding: 20px 0;
}

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

.contact-info-item .info-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(124, 58, 237, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item .info-icon img {
  width: 20px;
  height: 20px;
}

.contact-info-item h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 500;
}

.contact-info-item p {
  color: var(--text-primary);
  font-size: 0.95rem;
}

.map-placeholder {
  margin-top: 32px;
  height: 200px;
  border-radius: 12px;
  background: var(--bg-tertiary);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(1) contrast(0.8) brightness(0.6);
}

.demo-cta {
  margin-top: 60px;
  text-align: center;
  padding: 48px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
}

.demo-cta h3 {
  margin-bottom: 12px;
}

.demo-cta p {
  margin-bottom: 24px;
}

/* ===== PAGE VISIBILITY ===== */
.page-section {
  display: none;
}

.page-section.active {
  display: block;
}
/* Tablet */
@media (max-width: 1024px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .b2b-section { grid-template-columns: 1fr; }
  .case-study-details { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 3rem; }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
    --card-padding: 24px;
    --nav-height: 60px;
  }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.6rem; }
  .section-title { font-size: 1.8rem; }

  /* Nav */
  .navbar-inner {
    padding: 0 16px;
  }

  .navbar-logo {
    gap: 8px;
    font-size: 1rem;
    flex-shrink: 1;
    min-width: 0;
  }

  .navbar-logo span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .navbar-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    height: calc(100vh - var(--nav-height));
    background: rgba(10, 10, 15, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 9999;
  }

  .navbar-menu.open {
    display: flex;
  }

  .navbar-menu .navbar-link {
    font-size: 1.2rem;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .navbar-right {
    gap: 8px;
    flex-shrink: 0;
  }

  .lang-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
  }

  .lang-btn {
    font-size: 0.65rem;
    padding: 3px 6px;
    line-height: 1;
    text-align: center;
  }

  /* Hero */
  .hero-content h1 { font-size: 2.5rem; }
  .hero-content .hero-subtitle { font-size: 1rem; }
  .hero-buttons { flex-direction: column; align-items: center; }

  /* Grids */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  /* Portfolio preview */
  .portfolio-preview-inner {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Stats */
  .stats-bar {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* B2B */
  .b2b-section {
    padding: 24px;
  }
}

/* iPhone 15 and small mobile (393px) */
@media (max-width: 480px) {
  .hero-content h1 { font-size: 2rem; }
  .container { padding: 0 16px; }
  .btn-lg { padding: 14px 28px; font-size: 0.95rem; }

  .navbar-logo img {
    height: 26px;
  }

  .navbar-logo span {
    font-size: 0.85rem;
    max-width: 180px;
  }

  .lang-selector {
    gap: 2px;
  }

  .lang-btn {
    font-size: 0.6rem;
    padding: 2px 5px;
  }
}

/* ===== Language-specific fonts ===== */
html[lang="ko"] {
  --font-base: 'Jua', sans-serif;
  --font-heading: 'Jua', sans-serif;
}

html[lang="en"] {
  --font-base: 'Nunito', sans-serif;
  --font-heading: 'Nunito', sans-serif;
}

html[lang="ja"] {
  --font-base: 'Kosugi Maru', sans-serif;
  --font-heading: 'Kosugi Maru', sans-serif;
}

html[lang="vi"] {
  --font-base: 'Nunito', sans-serif;
  --font-heading: 'Nunito', sans-serif;
}
