@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --primary: #C93C20;
  --primary-light: #d95a40;
  --primary-dark: #a8301a;
  --accent: #FF5349;
  --accent-light: #ff7a73;
  --highlight: #FBA0E3;
  --highlight-light: #fcc5ee;
  --bg-cream: #fdf8f6;
  --bg-section: #fef2ef;
  --bg-section-alt: #fff5f3;
  --bg-dark: #1a1210;
  --bg-card: #ffffff;
  --text-dark: #1c1412;
  --text-body: #3d302b;
  --text-muted: #7a6b64;
  --text-light: #f5ece8;
  --border-light: #e8d5cf;
  --border-medium: #d4bfb7;
  --shadow-soft: 0 2px 20px rgba(201, 60, 32, 0.08);
  --shadow-medium: 0 8px 40px rgba(201, 60, 32, 0.12);
  --shadow-strong: 0 16px 60px rgba(201, 60, 32, 0.16);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-sm: 8px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.25s ease;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
  --max-width: 1280px;
  --section-padding: 100px 0;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
ul, ol { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.3;
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

p { margin-bottom: 1rem; font-size: 1rem; line-height: 1.8; }

.section-title {
  text-align: center;
  margin-bottom: 20px;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.section-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 16px auto 0;
  border-radius: 2px;
}

/* HEADER */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(253, 248, 246, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 60, 32, 0.08);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.2rem; flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-body);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width var(--transition);
  border-radius: 1px;
}

.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--primary);
  color: white !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  transition: all var(--transition) !important;
  border: 2px solid var(--primary);
}

.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: transparent !important;
  color: var(--primary) !important;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.burger span {
  width: 26px; height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* mero */
.mero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, #fef2ef 0%, #fde0d8 30%, #fcd0c6 60%, #fef5f2 100%);
  padding-top: 80px;
}

.mero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.mero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}

.mero-shape-1 {
  width: 600px; height: 600px;
  background: var(--primary);
  top: -200px; right: -150px;
  animation: float 20s ease-in-out infinite;
}

.mero-shape-2 {
  width: 400px; height: 400px;
  background: var(--highlight);
  bottom: -100px; left: -100px;
  animation: float 15s ease-in-out infinite reverse;
}

.mero-shape-3 {
  width: 200px; height: 200px;
  background: var(--accent);
  top: 40%; left: 30%;
  animation: float 12s ease-in-out infinite 2s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(30px, -30px) rotate(5deg); }
  50% { transform: translate(-20px, 20px) rotate(-3deg); }
  75% { transform: translate(15px, -15px) rotate(2deg); }
}

.mero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.mero-text { animation: fadeInUp 1s ease forwards; }

.mero-tag {
  display: inline-block;
  background: rgba(201, 60, 32, 0.1);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.mero-text h1 { margin-bottom: 24px; font-weight: 700; }
.mero-text h1 span { color: var(--primary); }
.mero-text p {
  font-size: 1.15rem;
  color: var(--text-body);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.8;
}

.mero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(201, 60, 32, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 8px 30px rgba(201, 60, 32, 0.4);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: var(--primary);
  border-color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background: var(--bg-cream);
  transform: translateY(-2px);
}

.mero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease 0.3s forwards;
  opacity: 0;
}

.mero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.mero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  position: relative;
  z-index: 2;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: linear-gradient(135deg, #f0c0b0, #e8a090);
}

.mero-image-decoration {
  position: absolute;
  width: 100%; height: 100%;
  border: 3px solid var(--primary);
  border-radius: var(--radius-lg);
  top: 20px; left: 20px;
  z-index: 1;
  opacity: 0.3;
}

.mero-stats { display: flex; gap: 40px; margin-top: 40px; }
.mero-stat { text-align: center; }
.mero-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}
.mero-stat-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

/* SCROLL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* CONTENT BLOCKS */
.section { padding: var(--section-padding); }
.section-alt { background: var(--bg-section); }

.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.content-block.reverse { direction: rtl; }
.content-block.reverse > * { direction: ltr; }

