@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;700&display=swap');

:root {
  /* Colors */
  --novo-dark: #090f1b;
  --novo-dark-lighter: #0f1628;
  --novo-dark-surface: #151c2e;
  --novo-gold: #c49a3c;
  --novo-gold-light: #d4ad55;
  --novo-gold-dark: #a07d2e;
  --novo-white: #ffffff;
  --novo-text: #e8e9f0;
  --novo-text-muted: #8b8fa4;
  --novo-success: #34c77b;
  --novo-warning: #f0a030;
  --novo-error: #e84855;
  --novo-info: #4a9eff;
  
  /* Typography */
  --font-sans: 'Montserrat', sans-serif;
  --font-serif: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.3);
  --shadow-lg: 0 12px 24px rgba(0,0,0,0.4);
  --shadow-gold: 0 4px 16px rgba(196, 154, 60, 0.2);
  --shadow-glow: 0 0 20px rgba(196, 154, 60, 0.15);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.15s ease-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-family: var(--font-sans);
  background-color: #090f1b;
  color: var(--novo-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--novo-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--novo-dark-surface);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--novo-gold);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--novo-white);
  font-weight: 600;
  line-height: 1.2;
}

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

button {
  cursor: pointer;
  font-family: inherit;
}

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

/* =========================================
   Animations
   ========================================= */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulseGold {
  0% { box-shadow: 0 0 0 0 rgba(196, 154, 60, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(196, 154, 60, 0); }
  100% { box-shadow: 0 0 0 0 rgba(196, 154, 60, 0); }
}

/* =========================================
   Layout
   ========================================= */
.app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex: 1;
  padding-top: 80px; /* Adjust for navbar height */
  animation: fadeIn var(--transition-slow);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================
   Navbar
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: rgba(9, 15, 27, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  transition: background var(--transition-normal);
}

.navbar--transparent {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.navbar__logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar__logo-icon {
  height: 70px;
  width: auto;
}

.navbar__logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.navbar__logo-text {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--novo-white);
  letter-spacing: 0.15em;
  line-height: 1;
}

.navbar__logo-text span {
  color: var(--novo-gold);
}

.navbar__logo-sub {
  font-size: 0.6rem;
  color: var(--novo-text-muted);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Hero Brand Text */
.hero-section__brand {
  font-family: var(--font-sans);
  font-size: 4rem;
  font-weight: 700;
  color: var(--novo-white);
  letter-spacing: 0.2em;
  margin-bottom: 4px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.hero-section__sub-brand {
  font-size: 1rem;
  letter-spacing: 0.4em;
  color: var(--novo-text-muted);
  text-transform: uppercase;
  margin-bottom: 40px;
}

/* Footer Logo Icon */
.footer-logo-icon {
  height: 50px;
  width: auto;
  margin-bottom: 10px;
}

/* Auth Logo Image */
.auth__logo-img {
  height: 60px;
  width: auto;
  margin: 0 auto 10px;
  display: block;
}

.navbar__hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--novo-white);
  font-size: 1.8rem;
  cursor: pointer;
  transition: color var(--transition-fast);
  padding: 8px;
  line-height: 1;
  z-index: 10001;
}

.navbar__hamburger:hover {
  color: var(--novo-gold);
}

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

.navbar__link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--novo-text);
  position: relative;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--novo-gold);
  transition: width var(--transition-normal);
}

.navbar__link:hover {
  color: var(--novo-white);
}

.navbar__link:hover::after {
  width: 100%;
}

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

/* =========================================
   Fullscreen Menu Overlay
   ========================================= */
.fs-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--novo-dark);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fs-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.fs-menu__close {
  position: absolute;
  top: 40px;
  right: 40px;
  background: none;
  border: none;
  color: var(--novo-white);
  font-size: 3rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition-fast);
}

.fs-menu__close:hover {
  color: var(--novo-gold);
}

.fs-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.fs-menu__link {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--novo-white);
  text-decoration: none;
  transition: color var(--transition-normal);
  cursor: pointer;
}

.fs-menu__link:hover {
  color: var(--novo-gold);
}

.fs-menu__sep {
  width: 2px;
  height: 30px;
  background-color: var(--novo-gold);
  margin: 10px 0;
}

/* =========================================
   Landing Page
   ========================================= */
.landing {
  background-color: var(--novo-dark);
}

.dentsu-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 40px;
}

.dentsu-gold-line {
  width: 60px;
  height: 2px;
  background-color: var(--novo-gold);
  margin-bottom: 40px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--novo-white);
  margin-bottom: 24px;
}

.arrow {
  display: inline-block;
  transition: transform var(--transition-normal);
}

