:root {
  --color-bg: #2a2620;
  --color-surface: #3d362d;
  --color-text: #f5f1ed;
  --color-primary: #a68166;
  --color-secondary: #7a7370;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary) var(--color-surface);
}

.font-display {
  font-family: 'Bebas Neue', sans-serif;
}

.font-body {
  font-family: 'DM Sans', sans-serif;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 8px currentColor, 0 0 16px currentColor; }
  50% { box-shadow: 0 0 16px currentColor, 0 0 32px currentColor; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

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

@keyframes slide-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.status-light {
  animation: pulse-glow 2s ease-in-out infinite;
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

.gradient-text {
  background: linear-gradient(135deg, #a68166, #c4a882, #8b8680, #a68166);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease infinite;
}

.animate-in {
  animation: slide-up 0.6s ease-out forwards;
}

.card-shimmer {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}

.hero-gradient {
  background: radial-gradient(ellipse at top, rgba(166, 129, 102, 0.15) 0%, transparent 50%),
              radial-gradient(ellipse at bottom right, rgba(122, 115, 112, 0.1) 0%, transparent 40%);
}

.service-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.btn-primary {
  background: linear-gradient(135deg, #a68166 0%, #c4a882 100%);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(166, 129, 102, 0.4);
}

.btn-secondary {
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: #a68166;
  color: #a68166;
  transform: translateY(-2px);
}

.process-step {
  position: relative;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #a68166);
}

.process-step:first-child::before {
  display: none;
}

.input-field {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.input-field:focus {
  border-color: #a68166;
  box-shadow: 0 0 0 3px rgba(166, 129, 102, 0.2);
  outline: none;
}

.social-grid-item {
  aspect-ratio: 9/16;
  transition: all 0.3s ease;
}

.social-grid-item:hover {
  transform: scale(1.05);
  z-index: 10;
}

/* Additional styles for traditional layout */

body {
  box-sizing: border-box;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: 'DM Sans', sans-serif;
  height: 100%;
  margin: 0;
  padding: 0;
}

.h-full {
  height: 100%;
}

.w-full {
  width: 100%;
}

.overflow-auto {
  overflow: auto;
}

.fixed {
  position: fixed;
}

.top-0 {
  top: 0;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.z-50 {
  z-index: 50;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.max-w-7xl {
  max-width: 80rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: 0.5rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

.hidden {
  display: none;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.hover\:text-white:hover {
  color: white;
}

.transition-colors {
  transition: color 0.15s ease-in-out;
}

.rounded-full {
  border-radius: 9999px;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.font-semibold {
  font-weight: 600;
}

.text-white {
  color: white;
}

.relative {
  position: relative;
}

.min-h-screen {
  min-height: 100vh;
}

.pt-20 {
  padding-top: 5rem;
}

.absolute {
  position: absolute;
}

.top-20 {
  top: 5rem;
}

.right-10 {
  right: 2.5rem;
}

.w-72 {
  width: 18rem;
}

.h-72 {
  height: 18rem;
}

.opacity-20 {
  opacity: 0.2;
}

.blur-3xl {
  filter: blur(64px);
}

.bottom-20 {
  bottom: 5rem;
}

.left-10 {
  left: 2.5rem;
}

.w-96 {
  width: 24rem;
}

.h-96 {
  height: 24rem;
}

.opacity-10 {
  opacity: 0.1;
}

.w-64 {
  width: 16rem;
}

.h-\[500px\] {
  height: 500px;
}

.rounded-\[3rem\] {
  border-radius: 3rem;
}

.p-2 {
  padding: 0.5rem;
}

.rounded-\[2\.5rem\] {
  border-radius: 2.5rem;
}

.overflow-hidden {
  overflow: hidden;
}

.p-4 {
  padding: 1rem;
}

.flex-col {
  flex-direction: column;
}

.mb-4 {
  margin-bottom: 1rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.font-semibold {
  font-weight: 600;
}

.opacity-60 {
  opacity: 0.6;
}

.ml-auto {
  margin-left: auto;
}

.gap-1 {
  gap: 0.25rem;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.flex-1 {
  flex: 1 1 0%;
}

.rounded-2xl {
  border-radius: 1rem;
}

.justify-around {
  justify-content: space-around;
}

.w-6 {
  width: 1.5rem;
}

.h-6 {
  height: 1.5rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.text-center {
  text-align: center;
}

.mb-16 {
  margin-bottom: 4rem;
}

.inline-block {
  display: inline-block;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.md\:text-7xl {
  font-size: 3rem;
}

.lg\:text-8xl {
  font-size: 3rem;
}

.leading-none {
  line-height: 1;
}

.md\:text-xl {
  font-size: 1.25rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.leading-relaxed {
  line-height: 1.625;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-4 {
  gap: 1rem;
}

.bottom-10 {
  bottom: 2.5rem;
}

.left-1\/2 {
  left: 50%;
}

.-translate-x-1\/2 {
  transform: translateX(-50%);
}

.flex-col {
  flex-direction: column;
}

.animate-bounce {
  animation: bounce 1s infinite;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.opacity-50 {
  opacity: 0.5;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.md\:text-6xl {
  font-size: 2.25rem;
}

.grid {
  display: grid;
}

.md\:grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gap-8 {
  gap: 2rem;
}

.group {
  position: relative;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.w-16 {
  width: 4rem;
}

.h-16 {
  height: 4rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.md\:text-3xl {
  font-size: 1.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.w-4 {
  width: 1rem;
}

.h-4 {
  height: 1rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.md\:block {
  display: block;
}

.top-24 {
  top: 6rem;
}

.left-1\/4 {
  left: 25%;
}

.right-1\/4 {
  right: 25%;
}

.h-0\.5 {
  height: 0.125rem;
}

.w-20 {
  width: 5rem;
}

.h-20 {
  height: 5rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.z-10 {
  z-index: 10;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.md\:grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lg\:grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.gap-4 {
  gap: 1rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.flex-wrap {
  flex-wrap: wrap;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.md\:p-12 {
  padding: 3rem;
}

.md\:grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap-6 {
  gap: 1.5rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.block {
  display: block;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.resize-none {
  resize: none;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.mt-4 {
  margin-top: 1rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.border-t {
  border-top: 1px solid;
}

.md\:flex-row {
  flex-direction: row;
}

.gap-8 {
  gap: 2rem;
}

.w-10 {
  width: 2.5rem;
}

.h-10 {
  height: 2.5rem;
}

.transition-colors {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, color 0.15s ease-in-out, fill 0.15s ease-in-out, stroke 0.15s ease-in-out;
}

.w-5 {
  width: 1.25rem;
}

.h-5 {
  height: 1.25rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

/* Media queries */
@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }
  .md\:text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }
  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:p-12 {
    padding: 3rem;
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:flex-row {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .lg\:block {
    display: block;
  }
  .lg\:text-8xl {
    font-size: 6rem;
    line-height: 1;
  }
  .lg\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

/* Inline style replacements */
.nav-bg {
  background: linear-gradient(180deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.8) 50%, transparent 100%);
}

.status-bg {
  background: rgba(122, 115, 112, 0.1);
  border: 1px solid rgba(122, 115, 112, 0.3);
}

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

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

.phone-bg {
  background: linear-gradient(135deg, #2a2620, #3d362d);
  box-shadow: 0 25px 80px rgba(0,0,0,0.5);
}

.phone-inner-bg {
  background: linear-gradient(180deg, #a68166 0%, #3d362d 50%);
}

.phone-screen-bg {
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

.hero-text-secondary {
  color: rgba(255,255,255,0.6);
}

.services-bg {
  background: radial-gradient(ellipse at center, rgba(166, 129, 102, 0.05) 0%, transparent 70%);
}

.process-bg {
  background: linear-gradient(180deg, transparent, rgba(26, 26, 26, 0.5), transparent);
}

.process-line {
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-primary));
}

.contact-bg {
  background: radial-gradient(ellipse at bottom, rgba(255, 45, 85, 0.1) 0%, transparent 60%);
}

.footer-border {
  border-color: rgba(255,255,255,0.1);
}

.social-link-bg {
  background: rgba(255,255,255,0.1);
}

.social-link-hover:hover {
  background: rgba(255, 45, 85, 0.3);
}

.footer-text-muted {
  color: rgba(255,255,255,0.5);
}

.text-pink {
  color: #ffb6c1;
}