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

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --bg: #0a0a0f;
  --bg-secondary: #12121a;
  --surface: #1a1a26;
  --surface-elevated: #242433;
  --surface-glass: rgba(26, 26, 38, 0.8);
  --primary: #ff6b35;
  --primary-dark: #e55a2b;
  --secondary: #00f5ff;
  --secondary-dark: #00d4e6;
  --accent: #ff3366;
  --success: #00ff88;
  --text: #ffffff;
  --text-secondary: #b8b8cc;
  --text-muted: #8a8aa3;
  --border: #2a2a3d;
  --border-light: #3a3a52;
  --glow-primary: rgba(255, 107, 53, 0.3);
  --glow-secondary: rgba(0, 245, 255, 0.3);
  --font-heading: 'Orbitron', monospace;
  --font-body: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --container: 1280px;
  --section-py: 120px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== 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: linear-gradient(135deg, var(--bg) 0%, var(--bg-secondary) 100%);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul, ol { 
  list-style: none; 
}

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

h1 { 
  font-size: clamp(2.5rem, 6vw, 4.5rem); 
  font-weight: 900;
}

h2 { 
  font-size: clamp(1.8rem, 4vw, 3rem); 
}

h3 { 
  font-size: clamp(1.2rem, 2.5vw, 1.6rem); 
}

h4 { 
  font-size: 1.1rem; 
}

p { 
  color: var(--text-secondary); 
  line-height: 1.7; 
  font-weight: 400;
}

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

section { 
  padding: var(--section-py) 0; 
  position: relative;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary { 
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text);
  box-shadow: 0 8px 32px var(--glow-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--glow-primary);
}

.btn-secondary { 
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
}

.btn-secondary:hover {
  background: var(--secondary);
  color: var(--bg);
  box-shadow: 0 8px 32px var(--glow-secondary);
  transform: translateY(-2px);
}

/* ===== SECTION LABELS ===== */
.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  margin-bottom: 20px;
  position: relative;
}

.section-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary) 0%, transparent 100%);
  opacity: 0.1;
  border-radius: var(--radius-sm);
}

.section-title { 
  margin-bottom: 24px; 
  color: var(--text);
  background: linear-gradient(135deg, var(--text) 0%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc { 
  max-width: 600px; 
  margin-bottom: 60px; 
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 300;
}

.section-header-center { 
  text-align: center; 
}

.section-header-center .section-desc { 
  margin-left: auto; 
  margin-right: auto; 
}

/* ===== SITE HEADER ===== */
.site-header {
  padding: 24px 0;
  background: var(--surface-glass);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container { 
  display: flex; 
  align-items: center; 
}

.brand { 
  display: flex; 
  align-items: center; 
  gap: 16px; 
}

.brand-logo { 
  width: 52px; 
  height: 37px; 
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px var(--glow-secondary));
}

.brand-text { 
  display: flex; 
  flex-direction: column; 
  gap: 2px; 
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.brand-name span { 
  color: var(--primary); 
}

.brand-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 245, 255, 0.15) 0%, transparent 50%),
    linear-gradient(135deg, var(--bg) 0%, var(--bg-secondary) 100%);
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(var(--secondary) 1px, transparent 1px),
    linear-gradient(90deg, var(--secondary) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

.hero-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow-primary) 0%, transparent 70%);
  z-index: 0;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
}

.hero-content {
  margin-bottom: 60px;
}

.hero-image {
  width: 100%;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--success);
  margin-bottom: 32px;
  box-shadow: 0 8px 32px rgba(0, 255, 136, 0.1);
}

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

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.3; }
}

.hero h1 { 
  margin-bottom: 24px; 
  color: var(--text);
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
  text-align: center;
}

.hero h1 em { 
  color: var(--primary); 
  font-style: normal;
  text-shadow: 0 0 30px var(--glow-primary);
}

.hero-desc { 
  font-size: 1.2rem; 
  margin-bottom: 40px; 
  color: var(--text-secondary); 
  max-width: 600px;
  font-weight: 300;
  line-height: 1.8;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta { 
  display: flex; 
  gap: 20px; 
  flex-wrap: wrap; 
  justify-content: center;
}

.hero-placeholder { 
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl); 
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ===== IMAGE STYLES ===== */
.img-placeholder {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.img-placeholder:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* ===== STATS ===== */
.stats {
  padding: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 107, 53, 0.05) 50%, transparent 100%);
}