.btn-dentsu-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--novo-gold);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn-dentsu-link:hover .arrow {
  transform: translateX(5px);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Hero Background */
.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: blur(3px) brightness(0.45);
  transform: scale(1.05);
}

.hero-section__bg-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(9, 15, 27, 0.5) 0%,
    rgba(9, 15, 27, 0.6) 50%,
    rgba(9, 15, 27, 0.9) 100%
  );
  z-index: 1;
}

.hero-section__content {
  position: relative;
  z-index: 2;
  animation: fadeIn 1.5s ease-out;
}

.hero-section__logo-img {
  width: 480px;
  max-width: 85vw;
  height: auto;
  margin: 0 auto 50px;
  display: block;
  filter: drop-shadow(0 4px 30px rgba(196, 154, 60, 0.15));
}

.hero-section__headline {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 300;
  color: var(--novo-white);
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 3;
  animation: bounce 2s infinite ease-in-out;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--novo-gold);
  border-bottom: 2px solid var(--novo-gold);
  transform: rotate(45deg);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-15px) translateX(-50%); }
  60% { transform: translateY(-7px) translateX(-50%); }
}

/* Intro Section */
.intro-section {
  padding: 0;
  background-color: var(--novo-dark);
}

.intro-section__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.intro-section__image {
  overflow: hidden;
}

.intro-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.intro-section__image:hover img {
  transform: scale(1.03);
}

.intro-section__content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro-section__text {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  line-height: 1.5;
  color: var(--novo-text-muted);
  margin-bottom: 40px;
  font-weight: 300;
}

/* Services Showcase */
.services-showcase {
  padding: 0;
  overflow: hidden;
}

.services-showcase__img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
  transition: filter 0.4s ease;
}

.services-showcase__img:hover {
  filter: brightness(1);
}

/* CTA Section Overlay */
.cta-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-section__overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(9, 15, 27, 0.8);
  z-index: 1;
}

/* Footer Logo */
.footer-logo-img {
  width: 180px;
  height: auto;
  display: block;
}

/* Quote Section */
.quote-section {
  background-color: var(--novo-dark-lighter);
  text-align: center;
}

.quote-block {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.3;
  color: var(--novo-gold);
  max-width: 1000px;
  margin: 0 auto 30px;
  position: relative;
}

.quote-author {
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--novo-text-muted);
}

/* Services Section */
.services-section {
  background-color: var(--novo-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background-color: rgba(255, 255, 255, 0.05);
}

.dentsu-card {
  background-color: var(--novo-dark);
  padding: 60px 40px;
  position: relative;
  transition: background-color var(--transition-normal);
}

.dentsu-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 2px;
  background: var(--novo-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.dentsu-card:hover {
  background-color: var(--novo-dark-surface);
}

.dentsu-card:hover::before {
  transform: scaleX(1);
}

.dentsu-card__title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 20px;
}

.dentsu-card__desc {
  color: var(--novo-text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Process Section */
.process-section {
  background-color: var(--novo-dark-lighter);
}

.process-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.process-step {
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 30px;
  right: -20px;
  width: 40px;
  height: 1px;
  background-color: var(--novo-gold);
  opacity: 0.3;
}

.process-step:last-child::after {
  display: none;
}

.process-step__number {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--novo-gold);
  margin-bottom: 20px;
  line-height: 1;
}

.process-step__title {
  font-size: 1.5rem;
  margin-bottom: 16px;
  font-weight: 400;
}

.process-step__desc {
  color: var(--novo-text-muted);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background-color: var(--novo-dark);
}

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

.cta-section__title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 40px;
}

.cta-section__actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Footer */
.dentsu-footer {
  background-color: var(--novo-dark-lighter);
}

.dentsu-footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px 40px;
}

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

.dentsu-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.dentsu-footer__links a {
  color: var(--novo-text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.dentsu-footer__links a:hover {
  color: var(--novo-white);
}

.dentsu-footer__social {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  color: var(--novo-gold);
}

.dentsu-footer__bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--novo-text-muted);
  font-size: 0.8rem;
}

