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

body {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: #000000;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 18, 66, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(26, 18, 66, 0.95);
  backdrop-filter: blur(20px);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
}

.logo-text {
  font-weight: 600;
}

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

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 998;
}

.mobile-menu-overlay.menu-active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: rgba(26, 18, 66, 0.95);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding: 80px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 999;
}

.mobile-menu-sidebar.menu-active {
  transform: translateX(0);
}

.mobile-nav-link {
  display: block;
  padding: 20px 0;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav-link:last-of-type {
  border-bottom: none;
  margin-bottom: 30px;
}

.mobile-nav-link:hover {
  color: #6733ee;
  padding-left: 10px;
}

.mobile-cta-btn {
  background: #6733ee;
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
}

.mobile-cta-btn:hover {
  background: #5a2bc7;
  transform: translateY(-2px);
}

.mobile-menu-btn.menu-active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.menu-active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.mobile-menu-btn.menu-active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

body.menu-open {
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: #6733ee;
  color: #ffffff;
}

.btn-primary:hover {
  background: #5a2bc7;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(103, 51, 238, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.footer {
  background: linear-gradient(180deg, #000000 0%, #1a1242 100%);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.footer-graphic {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
  position: relative;
}

.cube-container {
  perspective: 1000px;
  transform-style: preserve-3d;
}

.cube {
  width: 120px;
  height: 120px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(-15deg) rotateY(25deg);
  animation: float 6s ease-in-out infinite;
}

.cube-face {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
}

.cube-top {
  background: linear-gradient(135deg, #9d4edd 0%, #c77dff 100%);
  transform: rotateX(90deg) translateZ(60px);
  box-shadow: 0 0 30px rgba(157, 78, 221, 0.4);
}

.cube-front {
  background: linear-gradient(135deg, #6733ee 0%, #9d4edd 100%);
  transform: translateZ(60px);
  box-shadow: 0 0 20px rgba(103, 51, 238, 0.3);
}

.cube-right {
  background: linear-gradient(135deg, #4c1d95 0%, #6733ee 100%);
  transform: rotateY(90deg) translateZ(60px);
  box-shadow: 0 0 15px rgba(76, 29, 149, 0.2);
}

@keyframes float {
  0%, 100% {
    transform: rotateX(-15deg) rotateY(25deg) translateY(0px);
  }
  50% {
    transform: rotateX(-15deg) rotateY(25deg) translateY(-10px);
  }
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
}

.footer-left {
  flex: 0 0 300px;
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

.footer-tagline {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-links {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex: 1;
  width: 100%;
}

.footer-column {
  flex: 0 1 auto;
  min-width: 120px;
}

.footer-column-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-column-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column-links li {
  margin-bottom: 12px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
}

.contact-hero {
  padding: 120px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, #1a1242 0%, #2d1b69 100%);
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(103, 51, 238, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(45, 27, 105, 0.4) 0%, transparent 50%);
  z-index: -1;
}

.hero-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #ffffff;
}

.highlight {
  background: linear-gradient(135deg, #6733ee 0%, #9d4edd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.contact-section {
  background: #000000;
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-form-container {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 48px;
  backdrop-filter: blur(10px);
}

.form-header {
  margin-bottom: 40px;
}

.form-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.form-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.form-input,
.form-select,
.form-textarea {
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #ffffff;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #6733ee;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(103, 51, 238, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-select {
  cursor: pointer;
}

.form-select option {
  background: #1a1242;
  color: #ffffff;
}

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

.character-count {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-align: right;
  margin-top: 4px;
}

.form-error {
  font-size: 12px;
  color: #ef4444;
  margin-top: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form-error.show {
  opacity: 1;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
}

.checkbox-label:hover {
  color: #ffffff;
}

.form-checkbox {
  display: none;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.form-checkbox:checked + .checkbox-custom {
  background: #6733ee;
  border-color: #6733ee;
}

.form-checkbox:checked + .checkbox-custom::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.newsletter-checkbox,
.privacy-checkbox {
  margin-top: 8px;
}

.privacy-link {
  color: #6733ee;
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-link:hover {
  color: #9d4edd;
  text-decoration: underline;
}

.file-upload-area {
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.file-upload-area:hover {
  border-color: #6733ee;
  background: rgba(103, 51, 238, 0.05);
}

.file-upload-area.dragover {
  border-color: #6733ee;
  background: rgba(103, 51, 238, 0.1);
}

.file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload-content {
  pointer-events: none;
}

.upload-icon {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.upload-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.upload-link {
  color: #6733ee;
  font-weight: 600;
}

.upload-hint {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.uploaded-files {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.uploaded-file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-size: 14px;
}

.logo img {
	width: 40px;
	height: 40px;
}

a {
	text-decoration: none;
}

.file-remove {
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.file-remove:hover {
  background: rgba(239, 68, 68, 0.1);
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 32px;
  background: linear-gradient(135deg, #6733ee 0%, #9d4edd 100%);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 16px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(103, 51, 238, 0.4);
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.submit-loader {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

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

.form-submit.loading .submit-text,
.form-submit.loading .submit-icon {
  opacity: 0;
}

.form-submit.loading .submit-loader {
  display: block;
}

.loader-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
}

.contact-card-header {
  margin-bottom: 32px;
}

.contact-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.contact-card-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #6733ee 0%, #9d4edd 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.contact-details {
  flex: 1;
}

.contact-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.contact-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 4px;
  line-height: 1.4;
}

.contact-subtext {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.chat-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(103, 51, 238, 0.2);
  border: 1px solid rgba(103, 51, 238, 0.4);
  border-radius: 8px;
  color: #6733ee;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.chat-button:hover {
  background: rgba(103, 51, 238, 0.3);
  transform: translateY(-1px);
}

.social-links {
  margin-bottom: 24px;
}

.social-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons .social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.social-icons .social-link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  transform: translateY(-2px);
}

.response-time {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.response-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.status-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.faq-quick-links {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
}

.faq-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.faq-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
}

.faq-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(103, 51, 238, 0.3);
  color: #ffffff;
  transform: translateX(4px);
}

.faq-question {
  font-size: 14px;
  font-weight: 500;
}

.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.success-modal.show {
  opacity: 1;
  visibility: visible;
}

.success-modal-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.success-modal.show .success-modal-content {
  transform: scale(1);
}

.success-icon {
  margin-bottom: 24px;
}

.success-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.success-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  line-height: 1.5;
}

.success-close {
  padding: 12px 24px;
  background: #6733ee;
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.success-close:hover {
  background: #5a2bc7;
  transform: translateY(-2px);
}

@media (min-width: 769px) {
  .mobile-menu-btn {
    display: none !important;
  }
  
  .mobile-menu-overlay,
  .mobile-menu-sidebar {
    display: none !important;
  }
  
  .nav {
    display: flex !important;
  }
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .contact-form-container {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .hero-title {
    font-size: 48px;
  }

	.header-cta {
		display: none;
	}
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .checkbox-group {
    grid-template-columns: 1fr;
  }
  
  .contact-form-container {
    padding: 24px;
  }
  
  .form-title {
    font-size: 28px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  
  .footer-left {
    max-width: 100%;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    width: 100%;
    max-width: 600px;
  }
  
  .footer-column {
    text-align: center;
    min-width: 140px;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 100px 0 40px;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .contact-form-container {
    padding: 20px;
  }
  
  .form-title {
    font-size: 24px;
  }
  
  .contact-card {
    padding: 24px;
  }
  
  .file-upload-area {
    padding: 24px;
  }
  
  .footer {
    padding: 40px 0 20px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .cube {
    width: 80px;
    height: 80px;
  }
  
  .cube-face {
    width: 80px;
    height: 80px;
  }
  
  .cube-top {
    transform: rotateX(90deg) translateZ(40px);
  }
  
  .cube-front {
    transform: translateZ(40px);
  }
  
  .cube-right {
    transform: rotateY(90deg) translateZ(40px);
  }
  
  .footer-logo-text {
    font-size: 20px;
  }
  
  .footer-tagline {
    font-size: 16px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  
  .footer-column {
    text-align: center;
  }
  
  .footer-column-title {
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .footer-link {
    font-size: 14px;
  }
}