/* ============================================
   DORIVQORLAB - MAIN STYLESHEET
   Textured Modern Design System
   ============================================ */


:root {
  --color-bg: #F5F0E8;
  --color-bg-warm: #EDE6D6;
  --color-surface: #FAF7F2;
  --color-dark: #1C1814;
  --color-dark-mid: #2E2820;
  --color-dark-soft: #3D3530;
  --color-text: #2E2820;
  --color-text-muted: #6B5F54;
  --color-text-light: #F5F0E8;
  --color-primary: #8B4513;
  --color-primary-hover: #7A3C11;
  --color-primary-light: #C4763A;
  --color-accent: #D4A853;
  --color-accent-hover: #C09540;
  --color-accent-light: #F0D898;
  --color-border: #D4C9B8;
  --color-border-dark: #4A3F35;

  --shadow-sm: 0 1px 3px rgba(28,24,20,0.08), 0 1px 2px rgba(28,24,20,0.05);
  --shadow-md: 0 4px 12px rgba(28,24,20,0.10), 0 2px 4px rgba(28,24,20,0.06);
  --shadow-lg: 0 10px 30px rgba(28,24,20,0.12), 0 4px 10px rgba(28,24,20,0.08), 0 1px 3px rgba(28,24,20,0.05);
  --shadow-xl: 0 20px 50px rgba(28,24,20,0.16), 0 8px 20px rgba(28,24,20,0.10), 0 2px 6px rgba(28,24,20,0.06);
  --shadow-card-hover: 0 24px 60px rgba(28,24,20,0.20), 0 10px 24px rgba(28,24,20,0.12), 0 3px 8px rgba(28,24,20,0.08);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  --header-h: 72px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}


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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }


.home-hero__noise,
.home-visual-break__noise,
.home-audience__noise,
.home-cta__noise,
.about-hero__noise,
.about-environment__noise,
.about-cta__noise,
.demo-hero__noise,
.contact-hero__noise,
.thanks-hero__noise,
.legal-hero__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.6;
}


h1, h2, h3, h4, h5 {
  font-family: 'Gabarito', sans-serif;
  line-height: 1.15;
  font-weight: 700;
  color: var(--color-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.05rem; font-weight: 600; }

p { line-height: 1.7; color: var(--color-text-muted); }


.global-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(139,69,19,0.10);
  padding: 0.3em 0.9em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.global-label--light {
  color: var(--color-accent-light);
  background: rgba(212,168,83,0.18);
}

.global-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  transition: all var(--transition);
  min-height: 48px;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.global-btn--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.global-btn--primary:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.global-btn--ghost {
  background: transparent;
  color: var(--color-dark);
  border-color: var(--color-dark);
}
.global-btn--ghost:hover {
  background: var(--color-dark);
  color: var(--color-text-light);
}

.global-btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.global-btn--ghost-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

.global-btn--light {
  background: var(--color-accent);
  color: var(--color-dark);
  box-shadow: var(--shadow-md);
}
.global-btn--light:hover {
  background: var(--color-accent-hover);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.global-btn--outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.global-btn--outline-white:hover {
  background: #fff;
  color: var(--color-primary);
}

.global-btn--full { width: 100%; justify-content: center; }


.global-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition);
}

.global-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.global-header__logo { display: flex; align-items: center; flex-shrink: 0; }
.global-header__logo img { transition: opacity var(--transition); }

.global-header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.global-header__link {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition), opacity var(--transition);
  opacity: 0.8;
  position: relative;
}

.global-header__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}

.global-header__link:hover,
.global-header__link.active {
  opacity: 1;
}

.global-header__link:hover::after,
.global-header__link.active::after {
  transform: scaleX(1);
}


.global-header[data-nav-active="light"] .global-header__link {
  color: var(--color-dark);
}
.global-header[data-nav-active="light"] {
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}


.global-header[data-nav-active="dark"] .global-header__link {
  color: var(--color-text-light);
}
.global-header[data-nav-active="dark"] {
  background: rgba(28,24,20,0.75);
  backdrop-filter: blur(12px);
}

.global-header--light .global-header__link { color: var(--color-text-light); }