@media (max-width: 992px) {
  .services-grid, .process-layout {
    grid-template-columns: 1fr;
  }
  .process-step::after {
    display: none;
  }
  .dentsu-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-section__headline, .section-title, .cta-section__title {
    font-size: 2.5rem;
  }
  .hero-section__logo-img {
    width: 300px;
  }
  .intro-section__layout {
    grid-template-columns: 1fr;
  }
  .intro-section__image {
    max-height: 350px;
  }
  .intro-section__content {
    padding: 50px 24px;
  }
  .intro-section__text {
    font-size: 1.4rem;
  }
  .quote-block {
    font-size: 1.6rem;
  }
  .services-showcase__img {
    height: 300px;
  }
  .process-layout {
    flex-direction: column;
    gap: 40px;
  }
  .cta-section {
    background-attachment: scroll;
  }
  .dentsu-footer__grid {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
}


/* =========================================
   Auth Pages
   ========================================= */
.auth {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
  background: radial-gradient(circle at center, var(--novo-dark-lighter) 0%, var(--novo-dark) 100%);
}

.auth__card {
  background: var(--novo-dark-surface);
  width: 100%;
  max-width: 480px;
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
}

.auth__back {
  display: block;
  text-align: left;
  font-size: 0.85rem;
  color: var(--novo-text-muted);
  margin-bottom: 24px;
  transition: color var(--transition-fast);
}

.auth__back:hover {
  color: var(--novo-gold);
}

.auth__logo {
  text-align: center;
  margin-bottom: 40px;
}

.auth__title {
  font-family: var(--font-serif);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 8px;
}

.auth__subtitle {
  text-align: center;
  color: var(--novo-text-muted);
  margin-bottom: 32px;
}

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

.auth__switch {
  display: block;
  text-align: center;
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--novo-text-muted);
  text-decoration: none;
}

.auth__switch:hover {
  color: var(--novo-gold);
  text-decoration: underline;
}

.auth__role-select {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.role-option {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 20px;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-normal);
}

.role-option:hover {
  background: rgba(196, 154, 60, 0.05);
  border-color: rgba(196, 154, 60, 0.3);
}

.role-option.active {
  border-color: var(--novo-gold);
  background: rgba(196, 154, 60, 0.1);
}

.role-option__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.role-option__label {
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--novo-white);
}

.role-option__desc {
  font-size: 0.8rem;
  color: var(--novo-text-muted);
}

@media (max-width: 480px) {
  .auth__card { padding: 32px 24px; }
  .auth__role-select { grid-template-columns: 1fr; }
}

/* =========================================
   Dashboard (Shared)
   ========================================= */
.dashboard {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
}

.dashboard__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 24px;
}

.dashboard__title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  margin-bottom: 8px;
}

.dashboard__subtitle {
  color: var(--novo-text-muted);
  font-size: 1.1rem;
}

.dashboard__actions {
  display: flex;
  gap: 16px;
}

.dashboard__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.stat-card {
  background: var(--novo-dark-lighter);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: transform var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(196, 154, 60, 0.1);
  color: var(--novo-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.stat-card__content {
  flex: 1;
}

.stat-card__value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--novo-white);
  line-height: 1.2;
}

