/* ============================================
   HASTAM MOTORS — Enterprise Premium Design System
   Inspirado em: Porsche, Ferrari, Bentley, Rolls-Royce
   Manual da Marca: Atualizado para tons de cinza
   Slogan: "nossa alma é exclusividade"
   ============================================ */

/* ---------- TYPEKIT AREA FONTS ---------- */
@import url("https://use.typekit.net/drr7xbg.css");

/* ---------- CSS RESET PREMIUM ---------- */
*, *::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: 16px;
}

body {
  font-family: 'area-normal', 'Lexend', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ---------- CSS VARIABLES - Manual da Marca HASTAM ---------- */
:root {
  /* === CORES DA MARCA (atualizado para tons de cinza) === */
  --hastam-red: #BB2632;
  --hastam-red-dark: #8B1C26;
  --hastam-gold: #8e8e8e;
  --hastam-gold-light: #b0b0b0;
  --hastam-gold-dark: #6e6e6e;
  --hastam-gold-gradient: linear-gradient(180deg, #b0b0b0 0%, #8e8e8e 100%);

  /* === CORES NEUTRAS === */
  --black: #000000;
  --black-rich: #0A0A0A;
  --black-soft: #121212;
  --black-elevated: #1A1A1A;

  --white: #FFFFFF;
  --white-soft: #FAFAFA;
  --white-warm: #F8F7F5;
  --cream: #F5F3EF;

  /* === CINZAS REFINADOS === */
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E5E5E5;
  --gray-300: #D4D4D4;
  --gray-400: #A3A3A3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;

  /* === CORES SEMÂNTICAS === */
  --text-primary: var(--black);
  --text-secondary: var(--gray-600);
  --text-tertiary: var(--gray-400);
  --text-inverse: var(--white);
  --text-gold: var(--hastam-gold-light);

  --bg-primary: var(--white-warm);
  --bg-secondary: var(--cream);
  --bg-dark: var(--black);
  --bg-elevated: var(--black-elevated);

  --border-light: var(--gray-200);
  --border-dark: var(--gray-800);
  --border-gold: var(--hastam-gold);

  /* === TIPOGRAFIA RESPONSIVA (Area font family) === */
  --font-display: 'area-extended', 'Lexend', sans-serif;
  --font-body: 'area-normal', 'Lexend', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-primary: 'area-extended', 'Lexend', sans-serif;
  --font-secondary: 'area-normal', 'Lexend', sans-serif;

  /* Fluid Typography Scale */
  --text-xs: clamp(0.625rem, 0.5rem + 0.25vw, 0.75rem);
  --text-sm: clamp(0.75rem, 0.7rem + 0.2vw, 0.875rem);
  --text-base: clamp(0.875rem, 0.8rem + 0.2vw, 1rem);
  --text-lg: clamp(1rem, 0.9rem + 0.3vw, 1.125rem);
  --text-xl: clamp(1.125rem, 1rem + 0.4vw, 1.25rem);
  --text-2xl: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem);
  --text-3xl: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  --text-4xl: clamp(1.75rem, 1.4rem + 1.5vw, 2.5rem);
  --text-5xl: clamp(2rem, 1.5rem + 2vw, 3.5rem);
  --text-6xl: clamp(2.5rem, 1.8rem + 3vw, 4.5rem);
  --text-7xl: clamp(3rem, 2rem + 4vw, 6rem);
  --text-8xl: clamp(4rem, 2.5rem + 6vw, 8rem);

  /* === ESPAÇAMENTO FLUIDO (como Porsche) === */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 2.5rem;
  --space-8: 3rem;
  --space-9: 4rem;
  --space-10: 5rem;
  --space-11: 6rem;
  --space-12: 8rem;
  --space-13: 10rem;
  --space-14: 12rem;
  --space-15: 16rem;

  /* === LAYOUT === */
  --container-max: 1440px;
  --container-wide: 1600px;
  --container-narrow: 900px;
  --gutter: clamp(1.5rem, 4vw, 4rem);

  /* === ANIMAÇÕES PREMIUM === */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);

  --duration-fast: 0.15s;
  --duration-normal: 0.3s;
  --duration-slow: 0.5s;
  --duration-slower: 0.8s;
  --duration-slowest: 1.2s;

  /* === EFEITOS === */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-gold: 0 10px 40px rgba(152, 119, 41, 0.3);

  --blur-sm: blur(4px);
  --blur-md: blur(8px);
  --blur-lg: blur(16px);
  --blur-xl: blur(24px);

  /* === BORDAS === */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-2xl: 16px;
  --radius-full: 9999px;

  /* === Z-INDEX SCALE === */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-toast: 500;
  --z-loader: 1000;

  /* === HEADER HEIGHT === */
  --header-height: clamp(4rem, 5vw, 5.5rem);
  --header-height-scrolled: clamp(3.5rem, 4vw, 4.5rem);
}

/* === DARK SECTIONS === */
[data-theme="dark"] {
  --text-primary: var(--white);
  --text-secondary: var(--gray-400);
  --bg-primary: var(--black);
}

/* ---------- UTILITY CLASSES ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- TYPOGRAPHY PREMIUM ---------- */
.font-display {
  font-family: var(--font-display);
}

.font-body {
  font-family: var(--font-body);
}

.text-gold {
  color: var(--hastam-gold-light);
}

