/* ============================================================
   Verideen Technology — Corporate Website Styles
   Design: Swiss Precision / Corporate Tech
   Colors: #164966 (Deep Teal), #dbe9f2 (Ice Blue), #f14e23 (Orange)
   Fonts: DM Sans (Display), Sora (Body)
   ============================================================ */

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

:root {
  --teal: #164966;
  --teal-dark: #0d2d3f;
  --ice: #dbe9f2;
  --orange: #f14e23;
  --orange-hover: #d9431d;
  --white: #ffffff;
  --bg-light: #f8fbfd;
  --font-display: 'DM Sans', sans-serif;
  --font-body: 'Sora', sans-serif;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--teal);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ---------- UTILITY ---------- */
.text-orange { color: var(--orange); }
.text-white { color: var(--white); }
.text-teal-light { color: rgba(22, 73, 102, 0.7); }
.italic { font-style: italic; }

.accent-line {
  width: 48px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.section-label span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(22, 73, 102, 0.6);
  font-family: var(--font-body);
}
.section-label-light span { color: rgba(255,255,255,0.5); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--teal);
}

.section-subtitle {
  margin-top: 24px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(22, 73, 102, 0.75);
  max-width: 560px;
  font-family: var(--font-body);
}

.section-header-left { max-width: 640px; margin-bottom: 56px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
}
.btn:active { transform: scale(0.97); }

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

.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border: 2px solid rgba(22, 73, 102, 0.2);
}
.btn-outline-teal:hover { border-color: var(--teal); background: rgba(22, 73, 102, 0.05); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

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

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.35s var(--ease-out);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(22, 73, 102, 0.08);
  padding: 10px 0;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo { display: flex; align-items: center; }
.logo-img { height: 36px; width: auto; }
.navbar.scrolled .logo-img { height: 32px; }

.navbar-links {
  display: none;
  gap: 32px;
}
.navbar-links a {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.2s;
}
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.3s var(--ease-out);
}
.navbar-links a:hover::after { width: 100%; }

.navbar-cta {
  display: none;
  padding: 10px 24px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}
.navbar-cta:hover { background: var(--orange-hover); }

@media (min-width: 1024px) {
  .navbar-links { display: flex; }
  .navbar-cta { display: inline-flex; }
}

/* Mobile Toggle */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-toggle span {
  width: 24px; height: 2px;
  background: var(--teal);
  transition: all 0.3s var(--ease-out);
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (min-width: 1024px) {
  .mobile-toggle { display: none; }
}

/* Mobile Menu */
.navbar-links.mobile-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--white);
  padding: 24px;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(22, 73, 102, 0.1);
}

/* ---------- HERO ---------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ice);
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg-img {
  width: 100%; height: 130%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-shape {
  position: absolute;
  border-radius: 2px;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-shape.visible { opacity: 1; }

.shape-1 {
  top: 12%; right: 18%;
  width: 120px; height: 120px;
  border: 2px solid rgba(22, 73, 102, 0.12);
  transform: rotate(15deg);
}
.shape-2 {
  bottom: 20%; right: 8%;
  width: 80px; height: 80px;
  background: rgba(241, 78, 35, 0.08);
  border-radius: 50%;
}
.shape-3 {
  top: 30%; right: 35%;
  width: 60px; height: 60px;
  border: 2px solid rgba(22, 73, 102, 0.08);
  border-radius: 50%;
}
.shape-4 {
  bottom: 35%; left: 5%;
  width: 100px; height: 100px;
  border: 2px solid rgba(22, 73, 102, 0.06);
  transform: rotate(-10deg);
}
.shape-5 {
  top: 15%; left: 12%;
  width: 12px; height: 12px;
  background: var(--orange);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 140px 0 80px;
  max-width: 640px;
}
.hero-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.hero-label span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(22, 73, 102, 0.5);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--teal);
}
.hero-desc {
  margin-top: 28px;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(22, 73, 102, 0.65);
  max-width: 520px;
}
.hero-buttons {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(22, 73, 102, 0.4);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-body);
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---------- ABOUT ---------- */
.about-section {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
}
.about-bg-panel {
  position: absolute;
  top: 0; left: 0;
  width: 45%;
  height: 100%;
  background: var(--bg-light);
}
.about-inner { position: relative; z-index: 2; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 40px;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.about-text {
  margin-top: 32px;
}
.about-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(22, 73, 102, 0.8);
  margin-bottom: 20px;
  font-family: var(--font-body);
}

