@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@600;700&display=swap');

:root {
  --font-primary: 'Manrope', 'Manrope Fallback', Helvetica, Arial, sans-serif;
  --font-accent: 'IBM Plex Mono', monospace;
  
  --nprogress-color: #FF7E29;
  --color-primary: #FF7E29;
  --color-primary-hover: #FF9E3D;
  --color-gradient: linear-gradient(270deg, #FF5B14 0%, #FF9E3D 100%);
  --color-text-main: #000000;
  --color-text-muted: #666666;
  --color-bg-white: #ffffff;
  --color-bg-dark: #141414;
  --color-bg-gray: #F3F3F3;
  --color-border: rgba(125, 131, 135, 0.5);
  
  --dt-eaa96658: 1560px; /* max-width */
  --dt-86e5c9dd: 16px;   /* padding */
  
  --header-height-mobile: 64px;
  --header-height-desktop: 80px;
  
  --transition-smooth: all 0.3s cubic-bezier(0.12, 0.77, 0.16, 0.93);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 100%;
  height: 100%;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-text-main);
  background-color: var(--color-bg-white);
  overflow-x: hidden;
  height: 100%;
}

/* Scrollbar styling matching Wezom */
@media (min-width: 900px) {
  html ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  html ::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 5px;
  }
  html ::-webkit-scrollbar-thumb {
    background-color: #AFAFAF;
    transition: background-color 0.3s;
    border-radius: 5px;
  }
  html ::-webkit-scrollbar-thumb:hover {
    background-color: #545454;
  }
}

/* Container responsive system matching Wezom */
.container {
  width: 100%;
  max-width: calc(var(--dt-eaa96658) + 2 * var(--dt-86e5c9dd));
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--dt-86e5c9dd);
  padding-right: var(--dt-86e5c9dd);
}

@media (min-width: 900px) {
  :root {
    --dt-86e5c9dd: 2.5rem; /* 40px */
  }
}

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

/* Grid & Spacing */
.grid {
  display: grid;
  gap: 20px;
}

.section-padding {
  padding: 60px 0;
}

@media (min-width: 900px) {
  .section-padding {
    padding: 100px 0;
  }
}

.bg-gray {
  background-color: var(--color-bg-gray);
}

.bg-dark {
  background-color: var(--color-bg-dark);
  color: var(--color-bg-white);
}

/* Premium Buttons matching Wezom MuiButton classes */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 24px;
  border-radius: 40px;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  will-change: transform;
  transition: var(--transition-smooth);
}

@media (min-width: 1200px) {
  .btn {
    min-height: 48px;
    padding: 0 32px;
    font-size: 16px;
  }
}

.btn-primary {
  background: var(--color-gradient);
  color: var(--color-bg-white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 91, 20, 0.3);
}

.btn-outline {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-bg-white);
}

.btn-dark {
  background: var(--color-bg-white);
  color: var(--color-bg-dark);
}

.btn-dark:hover {
  background: var(--color-primary);
  color: var(--color-bg-white);
}

/* Sections headers */
.section-header {
  margin-bottom: 40px;
}

.section-tag {
  font-family: var(--font-accent);
  color: var(--color-primary);
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

@media (min-width: 900px) {
  .section-title {
    font-size: 48px;
  }
}

/* Animation triggers */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.active {
  opacity: 1;
  transform: translateY(0);
}