.text-gradient-gold {
  background: var(--hastam-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Label Style (como Porsche/Ferrari) */
.label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hastam-gold-light);
}

.label--dark {
  color: var(--text-tertiary);
}

/* ---------- LOADER PREMIUM ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: var(--z-loader);
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 1s var(--ease-premium), opacity 0.5s ease;
}

.loader.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.loader__logo {
  opacity: 0;
  transform: scale(0.9);
  animation: loaderLogoIn 0.8s var(--ease-premium) 0.2s forwards;
}

.loader__logo img {
  height: 48px;
  width: auto;
}

@keyframes loaderLogoIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.loader__bar {
  width: 120px;
  height: 1px;
  background: var(--gray-800);
  margin-top: var(--space-8);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 0.5s ease 0.5s forwards;
}

.loader__progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--hastam-gold-gradient);
  animation: loadProgress 1.5s var(--ease-smooth) 0.6s forwards;
}

@keyframes loadProgress {
  to { width: 100%; }
}

.loader__tagline {
  margin-top: var(--space-6);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-500);
  opacity: 0;
  animation: fadeIn 0.5s ease 0.8s forwards;
}

/* ---------- HEADER ULTRA PREMIUM ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
  padding: 0 var(--gutter);
  background: transparent;
  transition:
    background var(--duration-slow) var(--ease-smooth),
    height var(--duration-slow) var(--ease-smooth),
    backdrop-filter var(--duration-slow) var(--ease-smooth);
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
  opacity: 1;
  transition: opacity var(--duration-slow) var(--ease-smooth);
  pointer-events: none;
}

.header.is-scrolled {
  height: var(--header-height-scrolled);
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: var(--blur-lg);
  -webkit-backdrop-filter: var(--blur-lg);
}

.header.is-scrolled::before {
  opacity: 0;
}

.header__logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.header__logo img {
  height: 36px;
  width: auto;
  transition: transform var(--duration-normal) var(--ease-smooth);
}

.header__logo:hover img {
  transform: scale(1.02);
}

/* Navigation Links - Desktop (como Porsche) */
.header__nav {
  display: none;
  align-items: center;
  gap: var(--space-8);
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .header__nav {
    display: flex;
  }
}

.header__nav-link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--white);
  position: relative;
  padding: var(--space-2) 0;
  transition: color var(--duration-normal) var(--ease-smooth);
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--hastam-gold-light);
  transition: width var(--duration-normal) var(--ease-premium);
}

.header__nav-link:hover {
  color: var(--hastam-gold-light);
}

.header__nav-link:hover::after {
  width: 100%;
}

/* Menu Button */
.header__menu-btn {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--white);
  text-transform: uppercase;
  padding: var(--space-3) 0;
  transition: color var(--duration-normal) var(--ease-smooth);
}

@media (min-width: 1024px) {
  .header__menu-btn span {
    display: none;
  }
}

.header__menu-btn:hover {
  color: var(--hastam-gold-light);
}

.header__menu-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.header__menu-icon span {
  display: block;
  height: 1px;
  background: currentColor;
  transition:
    width var(--duration-normal) var(--ease-smooth),
    transform var(--duration-normal) var(--ease-smooth);
}

.header__menu-icon span:first-child { width: 100%; }
.header__menu-icon span:last-child { width: 60%; }

.header__menu-btn:hover .header__menu-icon span:last-child {
  width: 100%;
}

/* Header Blog Variant */
.header--blog {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: var(--blur-md);
}

.header--blog::before {
  display: none;
}

/* ---------- FULLSCREEN MENU PREMIUM (como Rolls-Royce) ---------- */
.menu {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: var(--black);
  display: flex;
  flex-direction: column;
  padding: var(--gutter);
  transform: translateX(100%);
  transition: transform 0.8s var(--ease-premium);
  overflow-y: auto;
}

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

.menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--gray-800);
}

.menu__logo img {
  height: 36px;
  width: auto;
}

.menu__close {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--gray-400);
  text-transform: uppercase;
  padding: var(--space-3);
  transition: color var(--duration-normal) var(--ease-smooth);
}

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

.menu__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-10) 0;
}

.menu__link {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 300;
  color: var(--white);
  display: inline-block;
  padding: var(--space-3) 0;
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.6s var(--ease-premium),
    transform 0.6s var(--ease-premium),
    color var(--duration-normal) var(--ease-smooth);
}

.menu.is-active .menu__link {
  opacity: 1;
  transform: translateX(0);
}

.menu.is-active .menu__link:nth-child(1) { transition-delay: 0.1s; }
.menu.is-active .menu__link:nth-child(2) { transition-delay: 0.15s; }
.menu.is-active .menu__link:nth-child(3) { transition-delay: 0.2s; }
.menu.is-active .menu__link:nth-child(4) { transition-delay: 0.25s; }
.menu.is-active .menu__link:nth-child(5) { transition-delay: 0.3s; }
.menu.is-active .menu__link:nth-child(6) { transition-delay: 0.35s; }

.menu__link:hover {
  color: var(--hastam-gold-light);
}

.menu__link-number {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--hastam-gold);
  margin-right: var(--space-4);
  vertical-align: super;
}

.menu__footer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid var(--gray-800);
}

@media (min-width: 768px) {
  .menu__footer {
    grid-template-columns: repeat(3, 1fr);
  }
}

.menu__contact-group h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-4);
}