.about-image {
  position: relative;
}
.about-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-img-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22, 73, 102, 0.15), transparent);
}
.about-deco-1 {
  position: absolute;
  top: -16px; right: -16px;
  width: 80px; height: 80px;
  border: 2px solid rgba(22, 73, 102, 0.1);
}
.about-deco-2 {
  position: absolute;
  bottom: -12px; left: -12px;
  width: 48px; height: 48px;
  background: var(--orange);
  opacity: 0.15;
}

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(22, 73, 102, 0.08);
}
@media (min-width: 768px) {
  .stats-row { grid-template-columns: repeat(4, 1fr); }
}

.stat-card { text-align: center; }
.stat-value, .stat-value-text {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}
.stat-label {
  margin-top: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(22, 73, 102, 0.6);
  font-family: var(--font-body);
}

/* ---------- WHY US ---------- */
.why-section {
  position: relative;
  padding: 96px 0;
  background: var(--teal);
  overflow: hidden;
}
.why-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}
.why-shape-1 { top: 10%; right: 5%; width: 200px; height: 200px; border: 2px solid var(--white); }
.why-shape-2 { bottom: 15%; left: 8%; width: 120px; height: 120px; background: var(--orange); }
.why-shape-3 { top: 40%; right: 25%; width: 60px; height: 60px; border: 2px solid var(--white); }

.why-section .section-title { color: var(--white); }

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 768px) { .advantages-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .advantages-grid { grid-template-columns: repeat(3, 1fr); } }

.advantage-card {
  padding: 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.advantage-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.advantage-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--orange);
}
.advantage-icon svg { width: 22px; height: 22px; }
.advantage-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.advantage-card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
}
.advantage-line {
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.5s var(--ease-out);
}
.advantage-card:hover .advantage-line { width: 100%; }

/* ---------- INDUSTRIES ---------- */
.industries-section {
  position: relative;
  padding: 96px 0;
  background: var(--bg-light);
  overflow: hidden;
}
.industries-shape {
  position: absolute;
  opacity: 0.04;
}
.industries-shape-1 {
  top: 5%; right: 10%;
  width: 180px; height: 180px;
  border: 2px solid var(--teal);
  border-radius: 50%;
}
.industries-shape-2 {
  bottom: 10%; left: 5%;
  width: 100px; height: 100px;
  border: 2px solid var(--teal);
  transform: rotate(45deg);
}

.industries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .industries-grid { grid-template-columns: repeat(4, 1fr); } }

.industry-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(22, 73, 102, 0.06);
  transition: all 0.35s var(--ease-out);
}
.industry-card:hover {
  box-shadow: 0 12px 40px rgba(22, 73, 102, 0.08);
  transform: translateY(-4px);
}
.industry-icon {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--orange);
}
.industry-icon svg { width: 20px; height: 20px; }
.industry-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 8px;
}
.industry-card p {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: rgba(22, 73, 102, 0.7);
  font-family: var(--font-body);
}