.stats-grid { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  position: relative;
  z-index: 1;
}

.stat-item {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  position: relative;
}

.stat-item:last-child { 
  border-right: none; 
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 20px;
  background: linear-gradient(180deg, var(--primary) 0%, transparent 100%);
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  text-shadow: 0 0 20px var(--glow-primary);
}

.stat-label { 
  font-size: 0.9rem; 
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* ===== ABOUT ===== */
.about .container {
  text-align: center;
}

.about-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-text {
  margin-bottom: 60px;
}

.about-text .section-title,
.about-text .section-tag,
.about-text p {
  text-align: center;
}

.about-text p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about-features { 
  display: flex; 
  flex-direction: column; 
  gap: 20px; 
  margin-top: 40px; 
}

.about-feature { 
  display: flex; 
  align-items: center; 
  gap: 16px;
  padding: 16px 20px;
  background: var(--surface-glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.about-feature:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.1);
  transform: translateX(8px);
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
  border: 1px solid rgba(255, 107, 53, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature span { 
  font-size: 0.95rem; 
  color: var(--text-secondary);
  font-weight: 500;
}

/* ===== SERVICES ===== */
.services { 
  background: var(--surface);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(0, 245, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
}

.services .container {
  position: relative;
  z-index: 1;
}

.services-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 32px; 
}

.service-card {
  background: var(--surface-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.02) 0%, rgba(0, 245, 255, 0.02) 100%);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15);
}

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

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
  border: 1px solid rgba(255, 107, 53, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.service-icon.green {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 255, 136, 0.05) 100%);
  border-color: rgba(0, 255, 136, 0.2);
}

.service-card h3 { 
  margin-bottom: 12px; 
  color: var(--text);
  position: relative;
  z-index: 1;
}

.service-card p { 
  font-size: 0.9rem; 
  line-height: 1.7;
  position: relative;
  z-index: 1;
  font-weight: 400;
}

/* ===== ROOMS ===== */
.rooms .container {
  text-align: center;
}

.rooms-content {
  margin-bottom: 60px;
}

.rooms-content .section-title,
.rooms-content .section-tag,
.rooms-content p {
  text-align: center;
}

.rooms-content p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.rooms-images { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 20px; 
}

.rooms-images .img-placeholder { 
  min-height: 200px; 
}

.img-placeholder-wide { 
  grid-column: span 2; 
  min-height: 150px; 
}

.rooms-features { 
  display: flex; 
  flex-direction: column; 
  gap: 24px; 
  margin-top: 40px; 
}

.room-feature {
  display: flex;
  gap: 20px;
  padding: 24px 28px;
  background: var(--surface-glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.room-feature:hover {
  border-color: var(--secondary);
  box-shadow: 0 12px 40px rgba(0, 245, 255, 0.1);
  transform: translateY(-4px);
}

.room-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.1) 0%, rgba(0, 245, 255, 0.05) 100%);
  border: 1px solid rgba(0, 245, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.room-feature-text h4 { 
  margin-bottom: 6px; 
  color: var(--text); 
  font-size: 1rem;
  font-weight: 600;
}

.room-feature-text p { 
  font-size: 0.85rem;
  font-weight: 400;
}

/* ===== STREAMING ===== */
.streaming { 
  background: var(--surface);
  position: relative;
}

.streaming::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 51, 102, 0.1) 0%, transparent 50%);
}

.streaming .container {
  text-align: center;
  position: relative;
  z-index: 1;
}

.streaming-content { 
  margin-bottom: 60px;
}

.streaming-content .section-title,
.streaming-content .section-tag,
.streaming-content p {
  text-align: center;
}

.streaming-content p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.streaming-list { 
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px; 
  margin-top: 40px; 
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.streaming-item { 
  display: flex; 
  align-items: center; 
  gap: 16px; 
  font-size: 0.95rem; 
  color: var(--text-secondary);
  padding: 12px 0;
  font-weight: 500;
}

.streaming-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--success) 0%, rgba(0, 255, 136, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 255, 136, 0.3);
}

/* ===== PACKAGES ===== */
.packages-grid { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 32px; 
}