.stat-card__label {
  color: var(--novo-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dashboard__filters {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.dashboard__filters::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  background: var(--novo-dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--novo-text-muted);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all var(--transition-normal);
}

.filter-btn:hover {
  background: var(--novo-dark-lighter);
  color: var(--novo-text);
}

.filter-btn.active {
  background: var(--novo-gold);
  border-color: var(--novo-gold);
  color: var(--novo-white);
}

.dashboard__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 24px;
  background: var(--novo-dark-lighter);
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(255, 255, 255, 0.1);
}

.empty-state__icon {
  font-size: 3rem;
  color: var(--novo-text-muted);
  margin-bottom: 24px;
  opacity: 0.5;
}

.empty-state__title {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.empty-state__text {
  color: var(--novo-text-muted);
  margin-bottom: 24px;
}

/* =========================================
   Order Card
   ========================================= */
.order-card {
  background: var(--novo-dark-surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.order-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 255, 255, 0.1);
}

.order-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.order-card__type {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--novo-gold);
  background: rgba(196, 154, 60, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.order-card__date {
  font-size: 0.85rem;
  color: var(--novo-text-muted);
}

.order-card__title {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--novo-white);
}

.order-card__desc {
  color: var(--novo-text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.order-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.order-card__status {
  /* uses .status-badge */
}

.order-card__action {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--novo-text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.order-card__action:hover {
  color: var(--novo-gold);
}

/* =========================================
   Order Form (New Order)
   ========================================= */
.order-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px;
}

.order-form__header {
  margin-bottom: 40px;
}

.order-form__progress {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 48px;
}

.order-form__progress::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}

.order-form__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--novo-text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.order-form__step::before {
  content: '';
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--novo-dark-lighter);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.order-form__step.active {
  color: var(--novo-gold);
}

.order-form__step.active::before {
  border-color: var(--novo-gold);
  background: var(--novo-dark-surface);
  box-shadow: 0 0 0 4px rgba(196, 154, 60, 0.2);
}

.order-form__step.completed {
  color: var(--novo-white);
}

.order-form__step.completed::before {
  background: var(--novo-gold);
  border-color: var(--novo-gold);
  content: '✓';
  color: var(--novo-white);
}

.order-form__body {
  background: var(--novo-dark-surface);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.order-form__section {
  margin-bottom: 40px;
}

.order-form__section:last-child {
  margin-bottom: 0;
}

.order-form__section-title {
  font-size: 1.2rem;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}

.type-card {
  background: var(--novo-dark-lighter);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.type-card:hover {
  background: rgba(196, 154, 60, 0.05);
  border-color: rgba(196, 154, 60, 0.3);
}

.type-card.selected {
  background: rgba(196, 154, 60, 0.1);
  border-color: var(--novo-gold);
  box-shadow: var(--shadow-gold);
}

.type-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.type-card__name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--novo-text);
}

.type-card.selected .type-card__name {
  color: var(--novo-gold);
}

.color-picker {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.color-picker__preset {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--transition-fast);
}

.color-picker__preset:hover {
  transform: scale(1.1);
}

.color-picker__preset.selected {
  border-color: var(--novo-white);
  box-shadow: 0 0 0 2px var(--novo-dark-surface), 0 0 0 4px var(--novo-gold);
}

.color-picker__custom {
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: transparent;
}
.color-picker__custom::-webkit-color-swatch-wrapper { padding: 0; }
.color-picker__custom::-webkit-color-swatch { border: none; border-radius: 50%; }

.size-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
}

.size-option {
  background: var(--novo-dark-lighter);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px;
  border-radius: var(--radius-sm);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 0.9rem;
}

.size-option:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.size-option.selected {
  background: var(--novo-gold);
  color: var(--novo-white);
  border-color: var(--novo-gold);
}

.style-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}

.style-card {
  background: var(--novo-dark-lighter);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px;
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.style-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.style-card.selected {
  background: rgba(196, 154, 60, 0.1);
  border-color: var(--novo-gold);
  color: var(--novo-gold);
}

.order-form__actions {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* =========================================
   Order Detail View
   ========================================= */
.order-detail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
}

.order-detail__header {
  margin-bottom: 32px;
}

.order-detail__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}

@media (max-width: 992px) {
  .order-detail__grid {
    grid-template-columns: 1fr;
  }
}

.detail-card {
  background: var(--novo-dark-surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 32px;
  overflow: hidden;
}

.detail-card__title {
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.detail-card__content {
  padding: 24px;
}

.detail-field {
  margin-bottom: 16px;
}

.detail-field:last-child {
  margin-bottom: 0;
}

.detail-field__label {
  font-size: 0.85rem;
  color: var(--novo-text-muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.detail-field__value {
  font-size: 1rem;
  color: var(--novo-text);
  line-height: 1.5;
}

.timeline {
  position: relative;
  padding-left: 24px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 7px;
  width: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.timeline__item {
  position: relative;
  margin-bottom: 24px;
}

.timeline__item:last-child {
  margin-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: -24px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--novo-dark-surface);
  border: 2px solid var(--novo-gold);
  z-index: 1;
}

.timeline__content {
  background: var(--novo-dark-lighter);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.timeline__date {
  font-size: 0.8rem;
  color: var(--novo-text-muted);
  margin-top: 4px;
  display: block;
}

.assign-section {
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.assign-select {
  width: 100%;
  margin-bottom: 12px;
}

.comment-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comment-form {
  margin-bottom: 24px;
}

.comment {
  background: var(--novo-dark-lighter);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.comment__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.comment__author {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--novo-white);
}

.comment__date {
  font-size: 0.8rem;
  color: var(--novo-text-muted);
}

.comment__text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--novo-text);
}

/* =========================================
   Shared Components
   ========================================= */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  background: transparent;
  color: var(--novo-white);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn--primary {
  background: var(--novo-gold);
  color: var(--novo-white);
  box-shadow: 0 4px 12px rgba(196, 154, 60, 0.2);
}

.btn--primary:hover:not(:disabled) {
  background: var(--novo-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(196, 154, 60, 0.3);
}

.btn--secondary {
  border: 1px solid var(--novo-gold);
  color: var(--novo-gold);
}

.btn--secondary:hover:not(:disabled) {
  background: rgba(196, 154, 60, 0.1);
}

.btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--novo-text);
}

.btn--outline:hover:not(:disabled) {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.btn--danger {
  background: rgba(232, 72, 85, 0.1);
  color: var(--novo-error);
  border: 1px solid rgba(232, 72, 85, 0.2);
}

.btn--danger:hover:not(:disabled) {
  background: var(--novo-error);
  color: var(--novo-white);
}

.btn--small {
  padding: 8px 16px;
  font-size: 0.9rem;
}

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

.btn--full {
  width: 100%;
}

.btn--icon {
  padding: 8px;
  border-radius: 50%;
}

/* Forms */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--novo-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--novo-dark-lighter);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--novo-text);
  font-family: inherit;
  font-size: 1rem;
  transition: all var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--novo-gold);
  background: var(--novo-dark-surface);
  box-shadow: 0 0 0 3px rgba(196, 154, 60, 0.1);
}

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

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

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-hint {
  font-size: 0.8rem;
  color: var(--novo-text-muted);
}

.form-error {
  font-size: 0.85rem;
  color: var(--novo-error);
  margin-top: -16px;
  margin-bottom: 16px;
}

/* Status Badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-badge--neu {
  background: rgba(74, 158, 255, 0.1);
  color: var(--novo-info);
  border: 1px solid rgba(74, 158, 255, 0.2);
}

.status-badge--bearbeitung {
  background: rgba(240, 160, 48, 0.1);
  color: var(--novo-warning);
  border: 1px solid rgba(240, 160, 48, 0.2);
}

.status-badge--review {
  background: rgba(155, 89, 182, 0.1);
  color: #c384e0;
  border: 1px solid rgba(155, 89, 182, 0.2);
}

.status-badge--abgeschlossen {
  background: rgba(52, 199, 123, 0.1);
  color: var(--novo-success);
  border: 1px solid rgba(52, 199, 123, 0.2);
}

.status-badge--storniert {
  background: rgba(232, 72, 85, 0.1);
  color: var(--novo-error);
  border: 1px solid rgba(232, 72, 85, 0.2);
}

/* Modals */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: all var(--transition-normal);
}