/* ---------- PRODUCTS ---------- */
.products-section {
  position: relative;
  padding: 96px 0;
  background: var(--white);
  overflow: hidden;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .product-showcase { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.product-reversed .product-content { order: 1; }
@media (min-width: 1024px) {
  .product-reversed .product-image { order: 0; }
  .product-reversed .product-content { order: 1; }
}

.product-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(22, 73, 102, 0.06);
  line-height: 1;
  margin-bottom: 8px;
}
.product-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 4px;
}
.product-subtitle {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  font-family: var(--font-body);
}
.product-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(22, 73, 102, 0.8);
  margin-bottom: 28px;
  font-family: var(--font-body);
}
.product-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(22, 73, 102, 0.8);
  font-family: var(--font-body);
}
.feature-check {
  width: 20px; height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 73, 102, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--teal);
}
.feature-check svg { width: 12px; height: 12px; }

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(22, 73, 102, 0.04);
  border: 1px solid rgba(22, 73, 102, 0.08);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.05em;
  font-family: var(--font-body);
}
.badge-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.product-image { position: relative; }
.product-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 64px rgba(22, 73, 102, 0.12);
}
.product-img-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.product-img-deco {
  position: absolute;
  bottom: -16px; left: -16px;
  width: 100px; height: 100px;
  border: 2px solid rgba(22, 73, 102, 0.08);
  z-index: -1;
}
.product-img-deco-right {
  left: auto; right: -16px;
}

.product-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 64px 0;
}
.divider-line { flex: 1; height: 1px; background: rgba(22, 73, 102, 0.08); }
.divider-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; opacity: 0.4; }

/* ---------- DEMO ---------- */
.demo-section {
  position: relative;
  padding: 96px 0;
  background: var(--bg-light);
  overflow: hidden;
}
.demo-shape {
  position: absolute;
  opacity: 0.04;
}
.demo-shape-1 { top: 10%; right: 8%; width: 150px; height: 150px; border: 2px solid var(--teal); border-radius: 50%; }
.demo-shape-2 { bottom: 15%; left: 5%; width: 80px; height: 80px; border: 2px solid var(--teal); transform: rotate(45deg); }

.demo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) {
  .demo-grid { grid-template-columns: 1fr 1.2fr; gap: 80px; }
}

.demo-benefits { display: flex; flex-direction: column; gap: 24px; }
.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.benefit-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 73, 102, 0.1);
  color: var(--teal);
  flex-shrink: 0;
}
.benefit-icon svg { width: 18px; height: 18px; }
.benefit-item p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(22, 73, 102, 0.8);
  padding-top: 8px;
  font-family: var(--font-body);
}

.demo-form-wrapper {
  background: var(--white);
  padding: 40px;
  border: 1px solid rgba(22, 73, 102, 0.08);
  box-shadow: 0 16px 48px rgba(22, 73, 102, 0.06);
}
.demo-form { display: flex; flex-direction: column; gap: 16px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group-full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(22, 73, 102, 0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid rgba(22, 73, 102, 0.12);
  background: var(--bg-light);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--teal);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* ---------- FAQ ---------- */
.faq-section {
  position: relative;
  padding: 96px 0;
  background: var(--white);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) {
  .faq-grid { grid-template-columns: 1fr 1.5fr; gap: 80px; }
}
.faq-header-sticky {
  position: sticky;
  top: 100px;
}
.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid rgba(22, 73, 102, 0.08);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--teal);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--orange); }
.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
  color: rgba(22, 73, 102, 0.3);
}
.faq-item.active .faq-chevron { transform: rotate(180deg); color: var(--orange); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}
.faq-item.active .faq-answer {
  max-height: 400px;
  padding-bottom: 20px;
}
.faq-answer p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(22, 73, 102, 0.75);
  max-width: 600px;
  font-family: var(--font-body);
}

/* ---------- CONTACT ---------- */
.contact-section {
  position: relative;
  padding: 96px 0;
  background: var(--bg-light);
}
.offices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .offices-grid { grid-template-columns: repeat(3, 1fr); } }

