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

:root {
  --primary: #1a1a2e;
  --secondary: #16213e;
  --accent: #0f3460;
  --highlight: #e94560;
  --light: #f5f5f5;
  --white: #ffffff;
  --text: #2d3436;
  --border: #dfe6e9;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.5;
  color: var(--text);
  font-size: 14px;
}

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

header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 20px;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--highlight));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

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

nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

nav a:hover {
  background: linear-gradient(135deg, var(--highlight), #ff6b81);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
}

.hero-modern {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  overflow: hidden;
  padding: 80px 20px 60px;
}

.hero-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(233, 69, 96, 0.15) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(15, 52, 96, 0.15) 0%,
      transparent 40%
    );
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  pointer-events: none;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: var(--white);
}

.hero-label {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 4px;
  background: linear-gradient(135deg, var(--highlight), #ff6b81);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  font-weight: 700;
  animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-modern h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 25px;
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease 0.2s both;
}

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

.hero-modern p {
  font-size: 20px;
  opacity: 0.95;
  margin-bottom: 40px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--highlight), #ff6b81);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.4s ease;
  border: none;
  display: inline-block;
  box-shadow: 0 8px 25px rgba(233, 69, 96, 0.4);
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(233, 69, 96, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.4s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

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

.stat-number {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--highlight);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.4;
}

.page-hero h1 {
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 15px;
  position: relative;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.page-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

section {
  padding: 35px 0;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--highlight);
  margin-bottom: 10px;
  font-weight: 600;
}

h2 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--primary);
  font-weight: 600;
}

h3 {
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--primary);
  font-weight: 600;
}

h4 {
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--primary);
  font-weight: 600;
}

p {
  margin-bottom: 12px;
  font-size: 14px;
}