.content-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}
.content-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease;
  background: linear-gradient(135deg, #e8c0b0, #d4a090);
}
.content-image:hover img { transform: scale(1.03); }

.content-image-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--primary);
  color: white;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.content-text h2 { margin-bottom: 16px; }
.content-text h3 {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-family: var(--font-body);
}
.content-text p { color: var(--text-body); font-size: 1.05rem; line-height: 1.85; }
.content-text ul { margin: 20px 0; }
.content-text ul li {
  padding: 10px 0 10px 36px;
  position: relative;
  font-size: 1.05rem;
  color: var(--text-body);
}
.content-text ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 20px; height: 20px;
  background: rgba(201, 60, 32, 0.12);
  border-radius: 50%;
}
.content-text ul li::after {
  content: '✓';
  position: absolute;
  left: 4px; top: 14px;
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 700;
}

/* INLINE FORM */
.inline-form {
  margin-top: 32px;
  background: var(--bg-section);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}
.inline-form h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-dark);
}
.inline-form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.inline-form input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition-fast);
  background: white;
}
.inline-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(201, 60, 32, 0.1);
}

/* COUNTERS */
.counters-bar {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  padding: 50px 0;
}
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.counter-item { color: white; }
.counter-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
.counter-label { font-size: 0.9rem; opacity: 0.85; font-weight: 500; }

/* SLIDER */
.slider-section { background: var(--bg-section); }
.slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}
.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slide {
  min-width: 100%;
  position: relative;
}
.slide img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: linear-gradient(135deg, #d8b0a0, #c09080);
}
.slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 40px 30px 30px;
  color: white;
}
.slide-caption h4 {
  color: white;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.slide-caption p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-bottom: 0; }

.slider-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: all var(--transition-fast);
  z-index: 5;
}
.slider-btn:hover {
  background: var(--primary);
  color: white;
}
.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }

.slider-dots {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px;
  z-index: 5;
}
.slider-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.slider-dot.active {
  background: white;
  transform: scale(1.2);
}

/* ACCORDION */
.accordion-section {
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-section) 100%);
}
.accordion-grid { max-width: 900px; margin: 0 auto; }
.accordion-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  margin-bottom: 16px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.accordion-item:hover { box-shadow: var(--shadow-medium); }
.accordion-header {
  padding: 24px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  transition: background var(--transition-fast);
}
.accordion-header:hover { background: rgba(201, 60, 32, 0.03); }
.accordion-header h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-dark);
  flex: 1;
}
.accordion-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(201, 60, 32, 0.08);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.accordion-icon svg {
  width: 18px; height: 18px;
  stroke: var(--primary);
  transition: transform 0.3s ease;
}
.accordion-item.active .accordion-icon { background: var(--primary); }
.accordion-item.active .accordion-icon svg { stroke: white; transform: rotate(180deg); }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-content-inner {
  padding: 0 28px 24px;
  color: var(--text-body);
  line-height: 1.8;
  font-size: 1rem;
}
.accordion-item.active .accordion-content { max-height: 600px; }

/* ABOUT CIRCLE */
.about-circle-section { background: var(--bg-section); }
.about-circle-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.about-circle-center {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-circle-center img {
  width: 280px; height: 280px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 40px rgba(201, 60, 32, 0.2);
  border: 4px solid white;
  background: linear-gradient(135deg, #e0b0a0, #d0a090);
}
.about-circle-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}
.about-circle-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary);
}
.about-circle-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(201, 60, 32, 0.08);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.3rem;
}
.about-circle-item h4 {
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.about-circle-item p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 0;
}
.about-circle-item-1 { grid-column: 1; grid-row: 1; }
.about-circle-item-2 { grid-column: 3; grid-row: 1; }
.about-circle-item-3 { grid-column: 1; grid-row: 2; }
.about-circle-item-4 { grid-column: 3; grid-row: 2; }
.about-circle-item-5 { grid-column: 1; grid-row: 3; }
.about-circle-item-6 { grid-column: 3; grid-row: 3; }
.about-circle-center { grid-column: 2; grid-row: 1 / 4; }