.menu__contact {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--gray-400);
  line-height: 2;
}

.menu__contact a {
  display: block;
  transition: color var(--duration-normal) var(--ease-smooth);
}

.menu__contact a:hover {
  color: var(--hastam-gold-light);
}

/* ---------- HERO SECTION ULTRA PREMIUM ---------- */
.hero {
  position: relative;
  height: 98vh;
  min-height: 600px;
  max-height: 1200px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__video,
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.5);
  transform: scale(1.02);
  animation: heroZoom 25s cubic-bezier(0.23, 1, 0.32, 1) infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.15) 70%, rgba(0,0,0,0.6) 100%);
}

/* Elegant line decoration */
.hero__decoration {
  position: absolute;
  bottom: 15%;
  left: var(--gutter);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.hero__decoration::before {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--hastam-gold-light);
  opacity: 0;
  animation: lineExpand 1s var(--ease-premium) 2.5s forwards;
}

@keyframes lineExpand {
  to { opacity: 0.6; }
}

.hero__decoration-text {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
  opacity: 0;
  animation: fadeIn 0.8s var(--ease-premium) 2.7s forwards;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 var(--gutter);
  max-width: 1000px;
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--hastam-gold-light);
  margin-bottom: var(--space-5);
  opacity: 0;
  transform: translateY(15px);
  animation: fadeUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) 1.2s forwards;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin-bottom: var(--space-5);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s cubic-bezier(0.23, 1, 0.32, 1) 1.5s forwards;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin: 0 auto var(--space-8);
  line-height: 1.7;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) 1.8s forwards;
}

.hero__disclaimer {
  font-family: var(--font-body);
  font-size: 0.48rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  max-width: 540px;
  margin: -1rem auto 2.5rem;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) 2s forwards;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: 30px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: linear-gradient(135deg, #b0b0b0 0%, #a0a0a0 100%);
  border: none;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) 2.1s forwards;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 20px rgba(230, 204, 126, 0.2);
}

.hero__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #0a0a0a;
  transform: translateX(-101%);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero__cta span {
  position: relative;
  z-index: 1;
}

.hero__cta:hover {
  color: #b0b0b0;
  box-shadow: 0 6px 30px rgba(230, 204, 126, 0.25);
}

.hero__cta:hover::before {
  transform: translateX(0);
}

/* Hero Scroll Indicator - Clean Minimal */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) 2.8s forwards;
}

.hero__scroll-text {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.1);
}

.hero__scroll-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, #b0b0b0, transparent);
  animation: scrollLine 2.5s cubic-bezier(0.23, 1, 0.32, 1) infinite;
}

@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* ---------- ANIMATIONS KEYFRAMES ---------- */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

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

/* ---------- STATEMENT SECTION - Clean Enterprise ---------- */
.statement {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 100px var(--gutter);
  background: #FAFAFA;
  position: relative;
  overflow: hidden;
}

/* Decoração sutil */
.statement::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(230,204,126,0.03) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.statement__text {
  max-width: 800px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 300;
  line-height: 1.6;
  text-align: center;
  color: #1a1a1a;
  position: relative;
}

.statement__line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.statement__line.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.statement__line:nth-child(2) {
  transition-delay: 0.1s;
  color: #8e8e8e;
}

/* ---------- DIFERENCIAIS SECTION - Clean Enterprise ---------- */
.diferenciais {
  padding: 100px 0;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}

/* Background pattern sutil */
.diferenciais::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(230,204,126,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.diferenciais__header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.diferenciais__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b0b0b0;
  margin-bottom: 16px;
}

.diferenciais__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.diferenciais__subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
}

.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

@media (max-width: 1024px) {
  .diferenciais__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.diferenciais__item {
  position: relative;
  padding: 40px 32px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.diferenciais__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #b0b0b0, transparent);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.diferenciais__item:hover {
  border-color: rgba(230,204,126,0.2);
  background: rgba(230,204,126,0.03);
}

.diferenciais__item:hover::before {
  opacity: 1;
}

.diferenciais__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 24px;
  color: #b0b0b0;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.diferenciais__item:hover .diferenciais__icon {
  transform: scale(1.05);
}

.diferenciais__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.2;
}

.diferenciais__item-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}

.diferenciais__item-text {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
}

/* ---------- REVELATION SECTION - Clean Enterprise ---------- */
.revelation {
  padding: 80px var(--gutter);
  background: #fff;
  text-align: center;
  position: relative;
}

.revelation__number {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 300;
  background: linear-gradient(135deg, #b0b0b0 0%, #8e8e8e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}

.revelation__caption {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 60px;
}

.revelation__content {
  max-width: 600px;
  margin: 0 auto;
}

.revelation__text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 300;
  line-height: 1.8;
  color: #1a1a1a;
  margin-bottom: 16px;
}

/* ---------- JOURNEY SECTION - Clean Enterprise ---------- */
.journey {
  padding: 100px 0;
  background: #0a0a0a;
  position: relative;
}

.journey__header {
  text-align: center;
  margin-bottom: 24px;
  padding: 0 var(--gutter);
}

.journey__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b0b0b0;
  margin-bottom: 16px;
}

.journey__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.02em;
}

.journey__line {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 48px 0;
}

.journey__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding: 0 var(--gutter);
  margin-bottom: 60px;
}

