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

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

:root {
  --red-dark: #FF9900;
  --red-bright: #FF6E4A;
  --olive: #8B8C7A;
  --white: #FFFFFF;
  --off-white: #F8F7F4;
  --light-gray: #EEEDEA;
  --mid-gray: #C5C4BE;
  --dark-gray: #3A3A38;
  --near-black: #1E1E1C;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--near-black);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.25;
  font-weight: 700;
}

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

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

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

/* ========================================
   HEADER
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--red-dark);
  letter-spacing: -0.5px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  font-weight: 700;
}

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

.nav-desktop a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark-gray);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.3px;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red-bright);
  transition: width var(--transition);
}

.nav-desktop a:hover {
  color: var(--red-dark);
}

.nav-desktop a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-dark);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all var(--transition);
}

.nav-cta:hover {
  background: var(--red-bright);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(179, 40, 33, 0.3);
}

.nav-cta::after {
  display: none !important;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--dark-gray);
  transition: all var(--transition);
  border-radius: 2px;
}

.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(5px, -5px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 999;
  opacity: 0;
  transform: translateY(-20px);
  transition: all var(--transition);
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-gray);
}

.mobile-nav a:hover {
  color: var(--red-dark);
}

/* ========================================
   HERO / BANNER
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--near-black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(30, 30, 28, 0.85) 0%,
    rgba(179, 40, 33, 0.4) 50%,
    rgba(30, 30, 28, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: 8px 20px;
  border-radius: 50px;
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 500;
  width: fit-content;
  letter-spacing: 0.5px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--red-bright);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  max-width: 700px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
}

.hero h1 span {
  color: var(--red-bright);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  line-height: 1.8;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-dark);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(179, 40, 33, 0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
}

/* ========================================
   SECTION COMMON
   ======================================== */
.section {
  padding: 100px 0;
  position: relative;
}

.section-alt {
  background: var(--off-white);
}

.section-dark {
  background: var(--near-black);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-dark);
  margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--red-dark);
  opacity: 0.4;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--near-black);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-dark .section-title {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--olive);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========================================
   CONTENT BLOCKS (Image + Text alternating)
   ======================================== */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 0;
}

.content-block.reverse {
  direction: rtl;
}

.content-block.reverse > * {
  direction: ltr;
}

.content-block-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.content-block-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.content-block-image:hover img {
  transform: scale(1.03);
}

.content-block-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
  pointer-events: none;
}

.content-block-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.content-block-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red-dark);
  width: fit-content;
}

.content-block-tag .tag-line {
  width: 32px;
  height: 2px;
  background: var(--red-bright);
  border-radius: 1px;
}

.content-block-text h2 {
  font-size: 2rem;
  color: var(--near-black);
  letter-spacing: -0.3px;
}

.content-block-text p {
  color: #5A5A58;
  font-size: 1rem;
  line-height: 1.8;
}

.content-block-text ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
}

.content-block-text ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #5A5A58;
  font-size: 0.95rem;
  line-height: 1.6;
}

.content-block-text ul li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  background: var(--red-bright);
  border-radius: 50%;
  opacity: 0.15;
  position: relative;
}

.content-block-text ul li::after {
  content: '✓';
  position: absolute;
  margin-left: 5px;
  margin-top: 2px;
  color: var(--red-dark);
  font-size: 0.7rem;
  font-weight: 700;
}

.check-list li {
  position: relative;
}

/* ========================================
   SLIDER
   ======================================== */
.slider-section {
  background: var(--near-black);
  padding: 100px 0;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

.slider-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 32px 32px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: var(--white);
}

.slider-slide-caption h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.slider-slide-caption p {
  font-size: 0.95rem;
  opacity: 0.8;
  max-width: 500px;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 1.2rem;
}

.slider-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

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

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

/* ========================================
   TABLE BLOCK
   ======================================== */
.table-container {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-gray);
}

.styled-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.styled-table thead {
  background: var(--red-dark);
  color: var(--white);
}

