/* =============================================
   GUIMAN — Design System & Main Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* =============================================
   CSS VARIABLES / DESIGN TOKENS
   ============================================= */
:root {
  /* Colors */
  --color-primary: #A27B5C;
  --color-primary-light: #A27B5C;
  --color-primary-dark: #2D1E17;
  --color-secondary: #C68B59;
  --color-accent: #C68B59;
  --color-accent-light: #E8C5A5;
  --color-success: #2E7D32;
  --color-danger: #C62828;
  --color-warning: #EF6C00;

  /* Background */
  --bg-dark: #FAF6F0;
  --bg-dark-2: #F1E9DF;
  --bg-dark-3: #E5D5C5;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-card-hover: rgba(255, 255, 255, 0.98);
  --bg-glass: rgba(162, 123, 92, 0.05);

  /* Text */
  --text-primary: #2D1E17;
  --text-secondary: #5E4B41;
  --text-muted: #8D7A71;
  --text-dark: #2D1E17;

  /* Gradients */
  --gradient-primary: #A27B5C;
  --gradient-hero: #FAF6F0;
  --gradient-card: rgba(255, 255, 255, 0.95);
  --gradient-accent: #C68B59;
  --gradient-text: #A27B5C;

  /* Borders */
  --border-glass: 1px solid rgba(162, 123, 92, 0.1);
  --border-primary: 1px solid rgba(162, 123, 92, 0.2);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(162, 123, 92, 0.05);
  --shadow-md: 0 8px 32px rgba(162, 123, 92, 0.08);
  --shadow-lg: 0 20px 60px rgba(162, 123, 92, 0.04);
  --shadow-glow: 0 0 40px rgba(162, 123, 92, 0.08);
  --shadow-glow-accent: 0 0 30px rgba(198, 139, 89, 0.08);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 8rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-med: 0.35s ease;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout */
  --container-max: 1280px;
  --nav-height: 72px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  outline: none;
}

input, textarea, select {
  font-family: var(--font-body);
  outline: none;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.text-gradient {
  color: var(--color-primary);
}

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

.text-muted {
  color: var(--text-muted);
}

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-3xl) 0;
}

.section-sm {
  padding: var(--space-2xl) 0;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

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

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

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

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

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-primary);
  box-shadow: 0 4px 20px rgba(162, 123, 92, 0.5);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(162, 123, 92, 0.7);
}

.btn-accent {
  background: var(--gradient-accent);
  color: var(--text-primary);
  box-shadow: 0 4px 20px rgba(198, 139, 89, 0.4);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-accent);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: var(--border-glass);
}

.btn-outline:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
}

.btn-ghost:hover {
  color: var(--text-primary);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

/* =============================================
   CARDS
   ============================================= */
.card {
  background: var(--bg-card);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  backdrop-filter: blur(20px);
  transition: all var(--transition-med);
}

.card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(162, 123, 92, 0.3);
}

.card-glow {
  box-shadow: var(--shadow-glow);
  border-color: rgba(162, 123, 92, 0.4);
}

/* =============================================
   BADGES
   ============================================= */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-primary {
  background: rgba(162, 123, 92, 0.12);
  color: #A27B5C;
  border: 1px solid rgba(162, 123, 92, 0.25);
}

.badge-accent {
  background: rgba(198, 139, 89, 0.12);
  color: #B45309;
  border: 1px solid rgba(198, 139, 89, 0.25);
}

.badge-success {
  background: rgba(46, 125, 50, 0.12);
  color: #2E7D32;
  border: 1px solid rgba(46, 125, 50, 0.25);
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: var(--space-md);
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.7;
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all var(--transition-med);
}