@media (max-width: 1024px) {
  .journey__steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.journey__step {
  position: relative;
  padding-top: 28px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.journey__step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.journey__step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 1px;
  background: #b0b0b0;
}

.journey__step-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 300;
  color: rgba(230,204,126,0.6);
  line-height: 1;
  margin-bottom: 12px;
}

.journey__step-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 12px;
}

.journey__step-text {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
}

.journey__footer {
  text-align: center;
  padding: 48px var(--gutter) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.journey__highlight {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.02em;
}

.journey__highlight-sub {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

/* ---------- REELS SECTION - Clean Enterprise ---------- */
.reels {
  padding: 100px 0;
  background: #0a0a0a;
  overflow: hidden;
}

.reels__header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 var(--gutter);
}

.reels__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b0b0b0;
  margin-bottom: 16px;
}

.reels__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.reels__subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
}

.reels__gallery {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  padding: 0 var(--gutter);
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .reels__gallery {
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: var(--space-4);
    padding-bottom: var(--space-4);
  }

  .reels__gallery::-webkit-scrollbar {
    display: none;
  }
}

.reels__item {
  position: relative;
  width: 260px;
  aspect-ratio: 9/16;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  background: #111;
  scroll-snap-align: center;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Skeleton loading */
.reels__item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.03) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  z-index: 1;
  opacity: 1;
  transition: opacity var(--duration-normal) ease;
}

.reels__item.is-loaded::before {
  opacity: 0;
  pointer-events: none;
}

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

.reels__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.reels__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reels__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity var(--duration-normal) ease;
}

.reels__item.is-playing .reels__overlay {
  opacity: 0;
}

.reels__play {
  width: 52px;
  height: 52px;
  color: #fff;
  opacity: 0.8;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.reels__item:hover .reels__play {
  transform: scale(1.1);
  opacity: 1;
}

.reels__item.is-playing .reels__play {
  opacity: 0;
  transform: scale(0.8);
}

.reels__cta {
  text-align: center;
  margin-top: 48px;
  padding: 0 var(--gutter);
}

.reels__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.reels__cta-btn:hover {
  border-color: #b0b0b0;
  color: #b0b0b0;
}

.reels__instagram {
  width: 20px;
  height: 20px;
}

/* ---------- STORIES SECTION - Clean Enterprise ---------- */
.stories {
  padding: 100px var(--gutter);
  background: #FAFAFA;
  text-align: center;
  overflow: hidden;
}

.stories__slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  min-height: 220px;
}

.stories__slide {
  opacity: 0;
  position: absolute;
  inset: 0;
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.stories__slide.is-active {
  opacity: 1;
  position: relative;
}

.stories__quote {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: #1a1a1a;
  margin-bottom: 32px;
}

.stories__divider {
  width: 40px;
  height: 1px;
  background: #b0b0b0;
  margin: 0 auto 20px;
}

.stories__author {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.stories__location {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #999;
}

.stories__nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.stories__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.stories__dot:hover {
  background: #bbb;
}

.stories__dot.is-active {
  background: #8e8e8e;
}

/* ---------- ABOUT SECTION - Clean Enterprise ---------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

@media (max-width: 968px) {
  .about {
    grid-template-columns: 1fr;
  }
}

.about__image {
  position: relative;
  overflow: hidden;
}

@media (max-width: 968px) {
  .about__image {
    height: 45vh;
  }
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.about:hover .about__image img {
  transform: scale(1.03);
}

.about__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
  background: #0a0a0a;
}

@media (max-width: 968px) {
  .about__content {
    padding: 60px var(--gutter);
  }
}

.about__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b0b0b0;
  margin-bottom: 16px;
}

.about__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.about__text {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}

.about__cta {
  align-self: flex-start;
  margin-top: 28px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: linear-gradient(135deg, #b0b0b0 0%, #a0a0a0 100%);
  border: none;
  border-radius: 2px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 16px rgba(230, 204, 126, 0.2);
}

.about__cta:hover {
  box-shadow: 0 6px 24px rgba(230, 204, 126, 0.3);
}

/* ---------- ESTOQUE SECTION - Clean Enterprise ---------- */
.estoque {
  padding: 100px 0;
  background: #fff;
  text-align: center;
}

.estoque__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8e8e8e;
  margin-bottom: 16px;
}

.estoque__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.estoque__text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: #666;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.estoque__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: #0a0a0a;
  border: none;
  border-radius: 2px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.estoque__cta:hover {
  background: #8e8e8e;
}

.estoque__cta svg {
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.estoque__cta:hover svg {
  transform: translateX(3px);
}

/* ---------- FOOTER - Clean Enterprise ---------- */
.footer {
  padding: 6rem 4vw 3rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  background: #050505;
}

/* Footer CTA Banner */
.footer__cta-banner {
  background: linear-gradient(135deg, #b0b0b0 0%, #a0a0a0 100%);
  padding: 48px var(--gutter);
  position: relative;
  overflow: hidden;
}

.footer__cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: shimmerBanner 4s ease infinite;
}

@keyframes shimmerBanner {
  100% { transform: translateX(100%); }
}

.footer__cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
}

@media (max-width: 768px) {
  .footer__cta-banner .container {
    flex-direction: column;
    text-align: center;
  }
}

.footer__cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: #0a0a0a;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.footer__cta-text {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(10,10,10,0.7);
}

.footer__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #0a0a0a;
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.footer__cta-btn:hover {
  background: #fff;
  color: #0a0a0a;
}