.global-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.global-header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  transition: all var(--transition);
}

.global-header[data-nav-active="dark"] .global-header__burger span { background: #fff; }
.global-header[data-nav-active="light"] .global-header__burger span { background: var(--color-dark); }


.global-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.global-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.global-mobile-menu__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.12);
  transition: background var(--transition);
}

.global-mobile-menu__close:hover { background: rgba(255,255,255,0.22); }

.global-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.global-mobile-menu__link {
  font-family: 'Gabarito', sans-serif;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  color: #fff;
  opacity: 0.85;
  transition: opacity var(--transition), transform var(--transition);
}

.global-mobile-menu__link:hover { opacity: 1; transform: translateX(8px); }


.home-hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(145deg, var(--color-dark) 0%, var(--color-dark-mid) 50%, #3D2B1F 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.home-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(var(--header-h) + var(--space-xl)) var(--space-lg) var(--space-2xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  width: 100%;
}

.home-hero__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.home-hero__title {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin-bottom: var(--space-md);
}

.home-hero__title em {
  font-style: normal;
  color: var(--color-accent);
  position: relative;
}

.home-hero__sub {
  font-size: 1.05rem;
  color: rgba(245,240,232,0.75);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 480px;
}

.home-hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}


.home-hero__bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}

.home-hero__bento-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.home-hero__bento-card--large {
  grid-column: 1 / -1;
  height: 220px;
  box-shadow: var(--shadow-xl);
}

.home-hero__bento-card--sm {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
}

.home-hero__bento-card--sm i {
  font-size: 1.6rem;
  color: var(--color-accent);
}

.home-hero__bento-card--sm p {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(245,240,232,0.9);
}

.home-hero__bento-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__bento-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.2rem;
  background: linear-gradient(to top, rgba(28,24,20,0.85), transparent);
}

.home-hero__bento-overlay span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-accent-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(245,240,232,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}


.home-intro {
  background: var(--color-accent);
  padding: var(--space-xl) var(--space-lg);
}

.home-intro__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.home-intro__quote {
  font-family: 'Gabarito', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.3;
}


.home-features {
  padding: var(--space-3xl) 0;
  background: var(--color-surface);
}

.home-features__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.home-features__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.home-features__title { margin-bottom: var(--space-sm); }

.home-features__sub {
  max-width: 580px;
  margin: 0 auto;
  font-size: 1rem;
}

.home-features__tabs-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.home-features__tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 0;
}

.home-features__tab {
  padding: 0.7rem 1.3rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-muted);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  transition: all var(--transition);
  position: relative;
  bottom: -2px;
  border: 2px solid transparent;
  border-bottom: none;
  min-height: 44px;
}

.home-features__tab:hover {
  color: var(--color-primary);
  background: rgba(139,69,19,0.06);
}

.home-features__tab.active {
  color: var(--color-primary);
  background: var(--color-surface);
  border-color: var(--color-border);
  border-bottom-color: var(--color-surface);
}

.home-features__panels {
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.home-features__panel {
  display: none;
  grid-template-columns: auto 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.home-features__panel.active { display: grid; }

.home-features__panel-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.home-features__panel-icon i {
  font-size: 1.6rem;
  color: #fff;
}

.home-features__panel-content h3 {
  margin-bottom: var(--space-sm);
  color: var(--color-dark);
}

.home-features__panel-content p {
  margin-bottom: var(--space-sm);
}

.home-features__panel-list {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.home-features__panel-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.home-features__panel-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}


.home-visual-break {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
}

.home-visual-break__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-visual-break__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to right, rgba(28,24,20,0.85) 0%, rgba(28,24,20,0.4) 100%);
  display: flex;
  align-items: center;
  padding: var(--space-lg) var(--space-2xl);
}

.home-visual-break__text {
  max-width: 600px;
}

.home-visual-break__text h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  margin-bottom: var(--space-sm);
}

.home-visual-break__text p {
  color: rgba(245,240,232,0.8);
  font-size: 1.05rem;
}


.home-timeline {
  padding: var(--space-3xl) 0;
  background: var(--color-bg);
}

.home-timeline__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.home-timeline__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.home-timeline__title { margin-top: var(--space-xs); }