.navbar.scrolled {
  background: rgba(252, 250, 250, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: var(--border-glass);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.nav-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(162, 123, 92, 0.5);
}

.nav-logo span {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-links a:hover {
  color: var(--text-primary);
  background: var(--bg-card);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  padding: 0.5rem;
  cursor: pointer;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #A27B5C 0%, transparent 70%);
  top: -150px;
  right: -100px;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #C68B59 0%, transparent 70%);
  bottom: -100px;
  left: -50px;
  animation-delay: -4s;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #E8C5A5 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.15;
  animation-delay: -2s;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(162, 123, 92, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(162, 123, 92, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  padding: var(--space-3xl) 0;
}

.hero-text {
  animation: slideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(162, 123, 92, 0.12);
  border: 1px solid rgba(162, 123, 92, 0.25);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #A27B5C;
  margin-bottom: var(--space-md);
  letter-spacing: 0.03em;
}

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

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: var(--space-md);
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.hero-stats {
  display: flex;
  gap: var(--space-xl);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Hero Map Preview */
.hero-visual {
  position: relative;
  animation: slideInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-map-card {
  background: var(--bg-card);
  border: var(--border-glass);
  border-radius: var(--radius-xl);
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.hero-map-header {
  padding: 1rem 1.5rem;
  border-bottom: var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-map-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.hero-map-status {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--color-success);
}

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

#hero-map {
  height: 380px;
}

.hero-map-footer {
  padding: 1rem 1.5rem;
  border-top: var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: var(--border-glass);
  border-radius: var(--radius-full);
  padding: 0.5rem 1rem;
  flex: 1;
}

.hero-search input {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 0.85rem;
  width: 100%;
}

.hero-search input::placeholder {
  color: var(--text-muted);
}

/* Floating cards */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  border: var(--border-glass);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: var(--shadow-md);
  animation: floatCard 4s ease-in-out infinite;
  z-index: 10;
}

.floating-card-1 {
  top: 20px;
  left: -40px;
  animation-delay: 0s;
}

.floating-card-2 {
  bottom: 60px;
  right: -30px;
  animation-delay: -2s;
}

.floating-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.floating-card-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
}

.floating-card-text span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* =============================================
   SEARCH BAR
   ============================================= */
.search-section {
  padding: var(--space-xl) 0;
  margin-top: -2px;
  background: var(--bg-dark-2);
}

.search-bar {
  background: #ffffff;
  border: 1px solid rgba(162, 123, 92, 0.15);
  border-radius: var(--radius-xl);
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  max-width: 800px;
  margin: 0 auto;
  transition: all var(--transition-med);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
}

.search-bar:focus-within {
  border-color: rgba(162, 123, 92, 0.5);
  box-shadow: 0 0 0 3px rgba(162, 123, 92, 0.15), var(--shadow-md);
}

.search-bar input {
  flex: 1;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
}

.search-bar input::placeholder {
  color: var(--text-muted);
}

.search-divider {
  width: 1px;
  height: 24px;
  background: rgba(162, 123, 92, 0.15);
}

.search-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 0 0.5rem;
  white-space: nowrap;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 40px);
  right: calc(16.66% + 40px);
  height: 2px;
  background: var(--color-primary);
  z-index: 0;
}

.step-card {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  position: relative;
  z-index: 1;
}

.step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 auto var(--space-md);
  box-shadow: 0 8px 30px rgba(162, 123, 92, 0.3);
  position: relative;
}

.step-num .step-icon {
  font-size: 1.6rem;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.step-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* =============================================
   FEATURES SECTION
   ============================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.feature-card {
  padding: var(--space-lg);
  background: var(--bg-card);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  transition: all var(--transition-med);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-med);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), 0 0 30px rgba(162, 123, 92, 0.2);
  border-color: rgba(162, 123, 92, 0.3);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--bg-glass);
  border: var(--border-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: var(--space-md);
  transition: all var(--transition-med);
}