.intro {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.intro-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefits {
  background: var(--light);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.benefit-card {
  background: var(--white);
  padding: 25px;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--highlight);
}

.benefit-icon {
  font-size: 32px;
  color: var(--highlight);
  margin-bottom: 15px;
}

.philosophy {
  background: var(--light);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 20px;
}

.philosophy-quote {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid var(--highlight);
}

.philosophy-quote blockquote {
  background: transparent;
  padding: 0;
  border: none;
  margin: 0;
}

.philosophy-quote p {
  font-size: 16px;
  font-style: italic;
  line-height: 1.8;
  color: var(--text);
}

.philosophy-quote cite {
  margin-top: 15px;
  font-size: 13px;
  color: var(--accent);
  display: block;
  font-style: normal;
}

.journey {
  background: var(--white);
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.step {
  position: relative;
  padding: 25px;
  background: var(--light);
  border-radius: 8px;
}

.step-number {
  font-size: 14px;
  font-weight: 700;
  color: var(--highlight);
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.transformation {
  background: var(--light);
}

.transformation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.transform-item {
  background: var(--white);
  padding: 25px;
  border-radius: 8px;
}

.transform-item h3 {
  color: var(--highlight);
  margin-bottom: 15px;
}

.transform-item p {
  font-size: 13px;
  margin-bottom: 10px;
}

.products {
  background: var(--light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.product {
  background: var(--white);
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-content {
  padding: 25px;
  text-align: center;
}

.product h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.product p {
  font-size: 13px;
  margin-bottom: 10px;
}

.price {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin: 10px 0;
}

.buy-button {
  display: inline-block;
  background: var(--highlight);
  color: var(--white);
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 3px;
  font-size: 13px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.buy-button:hover {
  background: var(--accent);
}

.testimonials {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.testimonial {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid var(--highlight);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial p {
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.testimonial-author strong {
  color: var(--primary);
  font-size: 14px;
}

.testimonial-author span {
  font-size: 12px;
  color: var(--accent);
}

.final-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  padding: 60px 20px;
  text-align: center;
}

.final-cta-content h2 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 15px;
}

.final-cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-bottom: 30px;
}

.cta-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.content-section,
.reflection {
  background: var(--white);
}

.rooms article {
  margin-bottom: 20px;
}

.tips ul {
  padding-left: 20px;
}

.tips li {
  margin-bottom: 10px;
  font-size: 14px;
}

.journal-entries {
  background: var(--white);
}

.journal-entry {
  background: var(--light);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.entry-date {
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 10px;
}

.contact-content {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.info-item {
  margin-bottom: 20px;
}

.info-item h3 {
  font-size: 15px;
  margin-bottom: 5px;
}

.info-item p {
  font-size: 13px;
}

.contact-form-wrapper {
  background: var(--light);
  padding: 25px;
  border-radius: 5px;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

input[type='text'],
input[type='email'],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 13px;
  font-family: inherit;
}

textarea {
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.checkbox-group input[type='checkbox'] {
  margin-top: 3px;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
}

.submit-button {
  background: var(--highlight);
  color: var(--white);
  padding: 12px 30px;
  border: none;
  border-radius: 3px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-button:hover {
  background: var(--accent);
}

.map-section {
  background: var(--light);
}

.map-container {
  margin-top: 20px;
  border-radius: 5px;
  overflow: hidden;
}

.map-container iframe {
  display: block;
}

.thankyou-page,
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  padding: 20px;
}

.thankyou-content,
.error-content {
  background: var(--white);
  padding: 40px;
  border-radius: 5px;
  text-align: center;
  max-width: 600px;
}

.thankyou-content h1,
.error-content h1 {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 15px;
}

.error-content h1 {
  font-size: 72px;
}

.error-content h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.thankyou-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0;
}

.thankyou-quote {
  font-style: italic;
  color: var(--accent);
  margin-top: 20px;
}

.policy-page {
  background: var(--white);
}

.policy-page .container {
  max-width: 900px;
}

.policy-page h1 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 10px;
}

.update-date {
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 25px;
}

.policy-page h2 {
  margin-top: 25px;
}

.policy-page h3 {
  margin-top: 15px;
}

.policy-page ul,
.policy-page ol {
  padding-left: 25px;
  margin-bottom: 15px;
}

.policy-page li {
  margin-bottom: 8px;
  font-size: 14px;
}

.policy-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 13px;
}

.policy-page th,
.policy-page td {
  border: 1px solid var(--border);
  padding: 10px;
  text-align: left;
}

.policy-page th {
  background: var(--light);
  font-weight: 600;
}

footer {
  background: var(--primary);
  color: var(--white);
  padding: 30px 0 15px;
  font-size: 13px;
}

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

.footer-section h4 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 15px;
}

.footer-section p {
  font-size: 13px;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 6px;
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.footer-section a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: var(--white);
  padding: 15px;
  z-index: 1000;
  display: none;
}

.privacy-popup.show {
  display: block;
}

.privacy-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.privacy-content p {
  margin: 0;
  font-size: 13px;
  flex: 1;
  min-width: 250px;
}

.privacy-content button {
  background: var(--white);
  color: var(--primary);
  border: none;
  padding: 8px 20px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.3s;
}

.privacy-content button:hover {
  background: var(--light);
}

@media (max-width: 768px) {
  body {
    font-size: 13px;
  }
  .hero-modern {
    min-height: 70vh;
    padding: 40px 15px 30px;
  }
  .hero-modern h1 {
    font-size: 32px;
  }
  .hero-modern p {
    font-size: 15px;
  }
  .hero-stats {
    gap: 25px;
  }
  .stat-number {
    font-size: 24px;
  }
  .intro-grid,
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-hero h1 {
    font-size: 22px;
  }
  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 16px;
  }
  section {
    padding: 25px 0;
  }
  .benefits-grid,
  .products-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  nav ul {
    gap: 10px;
  }
  nav a {
    font-size: 12px;
    padding: 4px 0;
  }
  .thankyou-content,
  .error-content {
    padding: 30px 20px;
  }
  .thankyou-content h1 {
    font-size: 26px;
  }
  .error-content h1 {
    font-size: 56px;
  }
  .final-cta-content h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
  .logo {
    font-size: 16px;
  }
  nav ul {
    gap: 8px;
  }
  .hero-modern {
    padding: 30px 12px 25px;
    min-height: 65vh;
  }
  .hero-modern h1 {
    font-size: 26px;
  }
  .hero-modern p {
    font-size: 14px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    padding: 12px 24px;
  }
  .hero-stats {
    gap: 20px;
  }
  .stat-number {
    font-size: 20px;
  }
  .page-hero {
    padding: 20px 0;
  }
  .page-hero h1 {
    font-size: 20px;
  }
  section {
    padding: 20px 0;
  }
  .thankyou-buttons {
    flex-direction: column;
  }
  .buy-button {
    font-size: 12px;
    padding: 8px 16px;
  }
  .final-cta-content h2 {
    font-size: 24px;
  }
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
}

@media (max-width: 320px) {
  body {
    font-size: 12px;
  }
  .logo {
    font-size: 14px;
  }
  .hero-modern h1 {
    font-size: 22px;
  }
  .page-hero h1 {
    font-size: 18px;
  }
  h2 {
    font-size: 18px;
  }
  h3 {
    font-size: 15px;
  }
  .stat-number {
    font-size: 18px;
  }
  .final-cta-content h2 {
    font-size: 20px;
  }
}