.office-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid rgba(22, 73, 102, 0.06);
  transition: all 0.35s var(--ease-out);
}
.office-card:hover {
  box-shadow: 0 12px 40px rgba(22, 73, 102, 0.06);
}
.office-flag {
  font-size: 2rem;
  display: block;
  margin-bottom: 16px;
}
.office-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 12px;
}
.office-detail {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}
.office-detail svg {
  width: 14px; height: 14px;
  color: rgba(22, 73, 102, 0.4);
  margin-top: 3px;
  flex-shrink: 0;
}
.office-detail span {
  font-size: 0.875rem;
  color: rgba(22, 73, 102, 0.75);
  font-family: var(--font-body);
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  position: relative;
  padding: 80px 0;
  background: var(--teal);
  overflow: hidden;
}
.cta-bg-img {
  position: absolute;
  inset: 0;
}
.cta-bg-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  max-width: 720px;
  margin: 0 auto;
}
.cta-buttons {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--teal-dark);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; }
}
.footer-logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  font-family: var(--font-body);
}

/* ---------- TOAST ---------- */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  padding: 16px 28px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(22, 73, 102, 0.25);
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.4s var(--ease-out);
  z-index: 9999;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ---------- ANIMATIONS ---------- */
.reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.stagger-item.visible {
  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;
  }
  html { scroll-behavior: auto; }
  .reveal-left, .reveal-right, .stagger-item {
    opacity: 1;
    transform: none;
  }
}

/* ---------- COOKIE CONSENT BANNER ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  padding: 16px;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
}
@media (min-width: 768px) { .cookie-banner { padding: 24px; } }

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner.hiding {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner-inner {
  max-width: 960px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(22, 73, 102, 0.1);
  box-shadow: 0 -8px 40px rgba(22, 73, 102, 0.12);
  overflow: hidden;
}

.cookie-accent-bar {
  height: 2px;
  background: linear-gradient(to right, var(--teal), rgba(22, 73, 102, 0.6), var(--orange));
}

.cookie-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  .cookie-body {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
  }
}

.cookie-main {
  display: flex;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.cookie-icon-wrap {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 73, 102, 0.06);
  flex-shrink: 0;
  margin-top: 2px;
}
.cookie-icon-wrap svg { width: 18px; height: 18px; color: var(--teal); }

.cookie-title {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 6px;
}

.cookie-desc {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.65;
  color: rgba(22, 73, 102, 0.7);
}

.cookie-learn-more {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(22, 73, 102, 0.3);
  cursor: pointer;
  transition: text-decoration-color 0.2s;
}
.cookie-learn-more:hover { text-decoration-color: var(--teal); }

/* Cookie Details Expandable */
.cookie-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s ease, margin 0.4s ease;
  margin-top: 0;
}
.cookie-details.open {
  max-height: 500px;
  opacity: 1;
  margin-top: 16px;
}

.cookie-detail-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: var(--bg-light);
  border: 1px solid rgba(22, 73, 102, 0.05);
  margin-bottom: 10px;
}
.cookie-detail-icon {
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 73, 102, 0.06);
  flex-shrink: 0;
}
.cookie-detail-icon svg { width: 14px; height: 14px; color: var(--teal); }

.cookie-detail-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.cookie-detail-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal);
  display: block;
  margin-bottom: 4px;
}
.cookie-detail-header .cookie-detail-title { margin-bottom: 0; }

