:root {
  --primary: #FF7514;
  --primary-hover: #e06611;
  --accent: #FFEBCD;
  --highlight: #CC3333;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #FAFAFA;
  --bg-white: #FFFFFF;
  --border-color: #EAEAEA;
  --transition: all 0.3s ease;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 40px; }
h3 { font-size: 1.8rem; }
p { margin-bottom: 15px; color: var(--text-light); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary);
  color: var(--bg-white);
  border-radius: 30px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 117, 20, 0.3);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--bg-white);
}

/* Header */
header {
  background-color: var(--bg-white);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.logo img {
  width: 40px;
  height: 40px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  font-weight: 500;
}

nav a:hover {
  color: var(--primary);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: var(--bg-white);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  color: var(--bg-white);
  margin-bottom: 20px;
}

.hero p {
  color: #f0f0f0;
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Sections */
section {
  padding: 80px 0;
}

/* Block 1: Step Map */
.steps-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 60px;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 50px;
  right: 50px;
  height: 2px;
  background-color: var(--primary);
  z-index: 1;
}

.step {
  text-align: center;
  position: relative;
  z-index: 2;
  width: 18%;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--bg-white);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
  margin: 0 auto 15px;
}

.mini-prices {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.mini-card {
  background: var(--bg-white);
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
  flex: 1;
  max-width: 300px;
}

.mini-card h4 { margin-bottom: 10px; color: var(--primary); }
.mini-card .price { font-size: 1.5rem; font-weight: bold; margin-bottom: 10px; }

.compact-form {
  max-width: 600px;
  margin: 0 auto 40px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.compact-form input {
  flex: 1;
  min-width: 150px;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  outline: none;
}

.compact-form button {
  flex: 1;
  min-width: 150px;
  border-radius: 5px;
}

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

/* Block 2: Carousel */
.carousel-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.carousel-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: rgba(0,0,0,0.6);
  color: white;
  text-align: center;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.7);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  z-index: 10;
}

.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}
.dot.active { background: var(--primary); }

/* Block 3: Accordion */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.acc-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-white);
}

.acc-header {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  background: var(--bg-white);
}

.acc-header:hover { color: var(--primary); }

.acc-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.acc-item.active .acc-content {
  padding: 20px;
  max-height: 500px;
  border-top: 1px solid var(--border-color);
}

/* Block 4: Circular */
.circular-block {
  background-color: var(--accent);
  overflow: hidden;
}

.circle-container {
  position: relative;
  width: 600px;
  height: 600px;
  margin: 0 auto;
  border-radius: 50%;
}

.circle-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid var(--bg-white);
  box-shadow: var(--shadow);
  z-index: 2;
}

.circle-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circle-item {
  position: absolute;
  width: 200px;
  text-align: center;
  background: var(--bg-white);
  padding: 15px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  z-index: 3;
}

.circle-item h4 { margin-bottom: 5px; color: var(--primary); font-size: 1.1rem; }
.circle-item p { font-size: 0.9rem; margin-bottom: 0; }

.ci-1 { top: 5%; left: 50%; transform: translateX(-50%); }
.ci-2 { top: 50%; right: -50px; transform: translateY(-50%); }
.ci-3 { bottom: 5%; left: 50%; transform: translateX(-50%); }
.ci-4 { top: 50%; left: -50px; transform: translateY(-50%); }

/* Block 5: Table */
.schedule-table-wrapper {
  overflow-x: auto;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
  box-shadow: var(--shadow);
  border-radius: 10px;
  overflow: hidden;
}

.schedule-table th, .schedule-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.schedule-table th {
  background-color: var(--primary);
  color: white;
  font-weight: 500;
}

.schedule-table tr:nth-child(even) {
  background-color: var(--bg-light);
}

.schedule-table tr:hover {
  background-color: var(--accent);
}

/* Block 6: Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.price-card {
  background: var(--bg-white);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.3s;
}

.price-card:hover { transform: translateY(-10px); }

.price-card.popular {
  border: 2px solid var(--primary);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.price-title { font-size: 1.2rem; margin-bottom: 15px; }
.price-amount { font-size: 2.5rem; font-weight: bold; color: var(--primary); margin-bottom: 20px; }
.price-features { list-style: none; margin-bottom: 30px; text-align: left; }
.price-features li { padding: 10px 0; border-bottom: 1px solid var(--border-color); }
.price-features li::before { content: '✓'; color: var(--primary); margin-right: 10px; font-weight: bold; }

/* Block 7: Calculator */
.calculator {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.calc-group { margin-bottom: 25px; }
.calc-group label { display: block; margin-bottom: 10px; font-weight: 600; }

input[type=range] {
  width: 100%;
  margin-top: 10px;
}

.radio-group { display: flex; gap: 15px; }
.radio-group label { font-weight: normal; display: flex; align-items: center; gap: 5px; cursor: pointer; }

.calc-result {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.result-val { font-size: 2.5rem; font-weight: bold; color: var(--primary); }

/* Block 8: Selling Text */
.text-block { background-color: var(--accent); }
.text-content { max-width: 800px; margin: 0 auto; }
.text-content p { font-size: 1.1rem; margin-bottom: 20px; line-height: 1.8; }
.pull-quote {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--primary);
  text-align: center;
  margin: 40px 0;
  padding: 20px;
  border-left: 4px solid var(--primary);
  border-right: 4px solid var(--primary);
}

/* Block 9: Infographic */
.infographic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.info-item {
  text-align: center;
  padding: 30px;
  background: var(--bg-white);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.info-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.info-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--highlight);
  margin-bottom: 10px;
}

/* Block 10: Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.gallery-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.gallery-caption {
  text-align: center;
  margin-top: 10px;
  font-style: italic;
  font-size: 0.9rem;
}

.solid-line {
  height: 2px;
  background-color: var(--primary);
  width: 100%;
  margin-top: 40px;
}

/* Block 11: Style Cards */
.styles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.style-card {
  background: var(--bg-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  padding-bottom: 20px;
}

.style-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.style-card h3 { margin: 20px; }

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--bg-white);
  width: 90%;
  max-width: 500px;
  border-radius: 15px;
  padding: 30px;
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.modal-form input {
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
}

/* Footer */
footer {
  background: var(--text-dark);
  color: white;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 { color: white; margin-bottom: 20px; }
.footer-col p, .footer-col a { color: #ccc; margin-bottom: 10px; display: block; }
.footer-col a:hover { color: var(--primary); }

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #ccc;
  font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-white);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  padding: 20px;
  z-index: 3000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(100%);
  transition: transform 0.5s;
}

.cookie-banner.show { transform: translateY(0); }

.cookie-btns { display: flex; gap: 10px; }

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 992px) {
  .steps-container { flex-direction: column; align-items: center; gap: 30px; }
  .steps-container::before { display: none; }
  .step { width: 100%; max-width: 300px; }
  
  .circle-container { width: 100%; max-width: 400px; height: 600px; }
  .circle-center { width: 200px; height: 200px; }
  .circle-item { position: static; transform: none; margin: 15px auto; width: 80%; }
  .ci-wrapper { display: flex; flex-direction: column; }
  
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  nav ul {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-white);
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    transition: left 0.3s;
  }
  nav ul.active { left: 0; }
  .mobile-menu-btn { display: block; }
  
  .hero h1 { font-size: 2rem; }
  .compact-form { flex-direction: column; }
  .mini-prices { flex-direction: column; align-items: center; }
  
  .cookie-banner { flex-direction: column; gap: 15px; text-align: center; }
  .cookie-btns { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .carousel-slides img { height: 300px; }
}