/* TABLE */
.table-section { background: var(--bg-cream); }
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}
.styled-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  font-size: 0.95rem;
}
.styled-table thead {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
}
.styled-table thead th {
  padding: 18px 24px;
  text-align: left;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.styled-table tbody tr {
  border-bottom: 1px solid var(--border-light);
  transition: background var(--transition-fast);
}
.styled-table tbody tr:hover { background: rgba(201, 60, 32, 0.04); }
.styled-table tbody tr:last-child { border-bottom: none; }
.styled-table tbody td {
  padding: 16px 24px;
  color: var(--text-body);
  vertical-align: middle;
}
.styled-table tbody td:first-child { font-weight: 600; color: var(--text-dark); }
.table-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}
.table-badge-green { background: rgba(40, 167, 69, 0.1); color: #1e7e34; }
.table-badge-yellow { background: rgba(200, 150, 20, 0.1); color: #9a7b1a; }

/* PRICING */
.pricing-section {
  background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-cream) 100%);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--border-light);
  transition: background var(--transition);
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}
.pricing-card:hover::before { background: var(--primary); }
.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: var(--shadow-strong);
}
.pricing-card.featured::before {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  height: 4px;
}
.pricing-card.featured:hover { transform: scale(1.05) translateY(-8px); }
.pricing-label {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.pricing-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(201, 60, 32, 0.08);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
}
.pricing-card h3 {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.pricing-description {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.pricing-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
  font-family: var(--font-body);
}
.pricing-period {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 28px;
}
.pricing-features { text-align: left; margin-bottom: 32px; }
.pricing-features li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 12px;
}
.pricing-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.pricing-card .btn { width: 100%; justify-content: center; }

/* predlog */
.predlog-section { background: var(--bg-section); }
.predlog-block {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-light);
}
.predlog-sliders { margin-bottom: 40px; }
.predlog-slider-group {
  margin-bottom: 32px;
}
.predlog-slider-group label {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--text-dark);
}
.predlog-slider-group label strong {
  color: var(--primary);
  font-weight: 700;
}
.calc-range {
  width: 100%;
  height: 8px;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 4px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  outline: none;
}
.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--primary);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: all var(--transition-fast);
}
.calc-range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(201, 60, 32, 0.3);
}
.calc-range::-moz-range-thumb {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--primary);
  cursor: pointer;
}
.calc-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.predlog-result {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.calc-result-card {
  background: var(--bg-section);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--border-light);
}
.calc-result-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 500;
}
.calc-result-price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}
.calc-result-total { color: var(--text-dark); }
.calc-result-per { color: var(--accent); }

/* TEXT ONLY */
.text-only-section {
  background: var(--bg-dark);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}
.text-only-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201, 60, 32, 0.15), transparent 70%);
  pointer-events: none;
}
.text-only-section::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255, 83, 73, 0.12), transparent 70%);
  pointer-events: none;
}
.text-only-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.text-only-content h2 { color: var(--text-light); margin-bottom: 24px; }
.text-only-content p {
  color: rgba(245, 236, 232, 0.85);
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 20px;
}
.highlight-quote {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--accent-light);
  border-left: 4px solid var(--accent);
  padding: 20px 0 20px 30px;
  margin: 40px 0;
  text-align: left;
  line-height: 1.6;
}
.text-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}
.text-columns p { font-size: 1rem; }

/* neof DIAGRAM */
.neof-section {
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-section) 100%);
}
.neof-diagram { max-width: 900px; margin: 0 auto; position: relative; }
.neof-center {
  width: 180px; height: 180px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 60px;
  box-shadow: 0 8px 40px rgba(201, 60, 32, 0.3);
}
.neof-center-text {
  color: white;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}