.styled-table thead th {
  padding: 18px 24px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.styled-table tbody tr {
  border-bottom: 1px solid var(--light-gray);
  transition: background var(--transition);
}

.styled-table tbody tr:hover {
  background: rgba(139, 140, 122, 0.06);
}

.styled-table tbody tr:last-child {
  border-bottom: none;
}

.styled-table td {
  padding: 16px 24px;
  color: var(--dark-gray);
}

.styled-table td:first-child {
  font-weight: 600;
  color: var(--near-black);
}

.table-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-green {
  background: rgba(34, 139, 34, 0.1);
  color: #228B22;
}

.badge-blue {
  background: rgba(30, 90, 180, 0.1);
  color: #1E5AB4;
}

.badge-amber {
  background: rgba(200, 150, 20, 0.1);
  color: #A07810;
}

/* ========================================
   PRICE CARDS
   ======================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.price-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  border: 1px solid var(--light-gray);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--mid-gray);
  transition: background var(--transition);
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.price-card:hover::before {
  background: var(--red-bright);
}

.price-card.featured {
  border-color: var(--red-dark);
  box-shadow: var(--shadow-md);
}

.price-card.featured::before {
  background: var(--red-dark);
}

.price-card-label {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--red-dark);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.price-card-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--near-black);
  margin-bottom: 8px;
}

.price-card-desc {
  font-size: 0.9rem;
  color: var(--olive);
  margin-bottom: 24px;
  line-height: 1.6;
}

.price-card-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}

.price-card-currency {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-gray);
}

.price-card-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--near-black);
  line-height: 1;
}

.price-card-period {
  font-size: 0.9rem;
  color: var(--olive);
}

.price-card-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.price-card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--dark-gray);
}

.price-card-features li .check-icon {
  width: 18px;
  height: 18px;
  background: rgba(34, 139, 34, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #228B22;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}

.price-card .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.price-card .btn-secondary {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--light-gray);
  color: var(--near-black);
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.price-card .btn-secondary:hover {
  background: var(--mid-gray);
}

/* ========================================
   TEXT-ONLY BLOCK
   ======================================== */
.text-block-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.text-block-inner h2 {
  font-size: 2.25rem;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}

.text-block-inner p {
  color: #5A5A58;
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 20px;
}

.text-block-inner p:last-child {
  margin-bottom: 0;
}

.text-highlight {
  background: linear-gradient(120deg, rgba(220,20,60,0.08) 0%, rgba(220,20,60,0.02) 100%);
  border-left: 3px solid var(--red-bright);
  padding: 24px 28px;
  border-radius: 0 8px 8px 0;
  margin: 32px 0;
  text-align: left;
  font-style: italic;
  color: var(--dark-gray);
}

/* ========================================
   BENEFITS DIAGRAM
   ======================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.benefit-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--light-gray);
  transition: all var(--transition);
  position: relative;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(179,40,33,0.08), rgba(220,20,60,0.04));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: all var(--transition);
}

.benefit-card:hover .benefit-icon {
  background: linear-gradient(135deg, var(--red-dark), var(--red-bright));
  color: var(--white);
  transform: scale(1.05);
}

.benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--near-black);
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--olive);
  line-height: 1.6;
}

/* ========================================
   CALCULATOR
   ======================================== */
.calculator-section {
  background: linear-gradient(135deg, var(--near-black) 0%, #2a2a28 100%);
  color: var(--white);
}

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

.calculator-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.calc-field label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.8);
}

.calc-slider-wrapper {
  position: relative;
}

.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.15);
  outline: none;
  cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red-bright);
  border: 3px solid var(--white);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.15s;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red-bright);
  border: 3px solid var(--white);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.calc-value {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.calc-value span:last-child {
  color: var(--red-bright);
  font-weight: 600;
}

.calculator-result {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}

.calc-result-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

.calc-result-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.calc-result-price span {
  font-size: 1.75rem;
  font-weight: 600;
}

.calc-result-per {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
}

.calc-result-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}

.calc-detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.calc-detail-row .label {
  color: rgba(255,255,255,0.5);
}

.calc-detail-row .value {
  color: var(--white);
  font-weight: 600;
}

.calc-result-cta {
  margin-top: 24px;
}

/* ========================================
   REVIEWS
   ======================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--light-gray);
  transition: all var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: #F0A500;
  font-size: 0.9rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--dark-gray);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-dark), var(--red-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.review-author-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--near-black);
}

.review-author-info p {
  font-size: 0.8rem;
  color: var(--olive);
}

/* ========================================
   FORM / CONTACT
   ======================================== */
