/* ========================================
   Hotel Website - Premium Styles
   Для страниц создания сайта отеля
   Подключать: /css/cssv2/hotel-website.css
   ======================================== */

/* ---- HERO SECTION ---- */
.hw-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #0c0e1a 0%, #1a1d35 40%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}

.hw-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hw-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hw-hero .container {
  position: relative;
  z-index: 1;
}

.hw-hero-inner {
  text-align: center;
}

.hw-badge {
  display: inline-block;
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 100px;
  padding: 8px 24px;
  margin-bottom: 24px;
}

.hw-badge span {
  color: #60a5fa;
  font-size: 14px;
  font-weight: 500;
}

.hw-hero-title {
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hw-hero-title .gradient-text {
  background: linear-gradient(135deg, #60a5fa, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hw-hero-desc {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.85);
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.hw-hero-desc strong {
  color: #ffffff;
}

.hw-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hw-btn-primary {
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(59,130,246,0.35);
}

.hw-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
}

.hw-btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.hw-hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.hw-stat {
  text-align: center;
}

.hw-stat-number {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
}

.hw-stat-number.blue { color: #60a5fa; }
.hw-stat-number.green { color: #34d399; }
.hw-stat-number.yellow { color: #fbbf24; }
.hw-stat-number.pink { color: #f472b6; }

.hw-stat-text {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

/* ---- SECTION BASE ---- */
.hw-section {
  padding: 100px 0;
}

.hw-section-light {
  background: #ffffff;
}

.hw-section-gray {
  background: #f8fafc;
}

.hw-section-dark {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.hw-section-dark-blue {
  background: linear-gradient(135deg, #0b1a33 0%, #1a3a6b 100%);
}

/* ---- SECTION HEADER ---- */
.hw-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.hw-section-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.hw-section-tag.blue { background: #eff6ff; color: #2563eb; }
.hw-section-tag.green { background: #ecfdf5; color: #059669; }
.hw-section-tag.amber { background: #fefce8; color: #a16207; }
.hw-section-tag.red { background: #fef2f2; color: #dc2626; }
.hw-section-tag.purple { background: #f5f3ff; color: #7c3aed; }
.hw-section-tag.sky { background: #f0f9ff; color: #0284c7; }
.hw-section-tag.emerald { background: #f0fdf4; color: #16a34a; }
.hw-section-tag.rose { background: #fff1f2; color: #e11d48; }
.hw-section-tag.dark { background: #1e293b; color: #e2e8f0; }
.hw-section-tag.indigo { background: #eef2ff; color: #4f46e5; }

.hw-section-title {
  font-size: clamp(28px, 2.5vw, 30px);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hw-section-title.white {
  color: #ffffff;
  line-height: 1.4;
}

.hw-section-desc {
  font-size: 18px;
  color: #64748b;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.65;
}

.hw-section-desc.white {
  color: rgba(255,255,255,0.7);
}

.hw-section-desc strong {
  color: #0f172a;
}

/* ---- GRID LAYOUT ---- */
.hw-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.hw-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 720px;
  margin: 0 auto;
}

.hw-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.hw-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.hw-grid-5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  counter-reset: step;
}

/* ---- CARDS ---- */
.hw-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s;
}

.hw-card-white {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.hw-card-white:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.hw-card-center {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s;
}

.hw-card-step {
  text-align: center;
  padding: 28px 20px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
}

.hw-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin-bottom: 20px;
}

.hw-icon-box.blue { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.hw-icon-box.amber { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.hw-icon-box.emerald { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }

.hw-icon-box svg {
  width: 28px;
  height: 28px;
}

.hw-icon-box.blue svg { stroke: #2563eb; }
.hw-icon-box.amber svg { stroke: #d97706; }
.hw-icon-box.emerald svg { stroke: #059669; }

.hw-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.hw-card-text {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
}

.hw-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hw-card-list li {
  padding: 6px 0;
  color: #475569;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ---- PRICE CARD ---- */
.hw-price-card {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
}

.hw-price-card-featured {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border: 2px solid #3b82f6;
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 32px rgba(59,130,246,0.2);
}

.hw-price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 20px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hw-price-emoji {
  font-size: 48px;
  margin-bottom: 16px;
}

.hw-price-title {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.hw-price-title.white {
  color: #ffffff;
}

.hw-price-subtitle {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
}

.hw-price-subtitle.white {
  color: rgba(255,255,255,0.6);
}

.hw-price-amount {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.hw-price-amount.white { color: #ffffff; }
.hw-price-amount.blue { color: #60a5fa; }

.hw-price-period {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 24px;
}

.hw-price-period.white { color: rgba(255,255,255,0.5); }
.hw-price-period strong { font-weight: 700; }
.hw-price-period.white strong { color: #60a5fa; }

.hw-price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
}

.hw-price-list li {
  padding: 8px 0;
  color: #475569;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hw-price-list.white li {
  color: rgba(255,255,255,0.8);
}

/* ---- EXAMPLE CARDS ---- */
.hw-example-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.hw-example-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.hw-example-card a.img-link {
  display: block;
  overflow: hidden;
}

.hw-example-card a.img-link img {
  width: 100%;
  display: block;
  transition: transform 0.5s;
}

.hw-example-card:hover a.img-link img {
  transform: scale(1.05);
}

.hw-example-body {
  padding: 24px;
}

.hw-example-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.hw-example-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}

.hw-example-tag.landing { background: #eff6ff; color: #2563eb; }
.hw-example-tag.dark { background: #1e293b; color: #e2e8f0; }
.hw-example-tag.multipage { background: #eef2ff; color: #4f46e5; }

.hw-example-price {
  font-size: 14px;
  font-weight: 700;
  color: #059669;
}

.hw-example-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2563eb;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

.hw-example-link:hover {
  text-decoration: underline;
}

/* ---- STATS DARK ---- */
.hw-stats-dark {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.hw-stat-dark-item {
  text-align: center;
  padding: 28px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
}

.hw-stat-dark-number {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
}

.hw-stat-dark-item.yellow .hw-stat-dark-number { color: #fbbf24; }
.hw-stat-dark-item.blue .hw-stat-dark-number { color: #60a5fa; }
.hw-stat-dark-item.red .hw-stat-dark-number { color: #f87171; }
.hw-stat-dark-item.green .hw-stat-dark-number { color: #34d399; }

.hw-stat-dark-text {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
}

.hw-stat-dark-item.highlight {
  background: linear-gradient(135deg, rgba(52,211,153,0.1), rgba(16,185,129,0.15));
  border: 1px solid rgba(52,211,153,0.2);
}

/* ---- QUOTE BLOCK ---- */
.hw-quote {
  text-align: center;
  padding: 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.hw-quote p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

/* ---- AI COMMAND BLOCK ---- */
.hw-ai-commands {
  max-width: 700px;
  margin: 0 auto 36px;
  padding: 28px;
  background: linear-gradient(135deg, #f5f3ff, #ede9fe);
  border: 1px solid #ddd6fe;
  border-radius: 20px;
  text-align: center;
}

.hw-ai-commands p {
  font-size: 18px;
  color: #4c1d95;
  font-style: italic;
  line-height: 1.7;
  margin: 0;
}

/* ---- VIDEO WRAPPER ---- */
.hw-video-wrapper {
  max-width: 720px;
  margin: 0 auto 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.hw-video-wrapper video {
  width: 100%;
  display: block;
}

/* ---- STEP CIRCLES ---- */
.hw-step-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 16px;
}

.hw-step-circle.blue { background: linear-gradient(135deg, #dbeafe, #bfdbfe); color: #2563eb; }
.hw-step-circle.amber { background: linear-gradient(135deg, #fef3c7, #fde68a); color: #d97706; }
.hw-step-circle.emerald { background: linear-gradient(135deg, #d1fae5, #a7f3d0); color: #059669; }
.hw-step-circle.pink { background: linear-gradient(135deg, #fce7f3, #fbcfe8); color: #db2777; }
.hw-step-circle.indigo { background: linear-gradient(135deg, #e0e7ff, #c7d2fe); color: #4f46e5; }

.hw-step-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.hw-step-text {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.hw-step-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  color: #2563eb;
  text-decoration: none;
}

/* ---- FAQ ---- */
.hw-faq-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px 28px;
  transition: all 0.3s;
}

.hw-faq-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.hw-faq-question {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.hw-faq-answer {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* ---- CTA SECTION ---- */
.hw-cta {
  padding: 60px 0;
  background: linear-gradient(135deg, #0b1a33 0%, #1a3a6b 100%);
  text-align: center;
}

.hw-cta-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

.hw-cta-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hw-cta-note {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-top: 20px;
}

.hw-btn-cta {
  padding: 18px 48px;
  font-size: 20px;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(59,130,246,0.35);
}

/* ---- MISC ---- */
.hw-text-center {
  text-align: center;
}

.hw-price-note {
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
  margin-top: 20px;
}

.hw-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  background: #fff;
  color: #2563eb;
  border: 2px solid #2563eb;
  text-decoration: none;
}

.hw-btn-outline:hover {
  background: #eff6ff;
}

.hw-actions-center {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hw-mt-36 {
  margin-top: 36px;
}

.hw-btn-block {
  display: block !important;
  width: 100%;
}

.hw-mb-40 {
  margin-bottom: 40px;
}

/* ---- CARD MARGIN ---- */
.hw-card-mb {
  margin-bottom: 20px;
}

/* ---- FAQ CONTAINER ---- */
.hw-faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ---- SCREENSHOTS GRID ---- */
.hw-screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.hw-screenshot-item {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  max-width: 260px;
  margin: 0 auto;
  transition: all 0.3s;
}

.hw-screenshot-item:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.hw-screenshot-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---- INCLUDED GRID ---- */
.hw-included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* ---- ACCENT BUTTONS OVERRIDE (green emerald) ---- */
.btn.btn-accent,
.btn.btn-accent.hw-btn-primary,
.btn.btn-accent.hw-btn-cta {
  background: linear-gradient(135deg, #059669, #10b981) !important;
  color: #ffffff !important;
  border: none !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.btn.btn-accent:hover,
.btn.btn-accent.hw-btn-primary:hover,
.btn.btn-accent.hw-btn-cta:hover {
  background: linear-gradient(135deg, #047857, #059669) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(16,185,129,0.35) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hw-hero {
    padding: 50px 0 40px;
  }
  
  .hw-hero-stats {
    gap: 20px;
    padding: 20px;
  }
  
  .hw-section {
    padding: 60px 0;
  }
  
  .hw-stat-number,
  .hw-stat-dark-number {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .hw-hero-stats {
    flex-direction: column;
    gap: 16px;
  }
  
  .hw-hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hw-btn-primary,
  .hw-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}