.home-timeline__track {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.home-timeline__track::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-accent));
  border-radius: 2px;
}

.home-timeline__item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--space-md);
  padding-bottom: var(--space-xl);
  position: relative;
}

.home-timeline__item:last-child { padding-bottom: 0; }

.home-timeline__marker {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-md), 0 0 0 4px var(--color-bg);
  position: relative;
  z-index: 1;
}

.home-timeline__marker span {
  font-family: 'Gabarito', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
}

.home-timeline__content {
  padding-top: 0.6rem;
}

.home-timeline__date {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.4rem;
}

.home-timeline__content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

.home-timeline__content p { font-size: 0.92rem; }


.home-audience {
  position: relative;
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-mid) 100%);
  overflow: hidden;
}

.home-audience__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.home-audience__title {
  color: #fff;
  margin-bottom: var(--space-md);
}

.home-audience__text p {
  color: rgba(245,240,232,0.75);
  margin-bottom: var(--space-sm);
}

.home-audience__text .global-btn { margin-top: var(--space-md); }

.home-audience__cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.home-audience__card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 100px 1fr;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-md);
}

.home-audience__card:hover {
  box-shadow: var(--shadow-card-hover);
}

.home-audience__card-img {
  width: 100px;
  height: 100%;
  object-fit: cover;
}

.home-audience__card-body {
  padding: var(--space-md);
}

.home-audience__card-body h4 {
  color: #fff;
  margin-bottom: 0.4rem;
}

.home-audience__card-body p {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.7);
}


.home-format {
  padding: var(--space-3xl) 0;
  background: var(--color-surface);
}

.home-format__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.home-format__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.home-format__title { margin-top: var(--space-xs); }

.home-format__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.home-format__item {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow: var(--shadow-sm);
}

.home-format__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.home-format__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.home-format__icon i { font-size: 1.3rem; color: #fff; }

.home-format__item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: var(--color-dark);
}

.home-format__item p { font-size: 0.88rem; }


.home-cta {
  position: relative;
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, #3D2B1F 0%, var(--color-dark) 60%, #1A1210 100%);
  overflow: hidden;
  text-align: center;
}

.home-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.home-cta__title {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: var(--space-sm);
}

.home-cta__sub {
  color: rgba(245,240,232,0.75);
  font-size: 1.05rem;
  margin-bottom: var(--space-lg);
}

.home-cta__actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}


.about-hero {
  position: relative;
  padding: calc(var(--header-h) + var(--space-2xl)) var(--space-lg) var(--space-2xl);
  background: linear-gradient(145deg, var(--color-dark) 0%, #3D2B1F 100%);
  overflow: hidden;
  text-align: center;
}

.about-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.about-hero__title {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-bottom: var(--space-md);
}

.about-hero__sub {
  color: rgba(245,240,232,0.75);
  font-size: 1.1rem;
}


.about-philosophy {
  padding: var(--space-3xl) 0;
  background: var(--color-bg);
}

.about-philosophy__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-philosophy__text h2 { margin-bottom: var(--space-md); }
.about-philosophy__text p { margin-bottom: var(--space-sm); }

.about-philosophy__img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}


.about-method {
  padding: var(--space-3xl) 0;
  background: var(--color-surface);
}

.about-method__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.about-method__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.about-method__title { margin-top: var(--space-xs); }

.about-method__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.about-method__pillar {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-method__pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.about-method__pillar-num {
  font-family: 'Gabarito', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.about-method__pillar h3 { margin-bottom: var(--space-sm); }
.about-method__pillar p { font-size: 0.92rem; margin-bottom: 0.6rem; }


.about-environment {
  position: relative;
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--color-dark-mid) 0%, var(--color-dark) 100%);
  overflow: hidden;
}

.about-environment__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-environment__img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-environment__text h2 { color: #fff; margin-bottom: var(--space-md); }
.about-environment__text p { color: rgba(245,240,232,0.75); margin-bottom: var(--space-sm); }


.about-facilitator {
  padding: var(--space-3xl) 0;
  background: var(--color-bg);
}

.about-facilitator__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.about-facilitator__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.about-facilitator__title { margin-top: var(--space-xs); }

.about-facilitator__content {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.about-facilitator__img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.about-facilitator__text p { margin-bottom: var(--space-sm); }

.about-facilitator__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--space-md);
}

