/* ============================================================================
   HOTELGEST - Landing Page Styles
   Design: Luxury-modern com toques de hotelaria premium
   ============================================================================ */

/* ---- Google Fonts Import ---- */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ---- CSS Variables ---- */
:root {
  --hg-navy: #0B1D3A;
  --hg-navy-light: #132D5E;
  --hg-gold: #C9A84C;
  --hg-gold-light: #E8D59A;
  --hg-gold-dark: #A68A3E;
  --hg-teal: #1ABC9C;
  --hg-teal-dark: #16A085;
  --hg-white: #FFFFFF;
  --hg-offwhite: #F8F7F4;
  --hg-light: #EDE9E0;
  --hg-gray-100: #F5F5F5;
  --hg-gray-200: #E8E8E8;
  --hg-gray-400: #999999;
  --hg-gray-600: #666666;
  --hg-gray-800: #333333;
  --hg-danger: #E74C3C;
  --hg-success: #27AE60;
  --hg-shadow-sm: 0 2px 8px rgba(11,29,58,0.06);
  --hg-shadow-md: 0 8px 30px rgba(11,29,58,0.1);
  --hg-shadow-lg: 0 20px 60px rgba(11,29,58,0.15);
  --hg-shadow-xl: 0 30px 80px rgba(11,29,58,0.2);
  --hg-radius: 16px;
  --hg-radius-sm: 10px;
  --hg-radius-lg: 24px;
  --hg-font-display: 'DM Serif Display', Georgia, serif;
  --hg-font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --hg-transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--hg-font-body);
  color: var(--hg-gray-800);
  background: var(--hg-white);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--hg-font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--hg-navy);
}

p { color: var(--hg-gray-600); }

a {
  color: var(--hg-teal);
  text-decoration: none;
  transition: var(--hg-transition);
}

a:hover { color: var(--hg-teal-dark); }

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

section {
  padding: 100px 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hg-gold);
  margin-bottom: 16px;
  font-family: var(--hg-font-body);
}

.section-label i { font-size: 0.65rem; }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--hg-gray-400);
  max-width: 600px;
}

/* ---- Grain Overlay ---- */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 9999;
  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");
}

/* ============================================================================
   NAVBAR
   ============================================================================ */
.hg-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--hg-transition);
  background: transparent;
}

.hg-navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--hg-shadow-sm);
  padding: 10px 0;
}

.hg-navbar .navbar-brand {
  font-family: var(--hg-font-display);
  font-size: 1.6rem;
  color: var(--hg-white);
  transition: var(--hg-transition);
}

.hg-navbar.scrolled .navbar-brand { color: var(--hg-navy); }

.hg-navbar .nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  padding: 8px 18px !important;
  transition: var(--hg-transition);
  letter-spacing: 0.3px;
}

.hg-navbar.scrolled .nav-link { color: var(--hg-gray-600); }
.hg-navbar .nav-link:hover { color: var(--hg-gold); }

.hg-navbar .navbar-toggler {
  border: none;
  color: var(--hg-white);
  font-size: 1.4rem;
  padding: 4px 8px;
}

.hg-navbar.scrolled .navbar-toggler { color: var(--hg-navy); }

.brand-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--hg-gold);
  border-radius: 50%;
  margin-left: 2px;
  vertical-align: super;
}

/* ---- Buttons ---- */
.btn-hg-gold {
  background: linear-gradient(135deg, var(--hg-gold), var(--hg-gold-dark));
  color: var(--hg-white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 32px;
  border: none;
  border-radius: 50px;
  letter-spacing: 0.5px;
  transition: var(--hg-transition);
  box-shadow: 0 4px 15px rgba(201,168,76,0.3);
  text-transform: uppercase;
  font-family: var(--hg-font-body);
}

.btn-hg-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.4);
  color: var(--hg-white);
  background: linear-gradient(135deg, var(--hg-gold-dark), var(--hg-gold));
}

.btn-hg-teal {
  background: linear-gradient(135deg, var(--hg-teal), var(--hg-teal-dark));
  color: var(--hg-white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 36px;
  border: none;
  border-radius: 50px;
  letter-spacing: 0.5px;
  transition: var(--hg-transition);
  box-shadow: 0 4px 15px rgba(26,188,156,0.3);
  text-transform: uppercase;
  font-family: var(--hg-font-body);
}

.btn-hg-teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26,188,156,0.4);
  color: var(--hg-white);
}

.btn-hg-outline {
  background: transparent;
  color: var(--hg-white);
  border: 2px solid rgba(255,255,255,0.3);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 12px 28px;
  border-radius: 50px;
  transition: var(--hg-transition);
  font-family: var(--hg-font-body);
}

.btn-hg-outline:hover {
  background: var(--hg-white);
  color: var(--hg-navy);
  border-color: var(--hg-white);
}

.btn-hg-outline-dark {
  background: transparent;
  color: var(--hg-navy);
  border: 2px solid var(--hg-navy);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 12px 28px;
  border-radius: 50px;
  transition: var(--hg-transition);
  font-family: var(--hg-font-body);
}