.modal.active {
  visibility: visible;
  opacity: 1;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 20, 0.8);
  backdrop-filter: blur(4px);
}

.modal__content {
  position: relative;
  background: var(--novo-dark-surface);
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transform: translateY(20px);
  transition: transform var(--transition-normal);
  z-index: 1;
}

.modal.active .modal__content {
  transform: translateY(0);
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modal__header h3 {
  margin: 0;
  font-size: 1.25rem;
}

.modal__close {
  background: transparent;
  border: none;
  color: var(--novo-text-muted);
  font-size: 1.5rem;
  padding: 4px;
  line-height: 1;
  transition: color var(--transition-fast);
}

.modal__close:hover {
  color: var(--novo-white);
}

.modal__body {
  padding: 24px;
}

.modal__footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* Notifications */
.notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  background: var(--novo-dark-surface);
  color: var(--novo-white);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid transparent;
  z-index: 3000;
  transform: translateX(120%);
  transition: transform var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 400px;
}

.notification.show {
  transform: translateX(0);
}

.notification--success { border-left-color: var(--novo-success); }
.notification--error { border-left-color: var(--novo-error); }
.notification--info { border-left-color: var(--novo-info); }




/* Misc Components */
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--novo-gold);
  color: var(--novo-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
}

.avatar--small {
  width: 32px;
  height: 32px;
  font-size: 0.8rem;
}

.tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--novo-text);
}

.divider {
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  margin: 24px 0;
}

.gold-line {
  height: 2px;
  width: 60px;
  background: var(--novo-gold);
  margin: 16px auto;
}

/* File Upload Styles */
.file-upload {
  margin-top: 1rem;
}

.file-upload__dropzone {
  border: 2px dashed rgba(196, 154, 60, 0.3);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  background: rgba(196, 154, 60, 0.03);
}

.file-upload__dropzone:hover,
.file-upload__dropzone.dragover {
  border-color: var(--novo-gold);
  background: rgba(196, 154, 60, 0.08);
}

.file-upload__icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.file-upload__text {
  color: var(--novo-text);
  margin-bottom: 0.5rem;
}

.file-upload__browse {
  color: var(--novo-gold);
  text-decoration: underline;
  cursor: pointer;
}

.file-upload__hint {
  font-size: 0.8rem;
  color: var(--novo-text-muted);
}

.file-upload__input {
  display: none;
}

.file-upload__list {
  margin-top: 1rem;
}

.file-upload__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--novo-dark-surface);
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
  transition: all var(--transition-fast);
}

.file-upload__item:hover {
  background: var(--novo-dark-lighter);
}

.file-upload__item-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.file-upload__item-icon {
  font-size: 1.5rem;
}

.file-upload__item-name {
  font-weight: 500;
  color: var(--novo-text);
}

.file-upload__item-size {
  font-size: 0.85rem;
  color: var(--novo-text-muted);
}

.file-upload__item-date {
  font-size: 0.8rem;
  color: var(--novo-text-muted);
}