.about-facilitator__tag {
  display: inline-block;
  padding: 0.35em 0.9em;
  border-radius: var(--radius-full);
  background: rgba(139,69,19,0.10);
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(139,69,19,0.2);
}


.about-cta {
  position: relative;
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
  text-align: center;
  overflow: hidden;
}

.about-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.about-cta__inner h2 { color: #fff; margin-bottom: var(--space-sm); }
.about-cta__inner p { color: rgba(245,240,232,0.8); margin-bottom: var(--space-lg); }


.demo-hero {
  position: relative;
  padding: calc(var(--header-h) + var(--space-2xl)) var(--space-lg) var(--space-2xl);
  background: linear-gradient(145deg, var(--color-dark) 0%, #3D2B1F 100%);
  overflow: hidden;
}

.demo-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.demo-hero__title {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: var(--space-md);
}

.demo-hero__sub {
  color: rgba(245,240,232,0.75);
  font-size: 1rem;
  margin-bottom: var(--space-lg);
}

.demo-hero__info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.demo-hero__info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(245,240,232,0.8);
  font-size: 0.9rem;
}

.demo-hero__info-item i {
  color: var(--color-accent);
  width: 18px;
  text-align: center;
}

.demo-hero__img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}


.demo-form-section {
  padding: var(--space-3xl) 0;
  background: var(--color-bg);
}

.demo-form-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.demo-form-section__info h2 { margin-bottom: var(--space-lg); }

.demo-form-section__steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.demo-form-section__step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.demo-form-section__step-num {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: #fff;
  font-family: 'Gabarito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.demo-form-section__step h4 { margin-bottom: 0.3rem; }
.demo-form-section__step p { font-size: 0.88rem; }


.demo-form-section__form-wrap,
.contact-form-section__form-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
}

.demo-form-section__form-wrap h2,
.contact-form-section__form-wrap h2 {
  margin-bottom: var(--space-xs);
}

.demo-form-section__form-note {
  font-size: 0.88rem;
  margin-bottom: var(--space-lg);
}

.demo-form-section__form,
.contact-form-section__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.demo-form-section__field,
.contact-form-section__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.demo-form-section__field label,
.contact-form-section__field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
}

.demo-form-section__field input,
.demo-form-section__field select,
.demo-form-section__field textarea,
.contact-form-section__field input,
.contact-form-section__field select,
.contact-form-section__field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  color: var(--color-text);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 48px;
}

.demo-form-section__field:has(:focus) input,
.demo-form-section__field:has(:focus) select,
.demo-form-section__field:has(:focus) textarea,
.contact-form-section__field:has(:focus) input,
.contact-form-section__field:has(:focus) select,
.contact-form-section__field:has(:focus) textarea {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(139,69,19,0.12);
  outline: none;
}

.demo-form-section__field textarea,
.contact-form-section__field textarea {
  resize: vertical;
  min-height: 120px;
}

.demo-form-section__field--check,
.contact-form-section__field--check { flex-direction: row; align-items: flex-start; }

.demo-form-section__checkbox-label,
.contact-form-section__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  cursor: pointer;
}

.demo-form-section__checkbox-label input,
.contact-form-section__checkbox-label input {
  width: 18px;
  height: 18px;
  min-height: unset;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-primary);
}

.demo-form-section__checkbox-label a,
.contact-form-section__checkbox-label a {
  color: var(--color-primary);
  text-decoration: underline;
}


.contact-hero {
  position: relative;
  padding: calc(var(--header-h) + var(--space-2xl)) var(--space-lg) var(--space-2xl);
  background: linear-gradient(145deg, var(--color-dark) 0%, #3D2B1F 100%);
  overflow: hidden;
  text-align: center;
}

.contact-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.contact-hero__title {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--space-md);
}

.contact-hero__sub {
  color: rgba(245,240,232,0.75);
  font-size: 1.05rem;
}


.contact-form-section {
  padding: var(--space-3xl) 0;
  background: var(--color-bg);
}