.footer__cta-btn svg {
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.footer__cta-btn:hover svg {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .footer__cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Footer Main */
.footer__main {
  padding: 64px var(--gutter);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer {
    overflow: visible;
  }
  .footer__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
  }
  .footer__grid > div {
    width: 100%;
    display: block;
  }
  .footer__brand {
    grid-column: auto;
    padding-right: 0;
  }
  .footer__brand img {
    display: block;
    margin: 0 auto;
  }
  .footer__tagline {
    text-align: center;
  }
  .footer__title {
    text-align: center;
  }
  .footer__links {
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .footer__links a:hover {
    transform: none;
  }
  .footer__bottom {
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
}

/* Brand Column */
.footer__brand {
  padding-right: 40px;
}

@media (max-width: 900px) {
  .footer__brand {
    padding-right: 0;
  }
}

.footer__logo {
  height: 40px;
  width: auto;
  margin-bottom: 24px;
}

@media (max-width: 600px) {
  .footer__logo {
    margin: 0 auto 24px;
  }
}

.footer__brand-text {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 300px;
}

@media (max-width: 600px) {
  .footer__brand-text {
    max-width: none;
  }
}

.footer__social {
  display: flex;
  gap: 12px;
}

@media (max-width: 600px) {
  .footer__social {
    justify-content: center;
  }
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  color: rgba(255,255,255,0.5);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__social-link:hover {
  border-color: #b0b0b0;
  color: #b0b0b0;
}

/* Links Columns */
.footer__links-title {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.footer__links-title--mt {
  margin-top: 32px;
}

.footer__links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links-list li {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
}

.footer__links-list a,
.footer__links-list span {
  color: rgba(255,255,255,0.5);
  transition: color 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.footer__links-list a:hover {
  color: #b0b0b0;
}

.footer__contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 600px) {
  .footer__contact-list li {
    justify-content: center;
  }
}

.footer__contact-list svg {
  flex-shrink: 0;
  color: #b0b0b0;
}

/* Footer Bottom */
.footer__bottom {
  padding: 24px var(--gutter);
}

.footer__bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 600px) {
  .footer__bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

.footer__company {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

@media (max-width: 600px) {
  .footer__company {
    align-items: center;
  }
}

.footer__company-name {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}

.footer__cnpj {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.3);
}

.footer__copyright {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}

/* ---------- MODAL PREMIUM ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-slow) var(--ease-smooth);
}

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

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: var(--blur-lg);
  -webkit-backdrop-filter: var(--blur-lg);
}

.modal__container {
  position: relative;
  width: 90%;
  max-width: 500px;
  background: var(--black);
  border: 1px solid var(--gray-800);
  padding: var(--space-10);
  transform: translateY(30px) scale(0.95);
  transition: transform var(--duration-slow) var(--ease-premium);
}

.modal.is-active .modal__container {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color var(--duration-normal) var(--ease-smooth);
}

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

.modal__content {
  text-align: center;
}

.modal__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 300;
  color: var(--white);
  margin-bottom: var(--space-2);
}

.modal__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--gray-400);
  margin-bottom: var(--space-8);
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.modal__input {
  width: 100%;
  padding: var(--space-4) var(--space-5);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--gray-700);
  outline: none;
  transition: border-color var(--duration-normal) var(--ease-smooth);
}

.modal__input::placeholder {
  color: var(--gray-500);
}

.modal__input:focus {
  border-color: var(--hastam-gold-light);
}

.modal__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  width: 100%;
  padding: var(--space-4) var(--space-6);
  margin-top: var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--white);
  background: #25D366;
  border: none;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.modal__submit:hover {
  background: #20bd5a;
  transform: translateY(-2px);
}

.modal__success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-8) 0;
  color: var(--hastam-gold-light);
}

.modal__success.is-visible {
  display: flex;
}

.modal__form.is-hidden {
  display: none;
}

/* ---------- WHATSAPP FLOATING BUTTON ---------- */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-8);
  right: var(--space-8);
  z-index: var(--z-overlay);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-6);
  background: #25D366;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--duration-normal) var(--ease-premium);
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float__icon {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.whatsapp-float__text {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: var(--space-6);
    right: var(--space-6);
    padding: var(--space-4);
    border-radius: var(--radius-full);
  }

  .whatsapp-float__text {
    display: none;
  }
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s var(--ease-premium);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.9s var(--ease-premium);
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s var(--ease-premium);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

/* ---------- REDUCED MOTION ---------- */
@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;
  }

  .hero__video,
  .hero__image {
    animation: none;
    transform: none;
  }
}

/* ---------- PRINT STYLES ---------- */
@media print {
  .header,
  .menu,
  .loader,
  .whatsapp-float,
  .modal {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }
}


/* ============================================
   ENTERPRISE UX/UI PREMIUM ENHANCEMENTS
   Senior Designer Level — Awwwards Quality
   ============================================ */

/* ---------- CUSTOM CURSOR PREMIUM ---------- */
.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 1px solid var(--hastam-gold-light);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease-out, opacity 0.3s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--hastam-gold-light);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.08s ease-out, opacity 0.3s ease;
  transform: translate(-50%, -50%);
}

.cursor.is-hovering {
  width: 50px;
  height: 50px;
  border-color: var(--hastam-gold);
  background: rgba(230, 204, 126, 0.1);
}