.form-section {
  background: linear-gradient(135deg, #f5f0eb 0%, var(--off-white) 100%);
}

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

.form-info h2 {
  font-size: 2.25rem;
  margin-bottom: 16px;
  color: var(--near-black);
  letter-spacing: -0.3px;
}

.form-info p {
  color: #5A5A58;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.form-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.form-contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(179,40,33,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.form-contact-item span {
  font-size: 0.95rem;
  color: var(--dark-gray);
}

.form-box {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-box h3 {
  font-size: 1.35rem;
  margin-bottom: 24px;
  color: var(--near-black);
}

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

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--near-black);
  transition: all var(--transition);
  outline: none;
  background: var(--off-white);
}

.form-group input:focus {
  border-color: var(--red-dark);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(179,40,33,0.08);
}

.form-group input::placeholder {
  color: var(--mid-gray);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 0.8rem;
  color: var(--olive);
  line-height: 1.5;
}

.form-consent input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--red-dark);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.form-consent a {
  color: var(--red-dark);
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  justify-content: center;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--near-black);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand .logo-icon {
  background: var(--red-bright);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
  color: rgba(255,255,255,0.5);
}

.footer-column h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-column a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  transition: color var(--transition);
}

.footer-column a:hover {
  color: var(--red-bright);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links a:hover {
  color: rgba(255,255,255,0.7);
}

/* ========================================
   COOKIE BANNER
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.12);
  padding: 24px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--near-black);
}

.cookie-text p {
  font-size: 0.85rem;
  color: var(--olive);
  line-height: 1.5;
}

.cookie-text a {
  color: var(--red-dark);
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.cookie-accept {
  background: var(--red-dark);
  color: var(--white);
}

.cookie-accept:hover {
  background: var(--red-bright);
}

.cookie-necessary {
  background: var(--light-gray);
  color: var(--near-black);
}

.cookie-necessary:hover {
  background: var(--mid-gray);
}

.cookie-settings-btn {
  background: transparent;
  color: var(--dark-gray);
  border: 1px solid var(--light-gray);
}

.cookie-settings-btn:hover {
  border-color: var(--mid-gray);
}

.cookie-settings-panel {
  display: none;
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid var(--light-gray);
  margin-top: 16px;
}

.cookie-settings-panel.open {
  display: block;
}

.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.cookie-category-info h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--near-black);
  margin-bottom: 2px;
}

.cookie-category-info p {
  font-size: 0.8rem;
  color: var(--olive);
}

.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--mid-gray);
  border-radius: 12px;
  cursor: pointer;
  transition: background var(--transition);
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform var(--transition);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--red-dark);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(20px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

.scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-page {
  padding: 120px 0 80px;
  min-height: 100vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--near-black);
}

.legal-date {
  font-size: 0.9rem;
  color: var(--olive);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--light-gray);
}

.legal-content h2 {
  font-size: 1.35rem;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--near-black);
}

.legal-content p {
  font-size: 0.95rem;
  color: var(--dark-gray);
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  font-size: 0.95rem;
  color: var(--dark-gray);
  margin-bottom: 8px;
  line-height: 1.7;
}

/* ========================================
   THANKS PAGE
   ======================================== */
.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, var(--off-white), var(--white));
}

.thanks-content {
  max-width: 520px;
}

.thanks-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--red-dark), var(--red-bright));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2.5rem;
  animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounceIn {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

.thanks-content h1 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--near-black);
}

.thanks-content p {
  font-size: 1.05rem;
  color: var(--olive);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ========================================
   SCROLL TO TOP
   ======================================== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red-dark);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(179,40,33,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition);
  z-index: 998;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .content-block {
    gap: 40px;
  }
  
  .pricing-grid,
  .benefits-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .calculator-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .nav-desktop {
    display: none;
  }
  
  .burger {
    display: flex;
  }
  
  .content-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .content-block.reverse {
    direction: ltr;
  }
  
  .content-block-image img {
    height: 280px;
  }
  
  .pricing-grid,
  .benefits-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }
  
  .hero-stat-number {
    font-size: 1.5rem;
  }
  
  .slider-slide img {
    height: 300px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .section {
    padding: 64px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-actions {
    flex-direction: column;
  }
  
  .cookie-btn {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }
  
  .calc-result-price {
    font-size: 2.5rem;
  }
}