.cookie-detail-badge {
  font-size: 0.625rem;
  font-weight: 600;
  color: rgba(22, 73, 102, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 6px;
  background: rgba(22, 73, 102, 0.06);
}

.cookie-detail-desc {
  font-family: var(--font-body);
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(22, 73, 102, 0.6);
}

.cookie-policy-link {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  color: rgba(22, 73, 102, 0.5);
  line-height: 1.6;
  padding-top: 4px;
}
.cookie-policy-link a {
  font-weight: 600;
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(22, 73, 102, 0.3);
}
.cookie-policy-link a:hover { text-decoration-color: var(--teal); }

/* Cookie Buttons */
.cookie-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
@media (max-width: 1023px) {
  .cookie-buttons { justify-content: flex-end; }
}

.cookie-btn {
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  white-space: nowrap;
}
.cookie-btn:active { transform: scale(0.97); }

.cookie-btn-decline {
  background: transparent;
  color: var(--teal);
  border: 1px solid rgba(22, 73, 102, 0.15);
}
.cookie-btn-decline:hover {
  border-color: rgba(22, 73, 102, 0.3);
  background: rgba(22, 73, 102, 0.03);
}

.cookie-btn-accept {
  background: var(--teal);
  color: var(--white);
}
.cookie-btn-accept:hover { background: #1a5578; }


/* ========== DEMO WIZARD STYLES ========== */

.wa-direct-box {
  margin-top: 2.5rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: 2px;
  border: 1px solid rgba(22, 73, 102, 0.08);
  box-shadow: 0 1px 3px rgba(22, 73, 102, 0.04);
}
.wa-direct-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.wa-direct-header span {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: #164966;
}
.wa-icon-circle {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wa-direct-box > p {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(22, 73, 102, 0.6);
  margin-bottom: 0.75rem;
}
.wa-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: #25D366;
  text-decoration: none;
  transition: color 0.2s;
}
.wa-phone-link:hover { color: #1da851; }

.demo-wizard {
  background: #fff;
  padding: 2rem 2.5rem;
  border-radius: 2px;
  box-shadow: 0 25px 50px rgba(22, 73, 102, 0.06);
  border: 1px solid rgba(22, 73, 102, 0.05);
}

.wizard-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.wizard-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.wizard-step > span {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(22, 73, 102, 0.35);
  transition: color 0.3s;
}
.wizard-step.active > span { color: #f14e23; }
.wizard-step.completed > span { color: #164966; }

.wizard-step-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(219, 233, 242, 0.6);
  color: rgba(22, 73, 102, 0.4);
  transition: all 0.3s;
}
.wizard-step.active .wizard-step-circle {
  background: #f14e23;
  color: #fff;
  box-shadow: 0 4px 15px rgba(241, 78, 35, 0.25);
}
.wizard-step.completed .wizard-step-circle {
  background: #164966;
  color: #fff;
}

.wizard-step-line {
  flex: 1;
  height: 2px;
  background: #dbe9f2;
  border-radius: 1px;
  margin: 1.25rem 0.75rem 0;
  overflow: hidden;
}
.wizard-step-line-fill {
  height: 100%;
  width: 0%;
  background: #164966;
  transition: width 0.5s ease-out;
}
.wizard-step-line.filled .wizard-step-line-fill { width: 100%; }

.wizard-panel {
  display: none;
  animation: wizardFadeIn 0.3s ease-out;
}
.wizard-panel.active { display: block; }
@keyframes wizardFadeIn {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}

.wizard-panel-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: #164966;
  margin-bottom: 0.25rem;
}
.wizard-panel-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(22, 73, 102, 0.6);
  margin-bottom: 1.5rem;
}

.product-options { display: flex; flex-direction: column; gap: 0.75rem; }
.product-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border: 2px solid rgba(22, 73, 102, 0.1);
  border-radius: 2px;
  background: #f8fbfd;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  width: 100%;
  font-family: var(--font-body);
}
.product-option:hover {
  border-color: rgba(22, 73, 102, 0.25);
  background: #fff;
}
.product-option.selected {
  border-color: #f14e23;
  background: rgba(241, 78, 35, 0.04);
  box-shadow: 0 4px 15px rgba(241, 78, 35, 0.1);
}
.product-emoji { font-size: 1.5rem; }
.product-info { flex: 1; }
.product-info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: #164966;
  transition: color 0.2s;
}
.product-option.selected .product-info strong { color: #f14e23; }
.product-info small {
  display: block;
  font-size: 0.75rem;
  color: rgba(22, 73, 102, 0.6);
  margin-top: 0.125rem;
}
.product-radio {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  border: 2px solid rgba(22, 73, 102, 0.2);
  flex-shrink: 0;
  transition: all 0.2s;
  position: relative;
}
.product-option.selected .product-radio {
  border-color: #f14e23;
  background: #f14e23;
}
.product-option.selected .product-radio::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}