.cursor.is-clicking {
  transform: translate(-50%, -50%) scale(0.8);
}

.cursor.is-hidden {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}

@media (hover: none), (pointer: coarse) {
  .cursor, .cursor-dot { display: none; }
}

/* ---------- ENHANCED LINK HOVER EFFECTS ---------- */
a:not(.btn):not(.nav__link):not(.menu__link) {
  position: relative;
}

.text-link {
  position: relative;
  display: inline-block;
  color: var(--hastam-gold);
  transition: color 0.3s ease;
}

.text-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.text-link:hover::after {
  width: 100%;
}

/* ---------- ENHANCED BUTTON MICROINTERACTIONS ---------- */
.btn, button, [role="button"] {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::before {
  width: 300px;
  height: 300px;
}

/* ---------- SCROLL PROGRESS INDICATOR ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--hastam-gold-gradient);
  z-index: 9998;
  transition: width 0.1s linear;
}

/* ---------- SMOOTH SECTION TRANSITIONS ---------- */
section {
  position: relative;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
  transition: width 1s var(--ease-premium);
}

section.is-visible::before {
  width: 80%;
}

/* ---------- IMAGE LOADING EFFECT ---------- */
img {
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

img.is-loaded {
  opacity: 1;
}

.img-wrapper {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
}

.img-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: imageShimmer 1.5s infinite;
}

.img-wrapper.is-loaded::before {
  display: none;
}

@keyframes imageShimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ---------- FOCUS STATES ACCESSIBILITY ---------- */
:focus-visible {
  outline: 2px solid var(--hastam-gold);
  outline-offset: 3px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--hastam-gold);
  outline-offset: 3px;
}

/* ---------- SELECTION STYLES ---------- */
::selection {
  background: var(--hastam-gold);
  color: var(--black);
}

::-moz-selection {
  background: var(--hastam-gold);
  color: var(--black);
}

/* ---------- SCROLLBAR PREMIUM STYLING ---------- */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--hastam-gold-light) 0%, var(--hastam-gold) 100%);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--hastam-gold-light);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--hastam-gold) var(--black);
}

/* ---------- CARD HOVER LIFT EFFECT ---------- */
.card-lift {
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
}

.card-lift:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.15),
    0 8px 16px rgba(0, 0, 0, 0.1);
}

/* ---------- GLASSMORPHISM UTILITY ---------- */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-dark {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ---------- TEXT REVEAL ANIMATION ---------- */
.text-reveal {
  overflow: hidden;
}

.text-reveal span {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.text-reveal.is-visible span {
  transform: translateY(0);
}

/* ---------- MAGNETIC BUTTON EFFECT ---------- */
[data-magnetic] {
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ---------- PARALLAX SECTIONS ---------- */
[data-parallax] {
  will-change: transform;
}

/* ---------- ENTRANCE ANIMATIONS ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230, 204, 126, 0.4); }
  50% { box-shadow: 0 0 0 15px rgba(230, 204, 126, 0); }
}

/* Animation classes */
.animate-fade-up { animation: fadeInUp 0.8s var(--ease-premium) forwards; }
.animate-fade-down { animation: fadeInDown 0.8s var(--ease-premium) forwards; }
.animate-fade-left { animation: fadeInLeft 0.8s var(--ease-premium) forwards; }
.animate-fade-right { animation: fadeInRight 0.8s var(--ease-premium) forwards; }
.animate-scale { animation: scaleIn 0.8s var(--ease-premium) forwards; }
.animate-float { animation: float 3s ease-in-out infinite; }
.animate-pulse-gold { animation: pulse-gold 2s ease-in-out infinite; }

/* Delay utilities */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }

/* ---------- SMOOTH NUMBER COUNTER ---------- */
.counter {
  font-variant-numeric: tabular-nums;
}

/* ---------- GRAIN TEXTURE OVERLAY ---------- */
.grain-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* ---------- HOVER UNDERLINE ANIMATION ---------- */
.hover-underline {
  position: relative;
}

.hover-underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.hover-underline:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ---------- STAGGER REVEAL IMPROVED ---------- */
.stagger-reveal > * {
  opacity: 0;
  transform: translateY(30px);
}

.stagger-reveal.is-visible > * {
  animation: fadeInUp 0.6s var(--ease-premium) forwards;
}

.stagger-reveal.is-visible > *:nth-child(1) { animation-delay: 0s; }
.stagger-reveal.is-visible > *:nth-child(2) { animation-delay: 0.1s; }
.stagger-reveal.is-visible > *:nth-child(3) { animation-delay: 0.2s; }
.stagger-reveal.is-visible > *:nth-child(4) { animation-delay: 0.3s; }
.stagger-reveal.is-visible > *:nth-child(5) { animation-delay: 0.4s; }
.stagger-reveal.is-visible > *:nth-child(6) { animation-delay: 0.5s; }
.stagger-reveal.is-visible > *:nth-child(7) { animation-delay: 0.6s; }
.stagger-reveal.is-visible > *:nth-child(8) { animation-delay: 0.7s; }

/* ---------- TOOLTIP PREMIUM ---------- */
[data-tooltip] {
  position: relative;
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  padding: 8px 16px;
  background: var(--black);
  color: var(--white);
  font-size: var(--text-xs);
  white-space: nowrap;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
}

[data-tooltip]:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-8px);
}