.neof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.benefit-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary);
}
.benefit-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(201, 60, 32, 0.08);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  transition: all var(--transition);
}
.benefit-card:hover .benefit-icon {
  background: var(--primary);
  transform: scale(1.1);
}
.benefit-card h4 {
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 1.05rem;
}
.benefit-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* VERTICAL PHOTOS */
.vertical-photos-section { background: var(--bg-cream); }
.vertical-photos-block { display: flex; flex-direction: column; }
.vertical-photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  min-height: 280px;
}
.vertical-photo-row::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--highlight), transparent);
}
.vertical-photo-row:last-child::after { display: none; }
.vertical-photo-img { overflow: hidden; }
.vertical-photo-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 280px;
  transition: transform 0.6s ease;
  background: linear-gradient(135deg, #d8b0a0, #c09080);
}
.vertical-photo-img:hover img { transform: scale(1.03); }
.vertical-photo-text {
  display: flex;
  align-items: center;
  padding: 40px 48px;
}
.vertical-photo-text h3 { margin-bottom: 12px; font-size: 1.4rem; }
.vertical-photo-text p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0;
}
.vertical-photo-row:nth-child(even) .vertical-photo-img { order: 2; }
.vertical-photo-row:nth-child(even) .vertical-photo-text { order: 1; }

/* REVIEWS */
.reviews-section {
  background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-cream) 100%);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.review-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 28px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  position: relative;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}
.review-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.review-star { color: #f0b429; font-size: 1.1rem; }
.review-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.review-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
}
.review-name { font-weight: 600; color: var(--text-dark); font-size: 0.95rem; }
.review-role { color: var(--text-muted); font-size: 0.8rem; }
.review-quote-icon {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 3rem;
  color: rgba(201, 60, 32, 0.08);
  font-family: Georgia, serif;
  line-height: 1;
}

/* FORM SECTION */
.form-section {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  position: relative;
  overflow: hidden;
}
.form-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.form-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.form-content h2 { color: white; margin-bottom: 12px; }
.form-content .section-subtitle { color: rgba(255, 255, 255, 0.85); }
.form-content .section-divider { background: rgba(255, 255, 255, 0.4); }
.subscription-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.form-group { position: relative; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-align: left;
  color: rgba(255, 255, 255, 0.9);
}
.form-input {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-fast);
  backdrop-filter: blur(10px);
}
.form-input::placeholder { color: rgba(255, 255, 255, 0.5); }
.form-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}
.form-input option { color: var(--text-dark); background: white; }
.form-submit { grid-column: 1 / -1; margin-top: 10px; }
.form-submit .btn { width: 100%; justify-content: center; padding: 16px 32px; font-size: 1.1rem; }
.form-note {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-top: 8px;
}
.form-note a { color: rgba(255, 255, 255, 0.85); text-decoration: underline; }

