@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --primary: #DE4C8A;
  --primary-light: #e87ba8;
  --accent: #F3A505;
  --highlight: #F64A46;
  --text: #333333;
  --text-light: #666666;
  --bg: #ffffff;
  --bg-alt: #f9f9f9;
  --bg-dark: #1a1a1a;
  --white: #ffffff;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --border-radius: 12px;
  --transition: 0.3s ease;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--bg-dark);
  line-height: 1.3;
}

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

ul {
  list-style: none;
}

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

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0px auto;
  padding: 0 20px;
}
 

section {
   padding: 80px 0;
}

.sec {
   padding: 80px 0;
}


.section-bg {
  background-color: var(--bg-alt);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: 700;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-family: var(--font-head);
  cursor: pointer;
  border: none;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--highlight));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(222, 76, 138, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(222, 76, 138, 0.4);
  color: var(--white);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(243, 165, 5, 0.3);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 165, 5, 0.4);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 15px 0;
}

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

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

.logo svg {
  width: 30px;
  height: 30px;
  fill: var(--primary);
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  font-weight: 600;
  font-size: 1rem;
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(222, 76, 138, 0.1), rgba(246, 74, 70, 0.05));
  padding-top: 80px;
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--bg-dark);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: var(--text-light);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.floating-svg {
  position: absolute;
  opacity: 0.1;
  z-index: 1;
}

.svg-1 { top: 20%; left: 10%; width: 150px; animation: float 6s ease-in-out infinite; }
.svg-2 { bottom: 20%; right: 10%; width: 200px; animation: float 8s ease-in-out infinite alternate; }

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-down svg {
  width: 30px;
  height: 30px;
  fill: var(--primary);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-20px) translateX(-50%); }
  60% { transform: translateY(-10px) translateX(-50%); }
}

/* Blocks 1, 2, 3 */
.split-block {
  display: flex;
  align-items: center;
  gap: 50px;
}

.split-block.reverse {
  flex-direction: row-reverse;
}

.split-block .image-col, .split-block .text-col {
  flex: 1;
}

.split-block img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.split-block h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.split-block p {
  margin-bottom: 20px;
  color: var(--text-light);
}

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

.full-block img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
}

/* Form Styles */
.inline-form {
  margin-top: 30px;
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

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

.form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(222, 76, 138, 0.1);
}

.inline-form button {
  width: 100%;
}

/* Slider */
.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.slider {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  padding: 80px 40px;
  text-align: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.slide h3 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.slide p {
  font-size: 1.2rem;
  max-width: 600px;
}

.slide-1 { background: linear-gradient(135deg, #DE4C8A, #F64A46); }
.slide-2 { background: linear-gradient(135deg, #3a1c71, #d76d77); }
.slide-3 { background: linear-gradient(135deg, #F3A505, #F64A46); }
.slide-4 { background: linear-gradient(135deg, #56ab2f, #a8e063); }
.slide-5 { background: linear-gradient(135deg, #11998e, #38ef7d); }

.slider-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--white);
  transform: scale(1.2);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.3);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-arrow:hover {
  background: rgba(255,255,255,0.6);
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

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

.accordion-item {
  margin-bottom: 15px;
  border-radius: var(--border-radius);
  background: var(--white);
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  overflow: hidden;
}

.accordion-header {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-family: var(--font-head);
  font-size: 1.1rem;
  transition: var(--transition);
}

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

.accordion-header::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.accordion-item.active .accordion-header::after {
  transform: rotate(45deg);
}

.accordion-item.active .accordion-header {
  color: var(--primary);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 25px;
}

.accordion-item.active .accordion-content {
  padding-bottom: 20px;
}

/* Circular Photo Block */
.circle-block {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.circle-photo {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 10px solid var(--white);
  position: relative;
  z-index: 2;
}

.bubble {
  position: absolute;
  background: var(--white);
  padding: 15px 20px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 1;
  animation: float 4s ease-in-out infinite alternate;
}

.bubble-1 { top: 10%; left: 20%; animation-delay: 0s; }
.bubble-2 { top: 20%; right: 20%; animation-delay: 0.5s; }
.bubble-3 { bottom: 20%; left: 15%; animation-delay: 1s; }
.bubble-4 { bottom: 15%; right: 15%; animation-delay: 1.5s; }
.bubble-5 { top: 50%; left: 10%; animation-delay: 2s; }
.bubble-6 { top: 50%; right: 10%; animation-delay: 2.5s; }

/* Table */
.table-container {
  overflow-x: auto;
}

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

.comparison-table th, .comparison-table td {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.comparison-table th {
  background: var(--bg-alt);
  font-family: var(--font-head);
  font-size: 1.1rem;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
}

.col-popular {
  background: rgba(243, 165, 5, 0.05);
  border-left: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}

.th-popular {
  background: var(--accent) !important;
  color: var(--white);
  position: relative;
}

.badge-popular {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--highlight);
  color: var(--white);
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 10px;
  text-transform: uppercase;
}

/* Price Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.price-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.price-card.popular {
  border: 2px solid var(--accent);
  transform: scale(1.05);
}

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

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

.card-title {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.card-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--bg-dark);
  margin-bottom: 20px;
}

.card-features {
  text-align: left;
  margin-bottom: 30px;
  flex-grow: 1;
}

.card-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: bold;
}

/* Calculator */
.calc-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.calc-group {
  margin-bottom: 30px;
}

.calc-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: var(--font-head);
}

input[type="range"] {
  width: 100%;
  accent-color: var(--primary);
}

.radio-group {
  display: flex;
  gap: 20px;
}

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

.calc-result {
  text-align: center;
  background: var(--bg-alt);
  padding: 20px;
  border-radius: 8px;
}

.calc-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
}

/* Selling Text */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

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

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

.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--highlight));
  color: var(--white);
  padding: 60px;
  border-radius: var(--border-radius);
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 20px;
}

/* Infographic */
.infographic {
  display: flex;
  gap: 50px;
  align-items: center;
}

.info-text {
  flex: 1;
}

.info-bars {
  flex: 1;
}

.bar-group {
  margin-bottom: 20px;
}

.bar-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-weight: 600;
}

.bar-bg {
  height: 10px;
  background: #eee;
  border-radius: 5px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--accent);
  width: 0;
  transition: width 1.5s ease-out;
}

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

.gallery-item {
  border-top: 4px solid var(--primary);
  padding-top: 20px;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.gallery-item p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Testimonials */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.test-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.test-stars {
  color: var(--accent);
  margin-bottom: 15px;
}

.test-text {
  font-style: italic;
  margin-bottom: 20px;
}

.test-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.test-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.test-user h5 {
  margin: 0;
  font-size: 1rem;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 20px;
}

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

.footer-logo {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo svg {
  fill: var(--white);
  width: 25px;
  height: 25px;
}

.footer h4 {
  color: var(--white);
  margin-bottom: 20px;
}

.footer ul li {
  margin-bottom: 10px;
}

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

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
  padding: 20px 0;
  z-index: 9999;
  transition: bottom 0.5s ease;
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

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

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

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero h1 { font-size: 3rem; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .circle-block { height: auto; padding: 50px 0; flex-direction: column; }
  .bubble { position: relative; inset: auto !important; margin: 10px 0; animation: none; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  .nav.active { left: 0; }
  
  .split-block, .split-block.reverse, .infographic {
    flex-direction: column;
  }
  .test-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  
  .cookie-content { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
}