/* ---------- ENHANCED FORM INPUTS ---------- */
input, textarea, select {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--hastam-gold);
  box-shadow: 0 0 0 3px rgba(230, 204, 126, 0.1);
}

/* ---------- SKELETON LOADING ---------- */
.skeleton {
  background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}

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

/* ---------- BADGE STYLES ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  background: rgba(230, 204, 126, 0.1);
  color: var(--hastam-gold);
  border: 1px solid rgba(230, 204, 126, 0.2);
}

.badge--dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--gray-800);
}

/* ============================================
   HOMEPAGE-STYLE NAV FOR ARTICLE PAGES
   ============================================ */
nav.nav,
nav#nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important;
  height: 70px !important;
  max-height: 70px !important;
  padding: 0 4vw !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: calc(3rem + 35px) !important;
  background: #141414 !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border-bottom: 1px solid rgba(255,255,255,0.05) !important;
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  width: auto !important;
}
.nav__logo {
  font-family: 'area-extended', 'Lexend', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  display: flex !important;
  align-items: center !important;
}
.nav__logo img,
nav.nav .nav__logo img,
nav#nav .nav__logo img {
  display: block !important;
  height: 34px !important;
  width: auto !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.nav__links {
  display: flex;
  gap: calc(3rem + 35px);
}
.nav__link,
nav.nav .nav__link,
nav#nav .nav__link {
  font-size: 12px !important;
  font-weight: 400 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  opacity: 0.5 !important;
  transition: opacity 0.4s !important;
  position: relative !important;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%; height: 1px;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}
.nav__link:hover,
nav.nav .nav__link:hover,
nav#nav .nav__link:hover {
  opacity: 1 !important;
  color: #ffffff !important;
}
.nav__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav__toggle {
  display: none;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  background: none !important;
  border: none !important;
  cursor: pointer;
  padding: 0;
}
.nav__toggle span {
  width: 24px; height: 1px;
  background: var(--white);
  transition: 0.4s var(--ease-smooth);
}
@media(max-width: 900px) {
  nav.nav,
  nav#nav {
    justify-content: space-between !important;
  }
  .nav__links { display: none !important; }
  .nav__toggle { display: flex !important; }
}

/* ============================================
   HOMEPAGE-STYLE FOOTER FOR ARTICLE PAGES
   ============================================ */
footer.footer {
  padding: 6rem 4vw 3rem !important;
  border-top: 1px solid rgba(255,255,255,0.04) !important;
  background: #050505 !important;
}
footer.footer .footer__grid {
  display: grid !important;
  grid-template-columns: 2.5fr 1fr 1fr 1fr 1fr !important;
  gap: 4rem !important;
  margin-bottom: 5rem !important;
}
footer.footer .footer__brand {
  margin-bottom: 1rem !important;
}
footer.footer .footer__brand img {
  display: block !important;
  height: 52px !important;
  width: auto !important;
  max-width: 200px !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media(max-width: 900px) {
  footer.footer .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 600px) {
  footer.footer .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  footer.footer .footer__links {
    align-items: center;
  }
  footer.footer .footer__bottom {
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
}
footer.footer .footer__tagline {
  font-size: 15px;
  font-style: italic;
  color: rgba(255,255,255,0.3);
}
footer.footer .footer__title {
  font-family: 'area-normal', 'Lexend', sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
footer.footer .footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
footer.footer .footer__links a {
  font-family: 'area-normal', 'Lexend', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s, transform 0.3s;
  display: inline-block;
}
footer.footer .footer__links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}
footer.footer .footer__links--social a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
footer.footer .footer__links--social svg {
  flex-shrink: 0;
}
footer.footer .footer__bottom {
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
footer.footer .footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}

/* ============================================
   HOMEPAGE-STYLE NEWSLETTER FOR ARTICLE PAGES
   ============================================ */
section.newsletter {
  padding: 100px 6vw;
  text-align: center;
  position: relative;
  background: #141414;
}
section.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(142,142,142,0.035) 0%, transparent 60%);
}
section.newsletter .newsletter__content {
  position: relative;
  z-index: 1;
}
section.newsletter .newsletter__title {
  font-family: 'area-extended', 'Lexend', sans-serif;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 500;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 2.5rem;
}
section.newsletter .newsletter__title span {
  font-style: italic;
  font-weight: 900;
  color: #b0b0b0;
}
section.newsletter .newsletter__desc {
  font-family: 'area-normal', 'Lexend', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #8e8e8e;
  max-width: 520px;
  margin: 0 auto 4rem;
  line-height: 1.85;
}
section.newsletter .newsletter__form {
  display: flex;
  gap: 1rem;
  max-width: 520px;
  margin: 0 auto;
}
section.newsletter .newsletter__input {
  flex: 1;
  padding: 1.25rem 1.75rem;
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 15px;
  color: var(--white);
  font-family: 'area-normal', 'Lexend', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  outline: none;
  transition: border-color 0.4s var(--ease-smooth);
}
section.newsletter .newsletter__input:focus {
  border-color: #8e8e8e;
}
section.newsletter .newsletter__input::placeholder {
  color: rgba(255,255,255,0.25);
}
section.newsletter .newsletter__btn {
  padding: 1.25rem 2.5rem;
  background: #8e8e8e;
  border: none;
  border-radius: 15px;
  color: var(--black);
  font-family: 'area-normal', 'Lexend', sans-serif;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.5s var(--ease-smooth);
}
section.newsletter .newsletter__btn:hover {
  background: #b0b0b0;
}
@media(max-width: 600px) {
  section.newsletter .newsletter__form { flex-direction: column; }
}