.file-upload__item-remove {
  background: none;
  border: none;
  color: var(--novo-error);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 0.25rem;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.file-upload__item-remove:hover {
  opacity: 1;
}

/* CMS Admin Styles */
.cms-section {
  background: var(--novo-dark-surface);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  margin-bottom: 24px;
  overflow: hidden;
}

.cms-section__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--novo-gold);
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
}

.cms-section__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cms-field__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--novo-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.cms-field__input,
.cms-field__textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--novo-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--novo-white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
}

.cms-field__input:focus,
.cms-field__textarea:focus {
  outline: none;
  border-color: var(--novo-gold);
}

.cms-field__textarea {
  resize: vertical;
  min-height: 80px;
}

.cms-actions {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.cms-actions .btn {
  flex: unset;
}

/* ==========================================
   WordPress-Style Admin Layout (Premium)
   ========================================== */
.wp-admin {
  display: flex;
  min-height: 100vh;
  padding-top: 60px;
  background: #0d1117;
}

/* --- Sidebar --- */
.wp-sidebar {
  width: 260px;
  min-width: 260px;
  background: linear-gradient(180deg, #0a0f1a 0%, #060a12 100%);
  border-right: 1px solid rgba(196, 154, 60, 0.08);
  position: fixed;
  top: 60px;
  left: 0;
  bottom: 0;
  overflow-y: auto;
  z-index: 100;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.wp-sidebar__header {
  padding: 24px 20px 16px;
  border-bottom: 1px solid rgba(196, 154, 60, 0.1);
}

.wp-sidebar__title {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--novo-gold);
  font-weight: 700;
}

.wp-sidebar__menu {
  list-style: none;
  padding: 8px 0;
  margin: 0;
  flex: 1;
}

.wp-sidebar__item {
  display: block;
  margin: 2px 8px;
}

.wp-sidebar__link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  font-weight: 400;
  transition: all 0.25s ease;
  border-radius: 8px;
  border-left: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.wp-sidebar__link:hover {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.04);
}

.wp-sidebar__link.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(196, 154, 60, 0.15) 0%, rgba(196, 154, 60, 0.05) 100%);
  box-shadow: 0 0 0 1px rgba(196, 154, 60, 0.15);
  font-weight: 500;
}

.wp-sidebar__icon {
  font-size: 1.15rem;
  width: 24px;
  text-align: center;
  opacity: 0.85;
}

.wp-sidebar__link.active .wp-sidebar__icon {
  opacity: 1;
}

.wp-sidebar__divider {
  height: 1px;
  background: rgba(255,255,255,0.04);
  margin: 8px 20px;
}

.wp-sidebar__back {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.25s;
  border-top: 1px solid rgba(255,255,255,0.04);
  letter-spacing: 0.02em;
}

.wp-sidebar__back:hover {
  color: var(--novo-gold);
  background: rgba(196, 154, 60, 0.04);
}

/* --- Main Content --- */
.wp-main {
  flex: 1;
  margin-left: 260px;
  padding: 36px 48px;
  min-height: calc(100vh - 60px);
  background: #0d1117;
}

.wp-main__header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.wp-main__title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  letter-spacing: -0.02em;
}

.wp-main__subtitle {
  color: rgba(255,255,255,0.35);
  font-size: 0.9rem;
  margin-top: 6px;
  font-weight: 400;
}