.btn-hg-outline-dark:hover {
  background: var(--hg-navy);
  color: var(--hg-white);
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--hg-navy);
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,188,156,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--hg-gold-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease;
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  color: var(--hg-white);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s both;
  line-height: 1.1;
}

.hero-title span {
  background: linear-gradient(135deg, var(--hg-gold), var(--hg-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 50px;
  margin-top: 60px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stat-number {
  font-family: var(--hg-font-display);
  font-size: 2.5rem;
  color: var(--hg-white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  z-index: 2;
  animation: fadeInRight 1s ease 0.3s both;
}

.hero-mockup {
  position: relative;
  border-radius: var(--hg-radius-lg);
  overflow: hidden;
  box-shadow: var(--hg-shadow-xl);
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-mockup-inner {
  background: linear-gradient(145deg, #1a2f50, #0d1f3a);
  border-radius: var(--hg-radius-lg);
  padding: 30px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}

.mockup-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}

.mockup-dot.red { background: #ff5f57; }
.mockup-dot.yellow { background: #ffbd2e; }
.mockup-dot.green { background: #28c840; }

.mockup-content {
  flex: 1;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
}

.mockup-sidebar {
  background: rgba(255,255,255,0.04);
  border-radius: var(--hg-radius-sm);
  padding: 16px;
}

.mockup-sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  font-weight: 500;
  margin-bottom: 4px;
  transition: var(--hg-transition);
}

.mockup-sidebar-item.active {
  background: rgba(26,188,156,0.15);
  color: var(--hg-teal);
}

.mockup-sidebar-item i { width: 16px; text-align: center; font-size: 0.7rem; }

.mockup-main {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-card {
  background: rgba(255,255,255,0.04);
  border-radius: var(--hg-radius-sm);
  padding: 16px;
}

.mockup-grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mockup-mini-card {
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 14px;
  text-align: center;
}

.mockup-mini-card .number {
  font-family: var(--hg-font-display);
  font-size: 1.4rem;
  color: var(--hg-white);
}

.mockup-mini-card .label {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.mockup-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
  padding: 10px 0;
}

.mockup-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  transition: var(--hg-transition);
}

/* Floating badge on mockup */
.hero-float-badge {
  position: absolute;
  background: var(--hg-white);
  border-radius: var(--hg-radius-sm);
  padding: 12px 18px;
  box-shadow: var(--hg-shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 3s ease-in-out infinite;
  z-index: 5;
}

.hero-float-badge.top-right {
  top: -20px; right: -20px;
}

.hero-float-badge.bottom-left {
  bottom: 30px; left: -30px;
}

.float-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--hg-white);
}

.float-icon.green { background: linear-gradient(135deg, var(--hg-teal), var(--hg-teal-dark)); }
.float-icon.gold { background: linear-gradient(135deg, var(--hg-gold), var(--hg-gold-dark)); }

.float-text .ft-number {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--hg-navy);
  line-height: 1;
}

.float-text .ft-label {
  font-size: 0.65rem;
  color: var(--hg-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================================
   PROBLEMS / PAIN SECTION
   ============================================================================ */
.pain-section {
  background: var(--hg-offwhite);
}

.pain-card {
  background: var(--hg-white);
  border-radius: var(--hg-radius);
  padding: 36px;
  box-shadow: var(--hg-shadow-sm);
  height: 100%;
  border: 1px solid var(--hg-gray-200);
  transition: var(--hg-transition);
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--hg-danger);
  opacity: 0;
  transition: var(--hg-transition);
}

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

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

.pain-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(231,76,60,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hg-danger);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.pain-card h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.pain-card p {
  font-size: 0.9rem;
  color: var(--hg-gray-400);
  margin: 0;
}

/* ============================================================================
   FEATURES / MODULES
   ============================================================================ */
.features-section {
  background: var(--hg-white);
}

.feature-card {
  background: var(--hg-white);
  border-radius: var(--hg-radius);
  padding: 36px;
  box-shadow: var(--hg-shadow-sm);
  height: 100%;
  border: 1px solid var(--hg-gray-200);
  transition: var(--hg-transition);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hg-shadow-md);
  border-color: var(--hg-teal);
}

.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--hg-white);
  background: linear-gradient(135deg, var(--hg-teal), var(--hg-teal-dark));
}

.feature-icon.gold { background: linear-gradient(135deg, var(--hg-gold), var(--hg-gold-dark)); }
.feature-icon.navy { background: linear-gradient(135deg, var(--hg-navy), var(--hg-navy-light)); }

.feature-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--hg-gray-400);
  margin: 0;
}

/* ============================================================================
   PRICING
   ============================================================================ */
.pricing-section {
  background: var(--hg-offwhite);
}

.pricing-card {
  background: var(--hg-white);
  border-radius: var(--hg-radius-lg);
  padding: 44px 36px;
  box-shadow: var(--hg-shadow-sm);
  border: 2px solid var(--hg-gray-200);
  transition: var(--hg-transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--hg-teal);
  box-shadow: var(--hg-shadow-lg);
  transform: scale(1.04);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--hg-teal), var(--hg-gold));
}