.package-card {
  background: var(--surface-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.02) 0%, rgba(0, 245, 255, 0.02) 100%);
  opacity: 0;
  transition: var(--transition);
}

.package-card:hover {
  transform: translateY(-12px);
  border-color: var(--primary);
  box-shadow: 0 24px 80px rgba(255, 107, 53, 0.2);
}

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

.package-card.featured { 
  background: var(--surface-elevated);
  border-color: var(--primary);
  box-shadow: 0 16px 60px rgba(255, 107, 53, 0.15);
  transform: scale(1.05);
}

.package-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.05) 100%);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 100px;
  padding: 8px 16px;
  margin-bottom: 24px;
  width: fit-content;
  position: relative;
  z-index: 1;
}

.package-badge.green { 
  color: var(--success); 
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 255, 136, 0.05) 100%);
  border-color: rgba(0, 255, 136, 0.3);
}

.package-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
  border: 1px solid rgba(255, 107, 53, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.package-icon.green { 
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 255, 136, 0.05) 100%);
  border-color: rgba(0, 255, 136, 0.2);
}

.package-name { 
  font-family: var(--font-heading); 
  font-size: 1.2rem; 
  font-weight: 700; 
  color: var(--text); 
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.package-price { 
  font-family: var(--font-heading); 
  font-size: 1.8rem; 
  font-weight: 900; 
  color: var(--primary); 
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

.package-price.green { 
  color: var(--success); 
}

.package-unit { 
  font-size: 0.8rem; 
  color: var(--text-muted); 
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.package-divider { 
  height: 1px; 
  background: linear-gradient(90deg, transparent 0%, var(--border) 50%, transparent 100%);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.package-features { 
  display: flex; 
  flex-direction: column; 
  gap: 12px; 
  flex: 1; 
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.package-feature { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  font-size: 0.9rem; 
  color: var(--text-secondary);
  font-weight: 500;
}

.package-dot { 
  width: 6px; 
  height: 6px; 
  border-radius: 50%; 
  background: var(--primary); 
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--primary);
}

.package-dot.green { 
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
}

.package-cta {
  display: block;
  width: 100%;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  cursor: pointer;
  border: none;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

.package-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--glow-primary);
}

.package-cta.outline { 
  background: transparent; 
  color: var(--primary); 
  border: 2px solid var(--primary); 
}

.package-cta.green-btn { 
  background: linear-gradient(135deg, var(--success) 0%, rgba(0, 255, 136, 0.8) 100%);
  color: var(--bg); 
}

.package-cta.green-outline { 
  background: transparent; 
  color: var(--success); 
  border: 2px solid var(--success); 
}

/* ===== HOW IT WORKS ===== */
.how { 
  background: var(--surface);
  position: relative;
}

.how::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 107, 53, 0.05) 0%, transparent 50%, rgba(0, 245, 255, 0.05) 100%);
}

.how .container {
  position: relative;
  z-index: 1;
}

.how-steps { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 32px; 
}

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  background: var(--surface-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.how-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.02) 0%, rgba(0, 245, 255, 0.02) 100%);
  opacity: 0;
  transition: var(--transition);
}

.how-step:hover {
  transform: translateY(-8px);
  border-color: var(--secondary);
  box-shadow: 0 20px 60px rgba(0, 245, 255, 0.15);
}

.how-step:hover::before {
  opacity: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--secondary);
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.1) 0%, rgba(0, 245, 255, 0.05) 100%);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
  position: relative;
  z-index: 1;
}

.how-step h3 { 
  margin-bottom: 12px; 
  color: var(--text);
  position: relative;
  z-index: 1;
}

.how-step p { 
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
  font-weight: 400;
}

/* ===== GALLERY ===== */
.gallery-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 24px; 
}

.gallery-item {
  background: var(--surface-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(0, 245, 255, 0.05) 100%);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.05);
  border-color: var(--primary);
  box-shadow: 0 16px 60px rgba(255, 107, 53, 0.2);
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item svg { 
  opacity: 0.25;
  position: relative;
  z-index: 1;
}

.gallery-item span { 
  font-size: 0.8rem; 
  color: var(--text-muted); 
  opacity: 0.7;
  position: relative;
  z-index: 1;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gallery-item-wide { 
  grid-column: span 2; 
  aspect-ratio: 2/1; 
}

/* ===== CONTACTS ===== */
.contacts { 
  background: var(--surface);
  position: relative;
}

.contacts::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
}