/* FOOTER */
.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  color: rgba(245, 236, 232, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}
.footer h4 {
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links a {
  display: block;
  padding: 6px 0;
  color: rgba(245, 236, 232, 0.6);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}
.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 6px;
}
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(245, 236, 232, 0.6);
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.footer-contact-icon {
  color: var(--accent-light);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(245, 236, 232, 0.7);
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--transition);
}
.footer-social-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { color: rgba(245, 236, 232, 0.4); font-size: 0.8rem; margin-bottom: 0; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(245, 236, 232, 0.4); font-size: 0.8rem; }
.footer-bottom-links a:hover { color: var(--accent-light); }

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bg-card);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 24px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-top: 3px solid var(--primary);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner { max-width: var(--max-width); margin: 0 auto; }
.cookie-banner h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.cookie-banner p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.cookie-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-body);
}
.cookie-category input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
}
.cookie-category input[type="checkbox"]:disabled { opacity: 0.7; }
.cookie-category label { cursor: pointer; user-select: none; }
.cookie-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-fast);
}
.cookie-btn-accept {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.cookie-btn-accept:hover { background: var(--primary-dark); }
.cookie-btn-necessary {
  background: transparent;
  color: var(--text-body);
  border-color: var(--border-medium);
}
.cookie-btn-necessary:hover { border-color: var(--primary); color: var(--primary); }
.cookie-btn-settings {
  background: transparent;
  color: var(--text-muted);
  border-color: transparent;
  text-decoration: underline;
}
.cookie-btn-settings:hover { color: var(--primary); }
.cookie-settings {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.cookie-settings.visible { display: block; }

/* LEGAL PAGES */
.legal-page { padding-top: 120px; padding-bottom: 80px; min-height: 100vh; }
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h1 { margin-bottom: 32px; font-size: 2.2rem; }
.legal-content h2 { margin-top: 40px; margin-bottom: 16px; font-size: 1.5rem; }
.legal-content h3 { margin-top: 24px; margin-bottom: 12px; font-size: 1.2rem; }
.legal-content p { margin-bottom: 16px; font-size: 1rem; line-height: 1.8; color: var(--text-body); }
.legal-content ul { margin: 16px 0 16px 24px; list-style: disc; }
.legal-content ul li { margin-bottom: 8px; color: var(--text-body); line-height: 1.7; }
.legal-content a { color: var(--primary); }
.legal-content a:hover { text-decoration: underline; }

/* THANKS PAGE */
.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #fef2ef 0%, #fde0d8 50%, #fef5f2 100%);
  text-align: center;
  padding: 24px;
}
.thanks-content { max-width: 600px; }
.thanks-icon {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 32px;
  animation: pulse 2s ease infinite;
}
.thanks-icon svg { width: 48px; height: 48px; stroke: white; stroke-width: 3; }
.thanks-content h1 { margin-bottom: 16px; }
.thanks-content p { font-size: 1.1rem; color: var(--text-body); margin-bottom: 32px; }

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(201, 60, 32, 0.4);
  z-index: 998;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  font-size: 1.2rem;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-4px);
}

/* LOADER */
.loader {
  position: fixed; inset: 0;
  background: var(--bg-cream);
  display: flex; align-items: center; justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-spinner {
  width: 50px; height: 50px;
  border: 3px solid var(--border-light);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* MOBILE OVERLAY */
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-overlay.visible { opacity: 1; visibility: visible; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .mero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .mero-text p { margin-left: auto; margin-right: auto; }
  .mero-buttons { justify-content: center; }
  .mero-stats { justify-content: center; }
  .mero-image-wrapper { max-width: 400px; margin: 0 auto; }
  .content-block { grid-template-columns: 1fr; gap: 40px; }
  .content-block.reverse { direction: ltr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-8px); }
  .neof-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .text-columns { grid-template-columns: 1fr; }
  .about-circle-block {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .about-circle-center {
    grid-column: 1 / -1;
    grid-row: auto;
    margin-bottom: 20px;
  }
  .about-circle-item-1,
  .about-circle-item-2,
  .about-circle-item-3,
  .about-circle-item-4,
  .about-circle-item-5,
  .about-circle-item-6 {
    grid-column: auto;
    grid-row: auto;
  }
  .predlog-result { grid-template-columns: 1fr; }
  .inline-form-fields { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-padding: 70px 0; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 360px; height: 100vh;
    background: var(--bg-card);
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 24px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    align-items: flex-start;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; }
  .burger { display: flex; }
  .vertical-photo-row { grid-template-columns: 1fr; }
  .vertical-photo-row:nth-child(even) .vertical-photo-img { order: 0; }
  .vertical-photo-row:nth-child(even) .vertical-photo-text { order: 0; }
  .vertical-photo-text { padding: 28px 24px; }
  .vertical-photo-img img { min-height: 220px; }
  .subscription-form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .neof-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .neof-center { width: 140px; height: 140px; }
  .neof-center-text { font-size: 1rem; }
  .mero-stats { flex-direction: column; gap: 16px; }
  .cookie-buttons { flex-direction: column; }
  .cookie-btn { text-align: center; }
  .about-circle-block { grid-template-columns: 1fr; }
  .predlog-block { padding: 28px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .mero { min-height: auto; padding-top: 100px; padding-bottom: 60px; }
  .counters-grid { grid-template-columns: 1fr 1fr; }
  .counter-number { font-size: 2rem; }
}