/* ============================================
   HOMEPAGE-STYLE WHATSAPP FOR ARTICLE PAGES
   ============================================ */
a.whatsapp,
a.whatsapp.magnetic {
  position: fixed !important;
  bottom: 2rem !important;
  right: 2rem !important;
  left: auto !important;
  top: auto !important;
  z-index: 999 !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  padding: 1rem 1.5rem !important;
  background: #151515 !important;
  border-radius: 20px !important;
  color: #25D366 !important;
  font-family: 'area-normal', 'Lexend', sans-serif !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.05em !important;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3) !important;
  transition: all 0.4s ease !important;
  width: auto !important;
  height: auto !important;
  max-width: none !important;
  text-align: left !important;
}
a.whatsapp:hover,
a.whatsapp.magnetic:hover {
  background: #25D366 !important;
  color: #ffffff !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 15px 50px rgba(37,211,102,0.35) !important;
}
a.whatsapp svg,
a.whatsapp.magnetic svg {
  width: 22px !important;
  height: 22px !important;
  fill: currentColor !important;
}
a.whatsapp span,
a.whatsapp.magnetic span { display: none !important; }
@media(min-width: 768px) {
  a.whatsapp span,
  a.whatsapp.magnetic span { display: block !important; }
}
@media(max-width: 768px) {
  a.whatsapp,
  a.whatsapp.magnetic { display: none !important; }
}

/* Mobile nav for article pages */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 0.5rem 0.75rem;
  padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
}
@media(max-width: 768px) {
  .mobile-nav { display: flex; justify-content: space-around; }
  footer.footer { padding-bottom: 6rem; }
}
.mobile-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
.mobile-nav__item:hover { color: #ffffff; }
.mobile-nav__item--whatsapp { color: #25D366; }
.mobile-nav__whatsapp-icon {
  width: 44px; height: 44px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -20px;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
}
.mobile-nav__whatsapp-icon svg { fill: #ffffff; }

/* ============================================
   MOBILE MENU - MATCHING INDEX.HTML (clip-path)
   ============================================ */
div.menu,
#menu {
  position: fixed !important;
  inset: 0 !important;
  z-index: 10001 !important;
  background: #050505 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: 4rem !important;
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%) !important;
  transition: clip-path 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
  transform: none !important;
}
div.menu.active,
#menu.active {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
  transform: none !important;
}
div.menu .menu__close,
#menu .menu__close {
  position: absolute !important;
  top: 1.5rem !important;
  right: 4vw !important;
  width: 50px !important;
  height: 50px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0 !important;
}
div.menu .menu__close span,
#menu .menu__close span {
  position: absolute !important;
  width: 24px !important;
  height: 1px !important;
  background: #ffffff !important;
}
div.menu .menu__close span:first-child,
#menu .menu__close span:first-child {
  transform: rotate(45deg) !important;
}
div.menu .menu__close span:last-child,
#menu .menu__close span:last-child {
  transform: rotate(-45deg) !important;
}
div.menu .menu__list,
#menu .menu__list {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.25rem !important;
}
div.menu .menu__link,
#menu .menu__link {
  font-family: 'area-extended', 'Lexend', sans-serif !important;
  font-size: clamp(3rem, 12vw, 7rem) !important;
  font-weight: 400 !important;
  color: #ffffff !important;
  line-height: 1.1 !important;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1) !important;
  transform: translateX(100px) !important;
  opacity: 0 !important;
  padding: 0 !important;
}
div.menu.active .menu__link,
#menu.active .menu__link {
  transform: translateX(0) !important;
  opacity: 1 !important;
}
div.menu.active .menu__link:nth-child(1),
#menu.active .menu__link:nth-child(1) { transition-delay: 0.15s !important; }
div.menu.active .menu__link:nth-child(2),
#menu.active .menu__link:nth-child(2) { transition-delay: 0.2s !important; }
div.menu.active .menu__link:nth-child(3),
#menu.active .menu__link:nth-child(3) { transition-delay: 0.25s !important; }
div.menu.active .menu__link:nth-child(4),
#menu.active .menu__link:nth-child(4) { transition-delay: 0.3s !important; }
div.menu.active .menu__link:nth-child(5),
#menu.active .menu__link:nth-child(5) { transition-delay: 0.35s !important; }
div.menu .menu__link:hover,
#menu .menu__link:hover {
  transform: translateX(20px) !important;
}
div.menu .menu__footer,
#menu .menu__footer {
  position: absolute !important;
  bottom: 2rem !important;
  left: 4rem !important;
  right: 4rem !important;
  display: flex !important;
  justify-content: space-between !important;
  font-size: 12px !important;
  color: rgba(255,255,255,0.3) !important;
  letter-spacing: 0.1em !important;
  padding: 0 !important;
  border: none !important;
  grid-template-columns: unset !important;
}

/* ============================================
   GLOBAL OVERFLOW FIX FOR MOBILE
   ============================================ */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }

  .article-body,
  .article-content,
  .article-layout,
  .container {
    max-width: 100vw !important;
    overflow-x: hidden !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    box-sizing: border-box !important;
  }

  .article-body *,
  .article-content * {
    max-width: 100% !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }
}