.contact-form-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-form-section__details h2 { margin-bottom: var(--space-lg); }

.contact-form-section__detail-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  margin-bottom: var(--space-lg);
}

.contact-form-section__detail-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-form-section__detail-icon i { color: #fff; font-size: 1rem; }

.contact-form-section__detail-item h4 { margin-bottom: 0.3rem; }
.contact-form-section__detail-item p { font-size: 0.9rem; }
.contact-form-section__detail-item a {
  color: var(--color-primary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
}
.contact-form-section__detail-item a:hover { color: var(--color-primary-hover); }


.contact-map-section {
  padding: var(--space-3xl) 0;
  background: var(--color-surface);
}

.contact-map-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-map-section__directions h2 { margin-bottom: var(--space-lg); }

.contact-map-section__transport {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-map-section__transport-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-map-section__transport-item i {
  font-size: 1.2rem;
  color: var(--color-primary);
  width: 24px;
  text-align: center;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-map-section__transport-item h4 { margin-bottom: 0.25rem; }
.contact-map-section__transport-item p { font-size: 0.88rem; }


.thanks-main { flex: 1; }

.thanks-hero {
  position: relative;
  min-height: calc(100vh - var(--header-h) - 200px);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: var(--space-2xl) var(--space-lg);
}

.thanks-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.thanks-hero__icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 2rem;
  color: #fff;
}

.thanks-hero__title {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: var(--space-md);
}

.thanks-hero__sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: var(--space-xl);
}


.legal-hero {
  position: relative;
  padding: calc(var(--header-h) + var(--space-2xl)) var(--space-lg) var(--space-2xl);
  background: linear-gradient(145deg, var(--color-dark) 0%, var(--color-dark-mid) 100%);
  overflow: hidden;
  text-align: center;
}

.legal-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.legal-hero__title {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: var(--space-sm);
}

.legal-hero__meta {
  color: rgba(245,240,232,0.6);
  font-size: 0.88rem;
}

.legal-content {
  padding: var(--space-3xl) 0;
  background: var(--color-bg);
}

.legal-content__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.legal-content__body h2 {
  font-size: 1.3rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-border);
  color: var(--color-dark);
}

.legal-content__body h3 {
  font-size: 1.05rem;
  margin-top: var(--space-md);
  margin-bottom: 0.5rem;
  color: var(--color-dark-soft);
}

.legal-content__body p {
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
  line-height: 1.75;
}

.legal-content__body ul {
  margin: var(--space-sm) 0 var(--space-md) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-content__body ul li {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  padding-left: 1rem;
  position: relative;
}

.legal-content__body ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.legal-content__intro {
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-surface);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-md) var(--space-lg);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: var(--space-xl);
  line-height: 1.75;
}

.legal-content__definition-box {
  background: rgba(212,168,83,0.10);
  border: 1px solid rgba(212,168,83,0.3);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-md) 0;
}

.legal-content__definition-box h4 {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.legal-content__definition-box p {
  font-size: 0.88rem;
  margin-bottom: 0;
  color: var(--color-text-muted);
}

.legal-content__clause-block {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  background: var(--color-surface);
}

.legal-content__clause-block h2 {
  border-bottom: none;
  margin-top: 0;
  font-size: 1.15rem;
}

.legal-content__tech-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.legal-content__tech-box h3 { margin-bottom: var(--space-sm); font-size: 1.05rem; }

.legal-content__cookie-category {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  background: var(--color-surface);
}

.legal-content__cookie-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.legal-content__cookie-header h3 { margin-bottom: 0; font-size: 1.05rem; }

.legal-content__cookie-badge {
  display: inline-block;
  padding: 0.2em 0.7em;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-content__cookie-badge--required {
  background: rgba(139,69,19,0.15);
  color: var(--color-primary);
}

.legal-content__cookie-badge--analytics {
  background: rgba(212,168,83,0.2);
  color: #8B6914;
}

.legal-content__cookie-badge--marketing {
  background: rgba(46,40,32,0.1);
  color: var(--color-dark-soft);
}

.legal-content__cookie-table {
  margin-top: var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  font-size: 0.85rem;
}

.legal-content__cookie-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 0;
}

.legal-content__cookie-row > span {
  padding: 0.6rem 0.8rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

.legal-content__cookie-row:last-child > span { border-bottom: none; }

.legal-content__cookie-row--header > span {
  background: rgba(139,69,19,0.08);
  font-weight: 600;
  color: var(--color-text);
}

code {
  background: rgba(28,24,20,0.08);
  padding: 0.15em 0.5em;
  border-radius: 4px;
  font-size: 0.88em;
  font-family: 'Courier New', monospace;
}

.legal-accent { color: var(--color-primary); }


.global-footer {
  background: var(--color-dark);
  padding: var(--space-2xl) 0 0;
}

.global-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg) var(--space-2xl);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl);
}