/* --- Dashboard Stats --- */
.wp-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.wp-stat-card {
  background: linear-gradient(145deg, #111827 0%, #0d1117 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
}

.wp-stat-card:hover {
  border-color: rgba(196, 154, 60, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.wp-stat-card__number {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--novo-gold) 0%, #e8c76a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.wp-stat-card__label {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  margin-top: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- CMS Form Overrides --- */
.wp-main .detail-card {
  background: linear-gradient(145deg, #111827 0%, #0f1520 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  transition: border-color 0.3s;
}

.wp-main .detail-card:hover {
  border-color: rgba(255,255,255,0.1);
}

.wp-main .form-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.wp-main .form-input,
.wp-main select.form-input {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  color: #fff;
  padding: 10px 14px;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.wp-main .form-input:focus,
.wp-main select.form-input:focus {
  border-color: var(--novo-gold);
  box-shadow: 0 0 0 3px rgba(196, 154, 60, 0.1);
  outline: none;
  background: rgba(0,0,0,0.5);
}

.wp-main textarea.form-input {
  resize: vertical;
  min-height: 60px;
}

.wp-main .form-group {
  margin-bottom: 16px;
}

.wp-main h4 {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.wp-main .content-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
  user-select: none;
}

.wp-main .content-toggle small {
  opacity: 0.4;
  font-size: 0.75rem;
}

/* --- Buttons in CMS --- */
.wp-main .btn--primary {
  background: linear-gradient(135deg, var(--novo-gold) 0%, #b8892e 100%);
  border: none;
  color: #000;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 0.88rem;
  transition: all 0.25s;
  box-shadow: 0 2px 12px rgba(196, 154, 60, 0.2);
}

.wp-main .btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(196, 154, 60, 0.35);
}

.wp-main .btn--outline {
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  background: transparent;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 0.88rem;
  transition: all 0.25s;
}

.wp-main .btn--outline:hover {
  border-color: var(--novo-gold);
  color: var(--novo-gold);
  background: rgba(196, 154, 60, 0.05);
}

.wp-main .btn--secondary {
  background: rgba(255,80,80,0.1);
  border: 1px solid rgba(255,80,80,0.15);
  color: #ff6b6b;
  border-radius: 8px;
  transition: all 0.25s;
}

.wp-main .btn--secondary:hover {
  background: rgba(255,80,80,0.2);
  border-color: rgba(255,80,80,0.3);
}

.wp-main .btn--small {
  padding: 6px 12px;
  font-size: 0.8rem;
}

/* --- Quick Nav Buttons --- */
.wp-main .quick-nav {
  border-radius: 8px;
  font-weight: 500;
}

/* --- Scrollbar --- */
.wp-sidebar::-webkit-scrollbar {
  width: 4px;
}
.wp-sidebar::-webkit-scrollbar-thumb {
  background: rgba(196, 154, 60, 0.15);
  border-radius: 4px;
}

/* --- Color Picker --- */
.wp-main input[type="color"] {
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  cursor: pointer;
  padding: 2px;
}
.wp-main input[type="color"]::-webkit-color-swatch-wrapper {
  padding: 2px;
}
.wp-main input[type="color"]::-webkit-color-swatch {
  border: none;
  border-radius: 4px;
}

/* --- Range Slider --- */
.wp-main input[type="range"] {
  -webkit-appearance: none;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  outline: none;
  margin: 8px 0;
}
.wp-main input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--novo-gold);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(196, 154, 60, 0.3);
}

/* --- Mobile Sidebar --- */
.wp-sidebar-toggle {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--novo-gold) 0%, #b8892e 100%);
  color: #000;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 200;
  box-shadow: 0 4px 24px rgba(196, 154, 60, 0.3);
  transition: transform 0.2s;
}
.wp-sidebar-toggle:hover {
  transform: scale(1.05);
}

/* --- Novo Text Muted in CMS --- */
.wp-main .novo-text-muted {
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .wp-sidebar {
    transform: translateX(-100%);
  }
  .wp-sidebar.open {
    transform: translateX(0);
  }
  .wp-main {
    margin-left: 0;
    padding: 20px 16px;
  }
  .wp-sidebar-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .wp-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* =========================================
   MOBILE APP EXPERIENCE
   ========================================= */

/* --- Mobile Overlay Menu --- */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(9,15,27,0.97);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-menu-overlay.active {
  display: flex;
  opacity: 1;
}
.mobile-menu-overlay a {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 18px 40px;
  text-decoration: none;
  text-align: center;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s, color 0.2s;
  font-family: var(--font-sans);
}
.mobile-menu-overlay a:hover,
.mobile-menu-overlay a:active {
  background: rgba(196,154,60,0.1);
  color: #c49a3c;
}
.mobile-menu-overlay .mobile-menu-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 32px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-menu-overlay .mobile-menu-cta {
  margin-top: 20px;
  background: var(--novo-gold);
  color: #fff;
  border-radius: 12px;
  width: auto;
  padding: 16px 50px;
  font-size: 1.1rem;
  border: none;
}

@media (max-width: 768px) {
  /* --- Show hamburger, hide desktop links --- */
  .navbar__hamburger { display: block; }
  .navbar__links { display: none !important; }
  .navbar__user { display: none !important; }
  
  /* --- Navbar compact --- */
  .navbar__inner {
    padding: 0 16px;
    height: 60px;
  }
  .navbar__logo-icon {
    height: 36px !important;
  }
  
  /* --- Hero Section App-Style --- */
  .hero-section { min-height: 85vh; }
  .hero-section__content {
    padding: 0 20px;
  }
  .hero-section__logo-img {
    width: 180px !important;
    margin-bottom: 15px;
  }
  .hero-section__headline {
    font-size: 1.6rem !important;
    line-height: 1.3;
  }
  .hero-section__tagline {
    font-size: 1rem;
  }
  .hero-section__actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding: 0 10px;
  }
  .hero-section__actions .btn {
    width: 100%;
    text-align: center;
    padding: 16px 20px;
    font-size: 1rem;
  }
  
  /* --- Sections general --- */
  .dentsu-container {
    padding: 0 20px;
  }
  section { padding: 50px 0 !important; }
  .section-title {
    font-size: 1.6rem !important;
    line-height: 1.3;
  }
  .dentsu-gold-line { margin-bottom: 30px !important; }
  
  /* --- Intro Section --- */
  .intro-section__layout {
    grid-template-columns: 1fr !important;
    gap: 0;
  }
  .intro-section__image {
    max-height: 250px;
    border-radius: 12px;
    overflow: hidden;
  }
  .intro-section__content {
    padding: 30px 20px !important;
  }
  .intro-section__text {
    font-size: 1rem !important;
    line-height: 1.7;
  }
  
  /* --- Quote --- */
  .quote-block {
    font-size: 1.2rem !important;
    padding: 0 10px;
    line-height: 1.6;
  }
  .quote-author { font-size: 0.9rem; }
  
  /* --- Services Grid --- */
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .dentsu-card {
    padding: 24px 20px !important;
    border-radius: 12px;
  }
  .dentsu-card__title { font-size: 1.1rem; }
  .dentsu-card__desc { font-size: 0.9rem; line-height: 1.6; }
  
  /* --- Showcase --- */
  .services-showcase__img {
    height: 220px !important;
  }
  
  /* --- Process --- */
  .process-layout {
    flex-direction: column !important;
    gap: 20px !important;
  }
  .process-step {
    padding: 24px 20px;
    border-radius: 12px;
  }
  .process-step__number { font-size: 2rem; }
  .process-step__title { font-size: 1rem; }
  .process-step__desc { font-size: 0.85rem; }
  
  /* --- CTA Section --- */
  .cta-section__title {
    font-size: 1.4rem !important;
    line-height: 1.3;
  }
  .cta-section__actions {
    flex-direction: column;
    gap: 12px;
  }
  .cta-section__actions .btn {
    width: 100%;
    text-align: center;
    padding: 16px;
  }
  
  /* --- Contact Section --- */
  .contact-section > .dentsu-container > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .contact-section input,
  .contact-section textarea {
    font-size: 16px !important; /* prevents iOS zoom */
  }
  .contact-section iframe {
    height: 200px !important;
  }
  
  /* --- Footer --- */
  .dentsu-footer__inner { padding: 30px 20px; }
  .dentsu-footer__grid {
    flex-direction: column !important;
    gap: 20px !important;
    text-align: center;
  }
  .dentsu-footer__links {
    flex-direction: column;
    gap: 12px;
  }
  .dentsu-footer__links a {
    font-size: 1rem;
    padding: 8px 0;
  }
  .footer-logo-icon { height: 40px !important; }
  
  /* --- Auth Pages --- */
  .auth { padding: 16px; }
  .auth__card {
    padding: 28px 20px !important;
    border-radius: 16px;
  }
  .auth__title { font-size: 1.5rem; }
  
  /* --- Dashboard Mobile --- */
  .dashboard { padding: 20px 16px; padding-top: 80px; }
  .dashboard__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .dashboard__title { font-size: 1.5rem; }
  .order-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
  .order-card { border-radius: 12px; }
  
  /* --- Order Detail Mobile --- */
  .order-detail { padding: 20px 16px; padding-top: 80px; }
  .detail-grid {
    grid-template-columns: 1fr !important;
  }
  
  /* --- Buttons touch friendly --- */
  .btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  /* --- Legal pages mobile --- */
  .legal-page,
  div[style*="max-width:800px"][style*="margin:120px"] {
    margin-top: 80px !important;
    padding: 0 16px !important;
  }

  /* --- CMS Admin Mobile --- */
  .wp-layout { flex-direction: column; }
  .wp-sidebar {
    width: 100%;
    height: auto;
    position: relative;
  }
  .wp-main { margin-left: 0; }
  
  /* --- Smooth scrolling for app feel --- */
  html { scroll-behavior: smooth; }
  
  /* --- No text selection for app feel --- */
  .navbar, .btn, .dentsu-card, .mobile-menu-overlay {
    -webkit-user-select: none;
    user-select: none;
  }
  
  /* --- Safe area for notch devices --- */
  .navbar {
    padding-top: env(safe-area-inset-top, 0);
  }
  body {
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
}

/* Extra small phones */
@media (max-width: 380px) {
  .hero-section__headline { font-size: 1.3rem !important; }
  .hero-section__logo-img { width: 140px !important; }
  .section-title { font-size: 1.3rem !important; }
  .dentsu-card { padding: 20px 16px !important; }
  .navbar__inner { padding: 0 12px; }
}
