:root {
  --bg-primary: #0E0E10;
  --accent-primary: #00D1FF;
  --accent-secondary: #0066FF;
  --highlight: #FF3366;
  --text-light: #F2F2F5;
  --text-muted: #9A9A9E;
  
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-accent: 0 0 20px rgba(0, 209, 255, 0.15);
  

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  --gradient-primary: linear-gradient(135deg, #00D1FF, #0066FF);
  --gradient-highlight: linear-gradient(135deg, #0066FF, #FF3366);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  padding-top: 100px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover, a:focus {
  color: var(--highlight);
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-md);
}

section {
  padding: var(--space-xl) 0;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--gradient-primary);
  color: var(--text-light);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-accent);
}

.btn:hover, .btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 209, 255, 0.3);
  color: var(--text-light);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent-primary);
  color: var(--accent-primary);
}

.btn-outline:hover {
  background: var(--gradient-primary);
  color: var(--text-light);
}

.site-header {
  position: fixed;
  top: 10px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(14, 14, 16, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-normal);
  margin: 0 var(--space-md);
  border-radius: var(--radius-md);
  width: calc(100% - 2rem);
}

.header-scrolled {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.legal-page .site-header {
  top: 5px;
  margin: 0 var(--space-sm);
  width: calc(100% - 1rem);
}

@media (max-width: 768px) {
  .legal-page .site-header {
    top: 0;
    margin: 0;
    width: 100%;
    border-radius: 0;
  }
}

.legal-page .site-header .container {
  height: 60px;
  padding: var(--space-sm);
}

.legal-page .site-logo {
  font-size: 1.1rem;
}

.legal-page main {
  padding-top: 80px;
}

@media (max-width: 768px) {
  .legal-page main {
    padding-top: 70px;
  }
}

@media (max-width: 576px) {
  .legal-page main {
    padding-top: 65px;
  }
}

@media (max-width: 320px) {
  .legal-page main {
    padding-top: 60px;
  }
}

.site-logo {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  position: relative;
  z-index: 1001;
  text-decoration: none;
}

.site-logo:hover {
  color: var(--text-light);
}

.site-logo span {
  color: var(--accent-primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.nav-toggle-icon {
  display: block;
  transition: opacity var(--transition-fast);
}

body.nav-open .nav-toggle {
  display: none;
}


.nav-close {
  display: none;
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1002;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.nav-close:hover {
  color: var(--accent-primary);
  transform: rotate(90deg);
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin: 0 var(--space-md);
}

.nav-link {
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(0, 209, 255, 0.1), transparent 70%);
  z-index: -1;
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.hero-title {
  margin-bottom: var(--space-lg);
  position: relative;
}

.hero-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
}

.hero-description {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: var(--space-xl);
  color: var(--text-muted);
  max-width: 600px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-accent);
}

.service-card:hover::before {
  opacity: 0.05;
}

.service-icon {
  margin-bottom: var(--space-md);
  color: var(--accent-primary);
  font-size: 2.5rem;
}

.service-title {
  margin-bottom: var(--space-md);
}

.service-description {
  color: var(--text-muted);
}

.features-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.feature-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2rem;
  color: var(--accent-primary);
  margin-bottom: var(--space-md);
}

.feature-title {
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.portfolio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 14, 16, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
  padding: var(--space-lg);
}

.portfolio-item:hover .portfolio-image {
  transform: scale(1.05);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-title {
  margin-bottom: var(--space-md);
  text-align: center;
}

.cta-section {
  position: relative;
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-highlight);
  opacity: 0.1;
  z-index: -1;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  margin-bottom: var(--space-lg);
}

.cta-description {
  font-size: 1.2rem;
  margin-bottom: var(--space-lg);
  color: var(--text-muted);
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-content {
  padding: var(--space-lg) 0;
}

.about-title {
  margin-bottom: var(--space-md);
}

.about-description {
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.testimonials {
  margin-top: var(--space-xl);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  backdrop-filter: blur(10px);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--space-md);
  position: relative;
  padding-left: var(--space-md);
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2rem;
  color: var(--accent-primary);
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: var(--space-md);
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-weight: 600;
}

.testimonial-position {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-icon {
  color: var(--accent-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-text {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.contact-detail {
  color: var(--text-muted);
}


.contact-form {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--text-light);
  font-family: var(--font-body);
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 2px rgba(0, 209, 255, 0.1);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.form-check-input {
  margin-right: var(--space-sm);
  margin-top: 0.25rem;
}

.form-check-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-button {
  width: 100%;
}

.site-footer {
  background: rgba(0, 0, 0, 0.2);
  padding: var(--space-xl) 0 var(--space-lg);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-primary), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
}

.footer-logo {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: var(--space-md);
  display: inline-block;
}

.footer-about {
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.social-links {
  display: flex;
  gap: var(--space-sm);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--text-light);
  transition: all var(--transition-normal);
}

.social-link:hover {
  background: var(--gradient-primary);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-primary);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link-item {
  margin-bottom: var(--space-sm);
}

.footer-link {
  color: var(--text-muted);
  transition: all var(--transition-fast);
  display: inline-block;
}

.footer-link:hover {
  color: var(--accent-primary);
  transform: translateX(5px);
}

.copyright {
  text-align: center;
  padding-top: var(--space-lg);
  margin-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.cookies-popup {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 400px;
  background: rgba(20, 20, 25, 0.95);
  backdrop-filter: blur(10px);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 9999;
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cookies-popup.show {
  display: block;
  animation: slideUp 0.5s ease forwards;
}

.cookies-title {
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
}

.cookies-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.cookies-buttons {
  display: flex;
  gap: var(--space-sm);
}

.cookies-btn {
  flex: 1;
  padding: 0.5rem;
  font-size: 0.9rem;
}

.thank-you {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) 0;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--accent-primary);
  margin-bottom: var(--space-lg);
  animation: pulse 2s infinite;
}

.thank-you-title {
  margin-bottom: var(--space-md);
}

.thank-you-text {
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
  max-width: 600px;
}

.page-404 {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) 0;
}

.error-code {
  font-size: clamp(5rem, 20vw, 12rem);
  font-weight: 900;
  line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: var(--space-lg);
}

.error-title {
  margin-bottom: var(--space-md);
}

.error-text {
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
  max-width: 600px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
}

@media (max-width: 768px) {
  .legal-content {
    padding: var(--space-lg) var(--space-md);
  }
}

@media (max-width: 576px) {
  .legal-content {
    padding: var(--space-md);
  }
}

@media (max-width: 320px) {
  .legal-content {
    padding: var(--space-sm);
  }
}

.legal-title {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.legal-section {
  margin-bottom: var(--space-xl);
}

.legal-section-title {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  margin-bottom: var(--space-md);
}

@media (max-width: 768px) {
  .legal-title {
    font-size: 1.5rem;
  }
  
  .legal-section-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .legal-title {
    font-size: 1.3rem;
  }
  
  .legal-section-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 320px) {
  .legal-title {
    font-size: 1.1rem;
  }
  
  .legal-section-title {
    font-size: 1rem;
  }
  
  .legal-section {
    margin-bottom: var(--space-lg);
  }
}

.legal-text {
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
  
  .about-split {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right var(--transition-normal);
    z-index: 1000;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .main-nav.active .nav-close {
    display: flex;
  }
  
  body.nav-open .nav-toggle {
    display: none;
  }
  
  .nav-list {
    flex-direction: column;
    align-items: center;
  }
  
  .nav-item {
    margin: var(--space-md) 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 320px) {
  .site-logo {
    font-size: 1rem;
  }
  
  .footer-logo {
    font-size: 1rem;
  }
  
  .site-header .container {
    height: 60px;
    padding: var(--space-sm);
  }
  
  .site-header {
    top: 8px;
    margin: 0 var(--space-sm);
    width: calc(100% - 1rem);
  }
  
  main {
    padding-top: 80px;
  }
  
  .nav-toggle {
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
  }
  
  .container {
    width: 95%;
    padding: var(--space-sm);
  }
  
  section {
    padding: var(--space-lg) 0;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .features-row {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .feature-item {
    min-width: 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .about-split {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .hero {
    padding: var(--space-lg) 0;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
  }
  
  .btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  .btn {
    display: block;
    width: 100%;
    text-align: center;
  }
  
  .cookies-buttons {
    flex-direction: column;
  }
  
  .service-card {
    text-align: center;
  }
  
  .site-logo {
    font-size: 1.1rem;
  }
  
  .footer-logo {
    font-size: 1.1rem;
  }
  
  .site-header {
    top: 8px;
    margin: 0 var(--space-sm);
    width: calc(100% - 1rem);
  }
  
  main {
    padding-top: 90px;
  }
}

@media (max-width: 300px) {
  .site-logo {
    font-size: 0.9rem;
  }
  
  .footer-logo {
    font-size: 0.9rem;
  }
  
  .site-header .container {
    padding: var(--space-xs) var(--space-sm);
  }
  
  .site-header {
    top: 5px;
    margin: 0 var(--space-sm);
    width: calc(100% - 1rem);
  }
  
  main {
    padding-top: 75px;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translate(-50%, 50px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: var(--space-sm);
}

.mb-2 {
  margin-bottom: var(--space-md);
}

.mb-3 {
  margin-bottom: var(--space-lg);
}

.mb-4 {
  margin-bottom: var(--space-xl);
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: var(--space-sm);
}

.mt-2 {
  margin-top: var(--space-md);
}

.mt-3 {
  margin-top: var(--space-lg);
}

.mt-4 {
  margin-top: var(--space-xl);
}