.wizard-fields { display: flex; flex-direction: column; gap: 1.25rem; }
.wizard-field-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(22, 73, 102, 0.6);
  margin-bottom: 0.5rem;
}

.date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 640px) {
  .date-grid { grid-template-columns: repeat(5, 1fr); }
}
.date-cell {
  padding: 0.625rem 0.25rem;
  border: 1px solid rgba(22, 73, 102, 0.1);
  border-radius: 2px;
  background: #f8fbfd;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.date-cell:hover {
  border-color: rgba(22, 73, 102, 0.25);
  background: #fff;
}
.date-cell.selected {
  border-color: #f14e23;
  background: #f14e23;
  color: #fff;
  box-shadow: 0 4px 12px rgba(241, 78, 35, 0.2);
}
.date-cell .day-name {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(22, 73, 102, 0.5);
}
.date-cell.selected .day-name { color: rgba(255,255,255,0.8); }
.date-cell .day-num {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: #164966;
  line-height: 1.2;
}
.date-cell.selected .day-num { color: #fff; }
.date-cell .day-month {
  font-family: var(--font-body);
  font-size: 0.625rem;
  color: rgba(22, 73, 102, 0.4);
}
.date-cell.selected .day-month { color: rgba(255,255,255,0.7); }

.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
@media (max-width: 640px) {
  .time-grid { grid-template-columns: repeat(3, 1fr); }
}
.time-cell {
  padding: 0.625rem 0.75rem;
  border: 1px solid rgba(22, 73, 102, 0.1);
  border-radius: 2px;
  background: #f8fbfd;
  text-align: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: #164966;
  transition: all 0.2s;
}
.time-cell:hover {
  border-color: rgba(22, 73, 102, 0.25);
  background: #fff;
}
.time-cell.selected {
  border-color: #f14e23;
  background: #f14e23;
  color: #fff;
  box-shadow: 0 4px 12px rgba(241, 78, 35, 0.2);
}

.confirm-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.confirm-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8fbfd;
  border-radius: 2px;
  border: 1px solid rgba(22, 73, 102, 0.08);
}
.confirm-row-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(22, 73, 102, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #164966;
  flex-shrink: 0;
}
.confirm-row-icon svg { width: 15px; height: 15px; }
.confirm-row-text { flex: 1; min-width: 0; }
.confirm-row-label {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(22, 73, 102, 0.45);
}
.confirm-row-value {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: #164966;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 2rem;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}
.btn-whatsapp:hover { background: #1da851; }
.btn-whatsapp:active { transform: scale(0.97); }

.confirm-note {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  text-align: center;
  color: rgba(22, 73, 102, 0.4);
  margin-top: 1rem;
}

.wizard-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(22, 73, 102, 0.08);
}
.wizard-btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: #164966;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 2px;
}
.wizard-btn-back:hover { background: rgba(22, 73, 102, 0.05); }
.wizard-btn-back:disabled {
  color: rgba(22, 73, 102, 0.25);
  cursor: not-allowed;
}
.wizard-btn-back:disabled:hover { background: none; }

.wizard-btn-next {
  padding: 0.75rem 1.5rem !important;
  font-size: 0.875rem !important;
}
.wizard-btn-next:disabled {
  background: rgba(22, 73, 102, 0.1) !important;
  color: rgba(22, 73, 102, 0.3) !important;
  cursor: not-allowed !important;
  box-shadow: none !important;
}

.wizard-nav-confirm {
  text-align: center;
  margin-top: 1rem;
}
.wizard-btn-back-center {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(22, 73, 102, 0.6);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.wizard-btn-back-center:hover { color: #164966; }

@media (max-width: 768px) {
  .demo-wizard { padding: 1.5rem; }
  .wizard-step > span { font-size: 0.5rem; }
  .wizard-step-circle { width: 2rem; height: 2rem; }
}

/* Footer Navigation for SEO */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
}
.footer-nav a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: rgba(255,255,255,0.7);
}
.cta-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 36rem;
  margin: 1rem auto 0;
  text-align: center;
}