.global-footer__logo { margin-bottom: var(--space-sm); }

.global-footer__tagline {
  color: rgba(245,240,232,0.6);
  font-size: 0.88rem;
  margin-bottom: var(--space-md);
}

.global-footer__address {
  color: rgba(245,240,232,0.5);
  font-size: 0.82rem;
  line-height: 1.7;
}

.global-footer__col-title {
  font-family: 'Gabarito', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  margin-bottom: var(--space-md);
}

.global-footer__nav-col nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.global-footer__link {
  color: rgba(245,240,232,0.65);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.global-footer__link:hover { color: var(--color-accent); }

.global-footer__contact-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.global-footer__contact-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(245,240,232,0.65);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.global-footer__contact-link i { color: var(--color-accent); font-size: 0.9rem; }
.global-footer__contact-link:hover { color: var(--color-accent); }

.global-footer__bottom {
  border-top: 1px solid rgba(245,240,232,0.08);
  padding: var(--space-md) var(--space-lg);
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.global-footer__bottom p {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.35);
}

.global-footer__legal-links {
  display: flex;
  gap: var(--space-md);
}

.global-footer__legal-links a {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.35);
  transition: color var(--transition);
}

.global-footer__legal-links a:hover { color: var(--color-accent); }


[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}


body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main { flex: 1; }


@media (max-width: 1100px) {
  .home-format__grid { grid-template-columns: repeat(2, 1fr); }
  .global-footer__inner { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
}

@media (max-width: 900px) {
  .global-header__nav { display: none; }
  .global-header__burger { display: flex; }

  .home-hero__inner { grid-template-columns: 1fr; gap: var(--space-xl); }
  .home-hero__bento { display: grid; }

  .home-audience__inner { grid-template-columns: 1fr; }
  .home-audience__cards { display: grid; grid-template-columns: 1fr 1fr; }

  .about-philosophy__inner { grid-template-columns: 1fr; }
  .about-method__pillars { grid-template-columns: 1fr; }
  .about-environment__inner { grid-template-columns: 1fr; }
  .about-facilitator__content { grid-template-columns: 1fr; }

  .demo-hero__inner { grid-template-columns: 1fr; }
  .demo-form-section__inner { grid-template-columns: 1fr; }

  .contact-form-section__inner { grid-template-columns: 1fr; }
  .contact-map-section__inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root {
    --space-2xl: 4rem;
    --space-3xl: 5rem;
  }

  .home-hero__bento {
    grid-template-columns: 1fr 1fr;
  }

  .home-hero__bento-card--large { grid-column: 1 / -1; height: 160px; }

  .home-features__tabs {
    gap: 0.3rem;
  }

  .home-features__tab {
    font-size: 0.78rem;
    padding: 0.55rem 0.8rem;
  }

  .home-features__panel { grid-template-columns: 1fr; }
  .home-features__panel-icon { width: 52px; height: 52px; }

  .home-format__grid { grid-template-columns: 1fr; }

  .home-audience__cards { grid-template-columns: 1fr; }

  .home-audience__card { grid-template-columns: 80px 1fr; }
  .home-audience__card-img { width: 80px; }

  .home-cta__actions { flex-direction: column; align-items: center; }

  .global-footer__inner { grid-template-columns: 1fr; gap: var(--space-lg); }
  .global-footer__bottom { flex-direction: column; text-align: center; }

  .legal-content__cookie-row { grid-template-columns: 1fr; }
  .legal-content__cookie-row > span { border-right: none; }
}