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

:root {
  --color-bg-deep: #080c14;
  --color-bg-dark: #0d1321;
  --color-bg-card: #131a2b;
  --color-bg-light: #f7f3ed;
  --color-bg-cream: #efe8dc;
  --color-accent: #c9915e;
  --color-accent-light: #e3b98a;
  --color-accent-glow: rgba(201, 145, 94, 0.15);
  --color-text-light: #f0ece4;
  --color-text-muted: #8a92a6;
  --color-text-dark: #1a1a2e;
  --color-text-body: #3d3d56;
  --color-border: rgba(201, 145, 94, 0.2);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--color-bg-deep);
  color: var(--color-text-light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── Noise overlay ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ─── Typography ─── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* ─── Scroll reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}

.nav.scrolled {
  background: rgba(8, 12, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 3rem;
  border-bottom: 1px solid var(--color-border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--color-text-light);
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  position: relative;
}

.nav-logo-icon svg {
  width: 100%;
  height: 100%;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.nav-logo-text span {
  color: var(--color-accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.3s var(--ease-out-expo);
}

.nav-links a:hover {
  color: var(--color-accent-light);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.65rem 1.75rem;
  background: transparent;
  border: 1px solid var(--color-accent);
  color: var(--color-accent-light) !important;
  border-radius: 100px;
  font-size: 0.8rem !important;
  letter-spacing: 0.08em !important;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease !important;
}

.nav-cta:hover {
  background: var(--color-accent);
  color: var(--color-bg-deep) !important;
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-light);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Language switcher */
.lang-switch {
  display: flex;
  gap: 2px;
  background: rgba(201, 145, 94, 0.08);
  border: 1px solid rgba(201, 145, 94, 0.15);
  border-radius: 8px;
  padding: 2px;
  margin-left: 1.5rem;
}

.lang-btn {
  padding: 0.3rem 0.6rem;
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s ease, color 0.3s ease;
}

.lang-btn.active {
  background: var(--color-accent);
  color: var(--color-bg-deep);
}

.lang-btn:hover:not(.active) {
  color: var(--color-accent-light);
}

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8rem 3rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Radial gradient orbs */
.hero-bg::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 145, 94, 0.08) 0%, transparent 70%);
  animation: float-slow 20s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100, 130, 200, 0.05) 0%, transparent 70%);
  animation: float-slow 25s ease-in-out infinite reverse;
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.02); }
  66% { transform: translate(-20px, 15px) scale(0.98); }
}

/* Grid lines background */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 145, 94, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 145, 94, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 2.5rem;
  background: var(--color-accent-glow);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--color-text-light);
  margin-bottom: 1.75rem;
  line-height: 1.05;
}

.hero-title em {
  font-style: italic;
  color: var(--color-accent);
  position: relative;
}

.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 0.08em;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0.4;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-weight: 400;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--color-accent) 0%, #b07a42 100%);
  color: var(--color-bg-deep);
  border: none;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(201, 145, 94, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 145, 94, 0.35);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

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

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid rgba(138, 146, 166, 0.2);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
}

.btn-ghost:hover {
  color: var(--color-text-light);
  border-color: rgba(138, 146, 166, 0.4);
}

/* Hero floating metrics */
.hero-metrics {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(201, 145, 94, 0.1);
}

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

.hero-metric-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-accent-light);
  line-height: 1;
}

.hero-metric-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   LOGO STRIP
   ═══════════════════════════════════════════ */
.logo-strip {
  padding: 4rem 3rem;
  border-top: 1px solid rgba(201, 145, 94, 0.06);
  border-bottom: 1px solid rgba(201, 145, 94, 0.06);
  text-align: center;
}

.logo-strip-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  font-weight: 600;
}

.logo-strip-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  opacity: 0.4;
}

.logo-strip-logos span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════
   FEATURES SECTION
   ═══════════════════════════════════════════ */
.features {
  padding: 8rem 3rem;
  position: relative;
}

.section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
  max-width: 600px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 4rem;
}

.features-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(201, 145, 94, 0.08);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: transform 0.4s var(--ease-out-expo), border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 145, 94, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-accent-glow);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-card h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   SHOWCASE SECTION
   ═══════════════════════════════════════════ */
.showcase {
  padding: 6rem 3rem 8rem;
  position: relative;
}

.showcase-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 8rem;
}

.showcase-item:last-child {
  margin-bottom: 0;
}

.showcase-item.reverse {
  direction: rtl;
}

.showcase-item.reverse > * {
  direction: ltr;
}

.showcase-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-bg-card);
  border: 1px solid rgba(201, 145, 94, 0.1);
}