.contacts .container { 
  text-align: left;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.contacts-items { 
  display: flex; 
  flex-direction: column; 
  gap: 28px; 
  margin-top: 48px; 
}

.contact-item { 
  display: flex; 
  gap: 20px; 
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--surface-glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.contact-item:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.1);
  transform: translateY(-4px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
  border: 1px solid rgba(255, 107, 53, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-label { 
  font-size: 0.75rem; 
  text-transform: uppercase; 
  letter-spacing: 0.1em; 
  color: var(--text-muted); 
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-value { 
  font-family: var(--font-body); 
  font-weight: 600; 
  color: var(--text); 
  font-size: 1rem; 
}

.contact-value a { 
  color: var(--primary); 
}

.map-placeholder {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.02) 0%, rgba(0, 245, 255, 0.02) 100%);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.footer-main {
  text-align: center;
}

.footer-main .brand { 
  margin-bottom: 20px; 
  justify-content: center;
}

.footer-desc { 
  font-size: 0.9rem; 
  color: var(--text-secondary); 
  line-height: 1.8; 
  max-width: 500px;
  font-weight: 400;
  margin: 0 auto;
  text-align: center;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  text-align: center;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}

.footer-links { 
  display: flex; 
  flex-direction: column; 
  gap: 12px; 
}

.footer-links a { 
  font-size: 0.9rem; 
  color: var(--text-secondary);
  font-weight: 500;
}

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

.footer-contact-item { 
  font-size: 0.9rem; 
  color: var(--text-secondary); 
  margin-bottom: 10px;
  font-weight: 500;
  text-align: center;
}

.footer-contact-item a { 
  color: var(--primary); 
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.footer-legal { 
  display: flex; 
  gap: 32px; 
}

.footer-legal a { 
  font-size: 0.8rem; 
  color: var(--text-muted);
  font-weight: 500;
}

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

/* ===== PACKAGE BUTTON STYLES ===== */
.btn-book {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.btn-call {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: var(--bg);
}

.btn-email {
  background: linear-gradient(135deg, var(--success) 0%, rgba(0, 255, 136, 0.8) 100%);
  color: var(--bg);
}

.btn-consult {
  background: transparent;
  color: var(--success);
  border: 2px solid var(--success);
}

.btn-consult:hover {
  background: var(--success);
  color: var(--bg);
}
/* ===== RESPONSIVE ===== */

@media (max-width: 1200px) {
  .packages-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  
  .footer-top { 
    grid-template-columns: 1fr 1fr; 
  }
}

@media (max-width: 900px) {
  :root { 
    --section-py: 80px; 
  }
  
  .contacts .container { 
    grid-template-columns: 1fr; 
    gap: 60px; 
  }
  
  .streaming-list {
    grid-template-columns: 1fr;
  }
  
  .stats-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  
  .stat-item:nth-child(2) { 
    border-right: none; 
  }
  
  .services-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  
  .how-steps { 
    grid-template-columns: repeat(2, 1fr); 
  }
  
  .gallery-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  
  .gallery-item-wide { 
    grid-column: span 2; 
  }
  
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  :root { 
    --section-py: 60px; 
  }
  
  .container {
    padding: 0 20px;
  }
  
  .hero { 
    padding: 80px 0 100px; 
  }
  
  .stats-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  
  .services-grid { 
    grid-template-columns: 1fr; 
  }
  
  .packages-grid { 
    grid-template-columns: 1fr; 
  }
  
  .how-steps { 
    grid-template-columns: 1fr; 
  }
  
  .gallery-grid { 
    grid-template-columns: 1fr; 
  }
  
  .gallery-item-wide { 
    grid-column: span 1; 
    aspect-ratio: 4/3; 
  }
  
  .footer-columns { 
    grid-template-columns: 1fr; 
    gap: 40px; 
  }
  
  .footer-bottom { 
    flex-direction: column; 
    gap: 20px; 
    text-align: center; 
  }
  
  .footer-legal { 
    flex-wrap: wrap; 
    justify-content: center; 
  }
  
  .hero-cta { 
    flex-direction: column; 
  }
  
  .btn { 
    justify-content: center; 
  }
}