.feature-card:hover .feature-icon {
  background: var(--gradient-primary);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(162, 123, 92, 0.5);
  transform: scale(1.1);
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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

.feature-tag {
  display: inline-block;
  margin-top: var(--space-sm);
  font-size: 0.75rem;
  color: var(--color-accent);
  font-weight: 600;
}

/* =============================================
   SECTORS SECTION
   ============================================= */
.sectors-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.sector-block {
  background: var(--gradient-card);
  border: var(--border-glass);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.sector-block::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(162, 123, 92, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.sector-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  opacity: 0.08;
  position: absolute;
  top: 1rem;
  right: 2rem;
  color: var(--text-primary);
  line-height: 1;
}

.sector-badge {
  margin-bottom: var(--space-md);
}

.sector-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: var(--space-sm);
}

.sector-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sector-tag {
  padding: 0.35rem 0.85rem;
  background: rgba(162, 123, 92, 0.05);
  border: var(--border-glass);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* =============================================
   MAP SECTION
   ============================================= */
.map-section {
  padding: var(--space-3xl) 0;
}

.map-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: var(--border-glass);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

#main-map {
  height: 520px;
}

.map-overlay {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: var(--border-glass);
  border-radius: var(--radius-full);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  min-width: 400px;
  box-shadow: var(--shadow-md);
}

.map-overlay input {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 0.95rem;
  flex: 1;
}

.map-overlay input::placeholder {
  color: var(--text-muted);
}

.map-stats-bar {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  display: flex;
  gap: var(--space-sm);
}

.map-stat-pill {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: var(--border-glass);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.testimonial-card {
  background: var(--bg-card);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-med);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(162, 123, 92, 0.3);
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: var(--space-sm);
  font-size: 1rem;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
}

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

/* =============================================
   PRICING
   ============================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: var(--border-glass);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all var(--transition-med);
  position: relative;
}

.pricing-card.featured {
  background: var(--gradient-card);
  border-color: rgba(162, 123, 92, 0.5);
  box-shadow: var(--shadow-glow);
  transform: scale(1.05);
}

.pricing-card:hover:not(.featured) {
  border-color: rgba(162, 123, 92, 0.3);
  transform: translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #fff;
  padding: 0.35rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.pricing-plan {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: var(--space-sm);
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.pricing-currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-secondary);
  align-self: flex-start;
  margin-top: 0.75rem;
}

.pricing-period {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.pricing-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.pricing-features {
  margin-bottom: var(--space-lg);
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(162, 123, 92, 0.08);
}

.pricing-feature:last-child {
  border-bottom: none;
}

.pricing-feature .check {
  color: var(--color-success);
  font-size: 1rem;
  flex-shrink: 0;
}

.pricing-feature .cross {
  color: var(--text-muted);
  font-size: 1rem;
  flex-shrink: 0;
}

.pricing-feature.disabled {
  color: var(--text-muted);
  opacity: 0.6;
}

/* =============================================
   STARTUP CTA SECTION
   ============================================= */
.startup-section {
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.startup-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-dark-2);
  border-top: var(--border-glass);
  border-bottom: var(--border-glass);
}

.startup-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.startup-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-glow);
}

.startup-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: var(--space-md);
}

.startup-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg-dark-2);
  border-top: var(--border-glass);
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: var(--space-md) 0;
  max-width: 280px;
}

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

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition-fast);
  cursor: pointer;
  color: var(--text-muted);
}

.social-btn:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}

.footer-col-title {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  border-top: var(--border-glass);
  padding-top: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.83rem;
}

.footer-legal {
  display: flex;
  gap: var(--space-md);
}

.footer-legal a {
  color: var(--text-muted);
  font-size: 0.83rem;
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--text-primary);
}

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.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; }

/* =============================================
   FORM ELEMENTS
   ============================================= */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  background: var(--bg-card);
  border: var(--border-glass);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-input:focus {
  border-color: rgba(162, 123, 92, 0.6);
  box-shadow: 0 0 0 3px rgba(162, 123, 92, 0.15);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

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

  .floating-card-1 {
    left: 0;
  }

  .floating-card-2 {
    right: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}

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

  .nav-links {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .nav-actions .btn-outline {
    display: none;
  }

  .hero-content {
    padding: var(--space-xl) 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid::before {
    display: none;
  }

  .sectors-container {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  .map-overlay {
    min-width: unset;
    width: calc(100% - 3rem);
  }

  .map-stats-bar {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .hero-cta {
    flex-direction: column;
  }

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

  .hero-stats {
    gap: var(--space-lg);
  }

  .search-bar {
    flex-direction: column;
    align-items: stretch;
    border-radius: var(--radius-lg);
    padding: var(--space-sm);
  }

  .search-divider {
    display: none;
  }
}

/* =============================================
   MOBILE NAV OVERLAY
   ============================================= */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(255, 251, 251, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

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

.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Custom Map Marker Styles */
.custom-marker {
  background: none;
  border: none;
}

.marker-inner {
  background: var(--gradient-primary);
  color: white;
  border-radius: 50% 50% 50% 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transform: rotate(-45deg);
  box-shadow: 0 4px 15px rgba(162, 123, 92, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.marker-inner span {
  transform: rotate(45deg);
  display: block;
}

/* Leaflet popup override */
.leaflet-popup-content-wrapper {
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(162, 123, 92, 0.4) !important;
  border-radius: 12px !important;
  color: var(--text-primary) !important;
  box-shadow: var(--shadow-md) !important;
}

.leaflet-popup-tip {
  background: rgba(162, 123, 92, 0.4) !important;
}

.leaflet-popup-content {
  margin: 12px 16px !important;
}

.popup-content h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

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

.popup-stars {
  color: #F59E0B;
  font-size: 0.8rem;
  margin-top: 4px;
}