.pricing-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: linear-gradient(135deg, var(--hg-teal), var(--hg-teal-dark));
  color: var(--hg-white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-plan-name {
  font-family: var(--hg-font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--hg-gray-400);
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--hg-font-display);
  font-size: 3rem;
  color: var(--hg-navy);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-price small {
  font-family: var(--hg-font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--hg-gray-400);
}

.pricing-price .currency {
  font-size: 1.4rem;
  vertical-align: super;
  margin-right: 2px;
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--hg-gray-400);
  margin: 16px 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--hg-gray-200);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--hg-gray-600);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-features li i {
  color: var(--hg-teal);
  margin-top: 3px;
  font-size: 0.8rem;
}

.pricing-features li i.fa-xmark {
  color: var(--hg-gray-400);
  opacity: 0.4;
}

.pricing-features li.disabled {
  color: var(--hg-gray-400);
  opacity: 0.5;
}

.pricing-card .btn {
  width: 100%;
  margin-top: auto;
}

/* ============================================================================
   TESTIMONIALS
   ============================================================================ */
.testimonials-section {
  background: var(--hg-navy);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--hg-radius);
  padding: 36px;
  height: 100%;
  transition: var(--hg-transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--hg-gold);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.testimonial-text {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hg-teal), var(--hg-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hg-white);
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-name {
  font-weight: 700;
  color: var(--hg-white);
  font-size: 0.9rem;
}

.testimonial-role {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================================================
   CTA SECTION
   ============================================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--hg-teal-dark), var(--hg-teal));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
}

.cta-section h2 {
  color: var(--hg-white);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.btn-cta-white {
  background: var(--hg-white);
  color: var(--hg-teal-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 44px;
  border: none;
  border-radius: 50px;
  transition: var(--hg-transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--hg-font-body);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-cta-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  color: var(--hg-teal-dark);
}

/* ============================================================================
   FAQ
   ============================================================================ */
.faq-section { background: var(--hg-white); }

.faq-item {
  border: 1px solid var(--hg-gray-200);
  border-radius: var(--hg-radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--hg-transition);
}

.faq-item:hover { border-color: var(--hg-teal); }

.faq-item .accordion-button {
  font-family: var(--hg-font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--hg-navy);
  padding: 20px 24px;
  background: var(--hg-white);
  box-shadow: none;
}

.faq-item .accordion-button:not(.collapsed) {
  color: var(--hg-teal);
  background: var(--hg-white);
}

.faq-item .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%231ABC9C' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.faq-item .accordion-body {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--hg-gray-600);
  line-height: 1.8;
}

/* ============================================================================
   LEAD FORM MODAL
   ============================================================================ */
.modal-hg .modal-content {
  border: none;
  border-radius: var(--hg-radius-lg);
  box-shadow: var(--hg-shadow-xl);
  overflow: hidden;
}

.modal-hg .modal-header {
  background: var(--hg-navy);
  border: none;
  padding: 28px 32px 20px;
}

.modal-hg .modal-title {
  font-family: var(--hg-font-display);
  color: var(--hg-white);
  font-size: 1.4rem;
}

.modal-hg .btn-close { filter: invert(1); }

.modal-hg .modal-body { padding: 32px; }

.modal-hg .form-control {
  border-radius: var(--hg-radius-sm);
  border: 1px solid var(--hg-gray-200);
  padding: 12px 16px;
  font-size: 0.9rem;
  transition: var(--hg-transition);
}

.modal-hg .form-control:focus {
  border-color: var(--hg-teal);
  box-shadow: 0 0 0 3px rgba(26,188,156,0.1);
}

.modal-hg .form-label {
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--hg-gray-600);
  margin-bottom: 6px;
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.hg-footer {
  background: var(--hg-navy);
  color: rgba(255,255,255,0.5);
  padding: 60px 0 30px;
}

.hg-footer h5 {
  color: var(--hg-white);
  font-size: 1rem;
  margin-bottom: 20px;
}

.hg-footer p, .hg-footer a {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

.hg-footer a:hover { color: var(--hg-gold); }

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 8px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  margin-top: 40px;
  font-size: 0.8rem;
}

.footer-brand {
  font-family: var(--hg-font-display);
  font-size: 1.5rem;
  color: var(--hg-white);
  margin-bottom: 12px;
  display: block;
}

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

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

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

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* WhatsApp float button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--hg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--hg-transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--hg-white);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (max-width: 991px) {
  section { padding: 70px 0; }

  .hero-section { padding: 100px 0 60px; min-height: auto; }
  .hero-title { font-size: 2.4rem; }
  .hero-stats { gap: 30px; }
  .hero-stat-number { font-size: 1.8rem; }

  .mockup-content { grid-template-columns: 1fr; }
  .mockup-sidebar { display: none; }

  .pricing-card.featured { transform: scale(1); }

  .hero-float-badge { display: none; }
}

@media (max-width: 767px) {
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; }
  .pricing-card { margin-bottom: 20px; }
}