.showcase-visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* Dashboard mockup */
.mock-dashboard {
  width: 100%;
  height: 100%;
  background: var(--color-bg-dark);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mock-topbar {
  height: 36px;
  background: rgba(201, 145, 94, 0.05);
  border-bottom: 1px solid rgba(201, 145, 94, 0.08);
  display: flex;
  align-items: center;
  padding: 0 1rem;
  gap: 6px;
}

.mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201, 145, 94, 0.3);
}

.mock-dot:nth-child(1) { background: #ff5f57; }
.mock-dot:nth-child(2) { background: #febc2e; }
.mock-dot:nth-child(3) { background: #28c840; }

.mock-body {
  flex: 1;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
}

.mock-sidebar {
  background: rgba(201, 145, 94, 0.03);
  border-right: 1px solid rgba(201, 145, 94, 0.06);
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mock-nav-item {
  height: 28px;
  border-radius: 6px;
  padding: 0 0.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.mock-nav-item.active {
  background: var(--color-accent-glow);
  color: var(--color-accent);
}

.mock-nav-icon {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: rgba(138, 146, 166, 0.15);
}

.mock-nav-item.active .mock-nav-icon {
  background: rgba(201, 145, 94, 0.3);
}

.mock-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mock-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.mock-stat {
  background: rgba(201, 145, 94, 0.04);
  border: 1px solid rgba(201, 145, 94, 0.06);
  border-radius: 8px;
  padding: 0.75rem;
}

.mock-stat-label {
  font-size: 0.55rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.mock-stat-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-accent-light);
  font-weight: 600;
}

.mock-chart {
  flex: 1;
  background: rgba(201, 145, 94, 0.03);
  border: 1px solid rgba(201, 145, 94, 0.06);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  min-height: 100px;
}

.mock-chart-bars {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60%;
}

.mock-bar {
  flex: 1;
  background: linear-gradient(to top, var(--color-accent), rgba(201, 145, 94, 0.3));
  border-radius: 3px 3px 0 0;
  min-height: 10%;
  animation: bar-grow 1.5s var(--ease-out-expo) forwards;
  transform-origin: bottom;
  transform: scaleY(0);
}

@keyframes bar-grow {
  to { transform: scaleY(1); }
}

.mock-bar:nth-child(1) { height: 45%; animation-delay: 0.1s; }
.mock-bar:nth-child(2) { height: 72%; animation-delay: 0.15s; }
.mock-bar:nth-child(3) { height: 58%; animation-delay: 0.2s; }
.mock-bar:nth-child(4) { height: 85%; animation-delay: 0.25s; }
.mock-bar:nth-child(5) { height: 63%; animation-delay: 0.3s; }
.mock-bar:nth-child(6) { height: 91%; animation-delay: 0.35s; }
.mock-bar:nth-child(7) { height: 76%; animation-delay: 0.4s; }
.mock-bar:nth-child(8) { height: 54%; animation-delay: 0.45s; }

/* Calendar mockup */
.mock-calendar {
  width: 100%;
  height: 100%;
  background: var(--color-bg-dark);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mock-cal-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(201, 145, 94, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mock-cal-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.mock-cal-nav {
  display: flex;
  gap: 4px;
}

.mock-cal-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid rgba(201, 145, 94, 0.15);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.7rem;
}

.mock-cal-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 80px repeat(7, 1fr);
  grid-template-rows: 32px repeat(5, 1fr);
}

.mock-cal-day-header {
  font-size: 0.6rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(201, 145, 94, 0.05);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mock-cal-room-label {
  font-size: 0.6rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  border-right: 1px solid rgba(201, 145, 94, 0.05);
  border-bottom: 1px solid rgba(201, 145, 94, 0.03);
  font-weight: 500;
}

.mock-cal-cell {
  border-right: 1px solid rgba(201, 145, 94, 0.03);
  border-bottom: 1px solid rgba(201, 145, 94, 0.03);
  position: relative;
  min-height: 36px;
}

.mock-booking-bar {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 22px;
  border-radius: 4px;
  font-size: 0.5rem;
  color: white;
  display: flex;
  align-items: center;
  padding: 0 6px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  z-index: 1;
}

.mock-booking-bar.booked {
  background: linear-gradient(135deg, var(--color-accent), #b07a42);
  left: 0;
  right: -100%;
}

.mock-booking-bar.checkedin {
  background: linear-gradient(135deg, #28c840, #1e9e33);
  left: -50%;
  right: 0;
}

.mock-booking-bar.reserved {
  background: linear-gradient(135deg, #5b7fe8, #4263c4);
  left: 20%;
  right: -80%;
}

/* ═══════════════════════════════════════════
   LIGHT SECTION (Integrations)
   ═══════════════════════════════════════════ */
.section-light {
  background: var(--color-bg-light);
  color: var(--color-text-dark);
  padding: 8rem 3rem;
  position: relative;
  overflow: hidden;
}

.section-light::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 145, 94, 0.08) 0%, transparent 60%);
}

.section-light .section-title {
  color: var(--color-text-dark);
}

.section-light .section-subtitle {
  color: var(--color-text-body);
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.integration-card {
  background: white;
  border: 1px solid rgba(201, 145, 94, 0.12);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
  position: relative;
}

.integration-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.integration-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.integration-icon.channel { background: #eef2ff; color: #5b7fe8; }
.integration-icon.fiscal { background: #fef3e7; color: var(--color-accent); }
.integration-icon.email { background: #edfcf0; color: #28c840; }
.integration-icon.payment { background: #f3eeff; color: #8b5cf6; }

.integration-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

.integration-card p {
  font-size: 0.85rem;
  color: var(--color-text-body);
  line-height: 1.65;
}

.integration-tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.integration-tag.active { background: #edfcf0; color: #1e9e33; }
.integration-tag.ready { background: #eef2ff; color: #5b7fe8; }

/* ═══════════════════════════════════════════
   TESTIMONIAL SECTION
   ═══════════════════════════════════════════ */
.testimonials {
  padding: 8rem 3rem;
  position: relative;
}

.testimonials-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  text-align: center;
  padding: 3rem 2rem;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: italic;
  color: var(--color-text-light);
  line-height: 1.5;
  margin-bottom: 2.5rem;
  position: relative;
}

.testimonial-quote::before {
  content: '\201C';
  position: absolute;
  top: -0.5em;
  left: 50%;
  transform: translateX(-50%);
  font-size: 6rem;
  color: var(--color-accent);
  opacity: 0.15;
  font-family: var(--font-display);
  line-height: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--color-accent-light);
  font-size: 0.95rem;
}

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

/* ═══════════════════════════════════════════
   PRICING SECTION
   ═══════════════════════════════════════════ */
.pricing {
  padding: 8rem 3rem;
  background: var(--color-bg-dark);
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 145, 94, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 145, 94, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.pricing-header {
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(201, 145, 94, 0.08);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: transform 0.4s var(--ease-out-expo);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--color-accent);
  background: linear-gradient(180deg, rgba(201, 145, 94, 0.08), var(--color-bg-card));
  transform: scale(1.03);
}

.pricing-card.featured::before {
  content: attr(data-popular);
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1.25rem;
  background: linear-gradient(135deg, var(--color-accent), #b07a42);
  color: var(--color-bg-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-tier {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--color-text-light);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-amount span {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.pricing-period {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.pricing-features li {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-features li svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.pricing-btn {
  display: block;
  width: 100%;
  padding: 0.9rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.pricing-btn.outline {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-light);
}

.pricing-btn.outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.pricing-btn.filled {
  background: linear-gradient(135deg, var(--color-accent), #b07a42);
  border: none;
  color: var(--color-bg-deep);
}

.pricing-btn.filled:hover {
  box-shadow: 0 8px 24px rgba(201, 145, 94, 0.3);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════ */
.cta-section {
  padding: 8rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 80vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 145, 94, 0.06) 0%, transparent 60%);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
}

.cta-title em {
  font-family: var(--font-display);
  color: var(--color-accent);
  font-style: italic;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  padding: 5rem 3rem 2.5rem;
  border-top: 1px solid rgba(201, 145, 94, 0.08);
  background: var(--color-bg-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  text-decoration: none;
  color: var(--color-text-light);
}

.footer-brand-logo .nav-logo-icon {
  width: 28px;
  height: 28px;
}

.footer-brand-logo .nav-logo-text {
  font-size: 1.15rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-light);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--color-accent-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 145, 94, 0.06);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(201, 145, 94, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-socials a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-glow);
}

.footer-socials svg {
  width: 16px;
  height: 16px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .integrations-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .showcase-item { grid-template-columns: 1fr; gap: 2.5rem; }
  .showcase-item.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .lang-switch { margin-left: auto; margin-right: 1rem; }
  .hero { padding: 7rem 1.5rem 3rem; }
  .hero-metrics { flex-direction: column; gap: 2rem; }
  .features { padding: 5rem 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .section-light { padding: 5rem 1.5rem; }
  .integrations-grid { grid-template-columns: 1fr; }
  .pricing { padding: 5rem 1.5rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .testimonials { padding: 5rem 1.5rem; }
  .showcase { padding: 4rem 1.5rem; }
  .cta-section { padding: 5rem 1.5rem; }
  .footer { padding: 3rem 1.5rem 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .logo-strip-logos { gap: 2rem; }
}