@import url('https://fonts.googleapis.com/css2?family=Yeseva+One&family=Mulish:wght@300;400;500;600&display=swap');

:root {
  --rzos-sage: #3D7A5E;
  --rzos-ochre: #D4A853;
  --rzos-cream: #FAFAF2;
  --rzos-dark: #1A3328;
  --rzos-muted: #E8F2EB;
  --rzos-text: #1C1C1C;
  --rzos-sage-light: #5a9478;
  --rzos-ochre-dark: #b8903e;
  --rzos-shadow: rgba(29, 51, 40, 0.12);
  --rzos-radius: 12px;
  --rzos-radius-lg: 20px;
  --rzos-transition: 0.3s ease;
  --rzos-nav-h: 68px;
}

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

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

body {
  font-family: 'Mulish', sans-serif;
  background-color: var(--rzos-cream);
  color: var(--rzos-text);
  line-height: 1.7;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Yeseva One', serif;
  font-weight: 400;
  line-height: 1.25;
}

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

a:hover {
  color: var(--rzos-ochre);
}

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

ul {
  list-style: none;
}

/* ========== UTILITY ========== */
.rzos-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.rzos-section {
  padding: 90px 0;
}

.rzos-section-label {
  font-family: 'Mulish', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rzos-ochre);
  display: block;
  margin-bottom: 12px;
}

.rzos-section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--rzos-dark);
  margin-bottom: 18px;
}

.rzos-section-sub {
  font-size: 1.05rem;
  color: #4a5e56;
  max-width: 620px;
  font-weight: 300;
}

.rzos-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Mulish', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--rzos-transition);
  text-align: center;
}

.rzos-btn-primary {
  background: var(--rzos-sage);
  color: #fff;
  border-color: var(--rzos-sage);
}

.rzos-btn-primary:hover {
  background: var(--rzos-dark);
  border-color: var(--rzos-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--rzos-shadow);
}

.rzos-btn-ochre {
  background: var(--rzos-ochre);
  color: var(--rzos-dark);
  border-color: var(--rzos-ochre);
}

.rzos-btn-ochre:hover {
  background: var(--rzos-ochre-dark);
  border-color: var(--rzos-ochre-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 168, 83, 0.35);
}

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

.rzos-btn-outline:hover {
  background: var(--rzos-sage);
  color: #fff;
  transform: translateY(-2px);
}

/* ========== STICKY NAV ========== */
.rzos-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--rzos-nav-h);
  background: rgba(250, 250, 242, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(61, 122, 94, 0.12);
  display: flex;
  align-items: center;
  transition: box-shadow var(--rzos-transition);
}

.rzos-nav.rzos-nav--scrolled {
  box-shadow: 0 4px 20px var(--rzos-shadow);
}

.rzos-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.rzos-logo {
  font-family: 'Yeseva One', serif;
  font-size: 1.4rem;
  color: var(--rzos-dark);
  letter-spacing: -0.02em;
}

.rzos-logo span {
  color: var(--rzos-sage);
}

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

.rzos-nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--rzos-dark);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: all var(--rzos-transition);
}

.rzos-nav-links a:hover {
  color: var(--rzos-sage);
  border-bottom-color: var(--rzos-sage);
}

.rzos-drawer-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  border-radius: 6px;
  transition: background var(--rzos-transition);
}

.rzos-drawer-btn:hover {
  background: var(--rzos-muted);
}

.rzos-drawer-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--rzos-dark);
  border-radius: 2px;
  transition: all var(--rzos-transition);
}

.rzos-drawer-btn.rzos-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.rzos-drawer-btn.rzos-open span:nth-child(2) {
  opacity: 0;
}

.rzos-drawer-btn.rzos-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.rzos-mobile-menu {
  display: none;
  position: fixed;
  top: var(--rzos-nav-h);
  left: 0;
  right: 0;
  background: var(--rzos-cream);
  border-bottom: 1px solid rgba(61, 122, 94, 0.12);
  z-index: 999;
  padding: 20px 24px;
  box-shadow: 0 8px 24px var(--rzos-shadow);
}

.rzos-mobile-menu.rzos-menu-open {
  display: block;
}

.rzos-mobile-menu a {
  display: block;
  padding: 12px 0;
  font-weight: 500;
  color: var(--rzos-dark);
  border-bottom: 1px solid var(--rzos-muted);
  font-size: 1rem;
}

.rzos-mobile-menu a:last-child {
  border-bottom: none;
}

/* ========== HERO ========== */
.rzos-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--rzos-nav-h);
  background: linear-gradient(135deg, var(--rzos-dark) 0%, #2a5a43 40%, #1e4535 70%, var(--rzos-dark) 100%);
  animation: rzosHeroGrad 12s ease-in-out infinite alternate;
}

@keyframes rzosHeroGrad {
  0% { background: linear-gradient(135deg, #1A3328 0%, #2a5a43 40%, #1e4535 70%, #1A3328 100%); }
  33% { background: linear-gradient(135deg, #2a5a43 0%, #3D7A5E 40%, #1A3328 70%, #2a5a43 100%); }
  66% { background: linear-gradient(135deg, #1e4535 0%, #1A3328 40%, #3D7A5E 70%, #1e4535 100%); }
  100% { background: linear-gradient(135deg, #3D7A5E 0%, #1A3328 40%, #2a5a43 70%, #3D7A5E 100%); }
}

.rzos-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 168, 83, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.rzos-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 60px 24px;
}

.rzos-hero-badge {
  display: inline-block;
  background: rgba(212, 168, 83, 0.18);
  border: 1px solid rgba(212, 168, 83, 0.4);
  color: var(--rzos-ochre);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.rzos-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--rzos-cream);
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.rzos-hero h1 em {
  color: var(--rzos-ochre);
  font-style: normal;
}

.rzos-hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(250, 250, 242, 0.82);
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.rzos-hero-cta {
  font-size: 1.15rem;
  padding: 18px 48px;
  margin-bottom: 40px;
  box-shadow: 0 8px 32px rgba(212, 168, 83, 0.4);
}

.rzos-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.rzos-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(250, 250, 242, 0.85);
  font-size: 0.88rem;
  font-weight: 500;
}

.rzos-trust-item .rzos-check {
  color: var(--rzos-ochre);
  font-size: 1rem;
  font-weight: 700;
}

/* ========== DISCLAIMER BAR ========== */
.rzos-disclaimer-bar {
  background: var(--rzos-muted);
  border-top: 1px solid rgba(61, 122, 94, 0.15);
  border-bottom: 1px solid rgba(61, 122, 94, 0.15);
  padding: 14px 24px;
  text-align: center;
}

.rzos-disclaimer-bar p {
  font-size: 0.82rem;
  color: #5a7060;
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto;
}

/* ========== CONTACT FORM SECTION ========== */
.rzos-form-section {
  padding: 80px 0;
  background: #fff;
}

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

.rzos-form-intro {
  padding-top: 12px;
}

.rzos-form-intro p {
  color: #4a5e56;
  font-size: 1rem;
  margin-bottom: 24px;
  font-weight: 300;
}

.rzos-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.rzos-contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--rzos-muted);
  border-radius: var(--rzos-radius);
  padding: 14px 18px;
}

.rzos-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rzos-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 1rem;
}

.rzos-contact-card span {
  font-size: 0.9rem;
  color: var(--rzos-dark);
  font-weight: 500;
}

.rzos-form-disclaimer {
  font-size: 0.8rem;
  color: #7a9080;
  margin-bottom: 20px;
  font-style: italic;
}

#rzos-write-form {
  background: var(--rzos-muted);
  border-radius: var(--rzos-radius-lg);
  padding: 36px;
}

.rzos-field {
  margin-bottom: 20px;
}

.rzos-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rzos-dark);
  margin-bottom: 7px;
  letter-spacing: 0.03em;
}

.rzos-field input,
.rzos-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(61, 122, 94, 0.25);
  border-radius: 8px;
  background: #fff;
  font-family: 'Mulish', sans-serif;
  font-size: 0.95rem;
  color: var(--rzos-text);
  transition: border-color var(--rzos-transition), box-shadow var(--rzos-transition);
  outline: none;
}

.rzos-field input:focus,
.rzos-field textarea:focus {
  border-color: var(--rzos-sage);
  box-shadow: 0 0 0 3px rgba(61, 122, 94, 0.12);
}

.rzos-field textarea {
  height: 120px;
  resize: vertical;
}

.rzos-form-success {
  display: none;
  background: linear-gradient(135deg, var(--rzos-sage), var(--rzos-dark));
  color: #fff;
  padding: 20px 24px;
  border-radius: var(--rzos-radius);
  text-align: center;
  font-weight: 500;
  margin-top: 16px;
  font-size: 0.95rem;
}

/* ========== FEATURES ========== */
.rzos-features {
  padding: 90px 0;
  background: var(--rzos-cream);
}

.rzos-features-header {
  text-align: center;
  margin-bottom: 70px;
}

.rzos-features-header .rzos-section-sub {
  margin: 0 auto;
}

.rzos-feature-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.rzos-feature-item:last-child {
  margin-bottom: 0;
}

.rzos-feature-item.rzos-reverse {
  direction: rtl;
}

.rzos-feature-item.rzos-reverse > * {
  direction: ltr;
}

.rzos-feature-text {
  padding: 20px 0;
}

.rzos-feature-text h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--rzos-dark);
  margin-bottom: 16px;
}

.rzos-feature-text p {
  color: #4a5e56;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
}

.rzos-feature-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rzos-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #3a5248;
}

.rzos-feature-list li::before {
  content: '✦';
  color: var(--rzos-ochre);
  font-size: 0.75rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.rzos-feature-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.rzos-shape-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rzos-sage) 0%, var(--rzos-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  box-shadow: 0 20px 60px rgba(61, 122, 94, 0.3);
  animation: rzosFloat 6s ease-in-out infinite;
}

.rzos-shape-hexagon {
  width: 200px;
  height: 230px;
  background: linear-gradient(135deg, var(--rzos-ochre) 0%, #b8903e 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  box-shadow: 0 20px 60px rgba(212, 168, 83, 0.3);
  animation: rzosFloat 7s ease-in-out infinite;
}

.rzos-shape-diamond {
  width: 190px;
  height: 190px;
  background: linear-gradient(135deg, var(--rzos-dark) 0%, var(--rzos-sage) 100%);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  box-shadow: 0 20px 60px rgba(26, 51, 40, 0.3);
  animation: rzosFloat 8s ease-in-out infinite;
}

.rzos-shape-star {
  width: 210px;
  height: 210px;
  background: linear-gradient(135deg, var(--rzos-ochre) 0%, var(--rzos-sage) 100%);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  box-shadow: 0 20px 60px rgba(212, 168, 83, 0.25);
  animation: rzosFloat 9s ease-in-out infinite;
}

@keyframes rzosFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(3deg); }
}

/* ========== PLANS ========== */
.rzos-plans {
  padding: 90px 0;
  background: var(--rzos-dark);
  position: relative;
  overflow: hidden;
}

.rzos-plans::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(212, 168, 83, 0.05);
  pointer-events: none;
}

.rzos-plans-header {
  text-align: center;
  margin-bottom: 56px;
}

.rzos-plans-header .rzos-section-title {
  color: var(--rzos-cream);
}

.rzos-plans-header .rzos-section-sub {
  color: rgba(250, 250, 242, 0.65);
  margin: 0 auto;
}

.rzos-plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}

.rzos-pack-item {
  background: rgba(250, 250, 242, 0.05);
  border: 1px solid rgba(250, 250, 242, 0.1);
  border-radius: var(--rzos-radius-lg);
  padding: 32px 24px;
  position: relative;
  transition: all var(--rzos-transition);
}

.rzos-pack-item:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 83, 0.3);
  background: rgba(250, 250, 242, 0.08);
}

.rzos-pack-item.rzos-recommended {
  background: rgba(250, 250, 242, 0.1);
  border-color: var(--rzos-ochre);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}

.rzos-recommended-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rzos-ochre);
  color: var(--rzos-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.rzos-pack-name {
  font-family: 'Yeseva One', serif;
  font-size: 1.4rem;
  color: var(--rzos-cream);
  margin-bottom: 4px;
}

.rzos-pack-tier {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rzos-ochre);
  margin-bottom: 20px;
  display: block;
}

.rzos-pack-features {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rzos-pack-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: rgba(250, 250, 242, 0.78);
  font-weight: 300;
}

.rzos-pack-features li::before {
  content: '✓';
  color: var(--rzos-ochre);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.rzos-click-btn {
  width: 100%;
  text-align: center;
  padding: 13px 20px;
  border-radius: 50px;
  font-family: 'Mulish', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  border: 1.5px solid rgba(250, 250, 242, 0.3);
  background: transparent;
  color: var(--rzos-cream);
  transition: all var(--rzos-transition);
  display: block;
}

.rzos-click-btn:hover {
  background: rgba(250, 250, 242, 0.12);
  border-color: var(--rzos-cream);
}

.rzos-click-btn.rzos-click-btn--ochre {
  background: var(--rzos-ochre);
  border-color: var(--rzos-ochre);
  color: var(--rzos-dark);
}

.rzos-click-btn.rzos-click-btn--ochre:hover {
  background: var(--rzos-ochre-dark);
  border-color: var(--rzos-ochre-dark);
  color: #fff;
}

/* ========== REVIEWS ========== */
.rzos-reviews {
  padding: 90px 0;
  background: var(--rzos-muted);
}

.rzos-reviews-header {
  text-align: center;
  margin-bottom: 56px;
}

.rzos-reviews-header .rzos-section-sub {
  margin: 0 auto;
}

.rzos-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.rzos-review-card {
  background: #fff;
  border-radius: var(--rzos-radius-lg);
  padding: 28px;
  border: 1px solid rgba(61, 122, 94, 0.1);
  transition: all var(--rzos-transition);
  position: relative;
}

.rzos-review-card::before {
  content: '\201C';
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 4rem;
  color: var(--rzos-muted);
  font-family: 'Yeseva One', serif;
  line-height: 1;
}

.rzos-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--rzos-shadow);
  border-color: rgba(61, 122, 94, 0.2);
}

.rzos-stars {
  color: var(--rzos-ochre);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
  display: block;
}

.rzos-review-text {
  font-size: 0.93rem;
  color: #4a5e56;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 20px;
}

.rzos-reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rzos-reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rzos-sage), var(--rzos-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Yeseva One', serif;
  font-size: 1rem;
  flex-shrink: 0;
}

.rzos-reviewer-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--rzos-dark);
  font-weight: 600;
}

.rzos-reviewer-info span {
  font-size: 0.78rem;
  color: #7a9080;
}

/* ========== FAQ ========== */
.rzos-faq {
  padding: 90px 0;
  background: var(--rzos-cream);
}

.rzos-faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.rzos-faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rzos-faq-item {
  background: #fff;
  border: 1px solid rgba(61, 122, 94, 0.15);
  border-radius: var(--rzos-radius);
  overflow: hidden;
  transition: border-color var(--rzos-transition);
}

.rzos-faq-item.rzos-active {
  border-color: var(--rzos-sage);
}

.rzos-faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: 'Mulish', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--rzos-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color var(--rzos-transition);
}

.rzos-faq-q:hover {
  color: var(--rzos-sage);
}

.rzos-faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--rzos-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--rzos-sage);
  transition: all var(--rzos-transition);
}

.rzos-active .rzos-faq-icon {
  background: var(--rzos-sage);
  color: #fff;
  transform: rotate(45deg);
}

.rzos-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}

.rzos-faq-a-inner {
  padding-bottom: 20px;
  font-size: 0.93rem;
  color: #4a5e56;
  font-weight: 300;
  line-height: 1.78;
}

.rzos-faq-a-inner a {
  color: var(--rzos-sage);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rzos-active .rzos-faq-a {
  max-height: 500px;
}

/* ========== CTA SECTION ========== */
.rzos-cta-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--rzos-sage) 0%, var(--rzos-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.rzos-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212, 168, 83, 0.12) 0%, transparent 60%);
}

.rzos-cta-inner {
  position: relative;
  z-index: 1;
}

.rzos-cta-inner h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--rzos-cream);
  margin-bottom: 18px;
}

.rzos-cta-inner p {
  font-size: 1.05rem;
  color: rgba(250, 250, 242, 0.8);
  margin-bottom: 36px;
  font-weight: 300;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.rzos-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== FOOTER ========== */
.rzos-footer {
  background: var(--rzos-dark);
  color: rgba(250, 250, 242, 0.7);
  padding: 64px 0 32px;
}

.rzos-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.rzos-footer-col h4 {
  font-family: 'Yeseva One', serif;
  font-size: 0.95rem;
  color: var(--rzos-cream);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}

.rzos-footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.rzos-footer-links a {
  color: rgba(250, 250, 242, 0.65);
  font-size: 0.88rem;
  font-weight: 400;
  transition: color var(--rzos-transition);
}

.rzos-footer-links a:hover {
  color: var(--rzos-ochre);
}

.rzos-footer-brand {
  text-align: center;
}

.rzos-footer-logo {
  font-family: 'Yeseva One', serif;
  font-size: 1.6rem;
  color: var(--rzos-cream);
  margin-bottom: 10px;
}

.rzos-footer-logo span {
  color: var(--rzos-ochre);
}

.rzos-footer-tagline {
  font-size: 0.88rem;
  color: rgba(250, 250, 242, 0.55);
  font-weight: 300;
  margin-bottom: 16px;
}

.rzos-footer-copy {
  font-size: 0.8rem;
  color: rgba(250, 250, 242, 0.45);
  margin-top: 12px;
}

.rzos-footer-bottom {
  border-top: 1px solid rgba(250, 250, 242, 0.08);
  padding-top: 28px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(250, 250, 242, 0.4);
}

/* ========== COOKIE BANNER ========== */
.rzos-notice-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--rzos-dark);
  border-top: 2px solid var(--rzos-sage);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.25);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.rzos-notice-bar.rzos-visible {
  transform: translateY(0);
}

.rzos-notice-bar p {
  font-size: 0.87rem;
  color: rgba(250, 250, 242, 0.8);
  font-weight: 300;
  flex: 1;
  min-width: 240px;
}

.rzos-notice-bar p a {
  color: var(--rzos-ochre);
  text-decoration: underline;
}

.rzos-cookie-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.rzos-cookie-accept {
  padding: 10px 22px;
  background: var(--rzos-ochre);
  color: var(--rzos-dark);
  border: none;
  border-radius: 50px;
  font-family: 'Mulish', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--rzos-transition);
}

.rzos-cookie-accept:hover {
  background: var(--rzos-ochre-dark);
  color: #fff;
}

.rzos-cookie-minimal {
  padding: 10px 22px;
  background: transparent;
  color: rgba(250, 250, 242, 0.7);
  border: 1px solid rgba(250, 250, 242, 0.25);
  border-radius: 50px;
  font-family: 'Mulish', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--rzos-transition);
}

.rzos-cookie-minimal:hover {
  background: rgba(250, 250, 242, 0.1);
  border-color: rgba(250, 250, 242, 0.5);
  color: rgba(250, 250, 242, 0.9);
}

/* ========== CONTENT PAGES ========== */
.rzos-page-hero {
  background: linear-gradient(135deg, var(--rzos-dark) 0%, #2a5a43 100%);
  padding: calc(var(--rzos-nav-h) + 56px) 0 64px;
  text-align: center;
}

.rzos-page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--rzos-cream);
  margin-bottom: 16px;
}

.rzos-page-hero p {
  color: rgba(250, 250, 242, 0.75);
  font-size: 1rem;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

.rzos-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(250, 250, 242, 0.55);
  margin-bottom: 20px;
  justify-content: center;
}

.rzos-breadcrumb a {
  color: var(--rzos-ochre);
}

.rzos-breadcrumb span {
  color: rgba(250, 250, 242, 0.4);
}

.rzos-article {
  padding: 72px 0;
  max-width: 800px;
  margin: 0 auto;
}

.rzos-article h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--rzos-dark);
  margin: 48px 0 16px;
}

.rzos-article h2:first-of-type {
  margin-top: 0;
}

.rzos-article p {
  font-size: 1rem;
  color: #3a5248;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 18px;
}

.rzos-article strong {
  color: var(--rzos-dark);
  font-weight: 600;
}

.rzos-read-also {
  background: var(--rzos-muted);
  border-radius: var(--rzos-radius-lg);
  padding: 28px 32px;
  margin-top: 56px;
}

.rzos-read-also h3 {
  font-size: 1rem;
  color: var(--rzos-dark);
  margin-bottom: 14px;
  font-family: 'Mulish', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

.rzos-read-also ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rzos-read-also a {
  font-weight: 500;
  color: var(--rzos-sage);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rzos-read-also a::before {
  content: '→';
  color: var(--rzos-ochre);
}

/* ========== LEGAL / INFO PAGES ========== */
.rzos-legal-content {
  padding: 72px 0;
  max-width: 820px;
  margin: 0 auto;
}

.rzos-legal-content h2 {
  font-size: 1.4rem;
  color: var(--rzos-dark);
  margin: 40px 0 14px;
  font-size: 1.3rem;
}

.rzos-legal-content h3 {
  font-size: 1.05rem;
  color: var(--rzos-dark);
  margin: 28px 0 10px;
  font-family: 'Mulish', sans-serif;
  font-weight: 600;
}

.rzos-legal-content p,
.rzos-legal-content li {
  font-size: 0.95rem;
  color: #3a5248;
  font-weight: 300;
  line-height: 1.82;
  margin-bottom: 12px;
}

.rzos-legal-content ul {
  list-style: disc;
  padding-left: 22px;
}

.rzos-legal-content a {
  color: var(--rzos-sage);
  text-decoration: underline;
}

.rzos-last-updated {
  font-size: 0.82rem;
  color: #7a9080;
  margin-bottom: 40px;
  font-style: italic;
}

/* ========== ABOUT PAGE ========== */
.rzos-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 48px 0;
}

.rzos-team-card {
  background: #fff;
  border-radius: var(--rzos-radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(61, 122, 94, 0.12);
  transition: all var(--rzos-transition);
}

.rzos-team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--rzos-shadow);
}

.rzos-team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rzos-sage), var(--rzos-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Yeseva One', serif;
  font-size: 1.6rem;
  margin: 0 auto 16px;
}

.rzos-team-card h3 {
  font-size: 1.1rem;
  color: var(--rzos-dark);
  margin-bottom: 4px;
}

.rzos-team-role {
  font-size: 0.82rem;
  color: var(--rzos-sage);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.rzos-team-card p {
  font-size: 0.9rem;
  color: #4a5e56;
  font-weight: 300;
  line-height: 1.7;
}

/* ========== CONTACT PAGE ========== */
.rzos-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.rzos-contact-info-card {
  background: #fff;
  border-radius: var(--rzos-radius-lg);
  padding: 28px;
  border: 1px solid rgba(61, 122, 94, 0.12);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all var(--rzos-transition);
}

.rzos-contact-info-card:hover {
  border-color: var(--rzos-sage);
  box-shadow: 0 8px 28px var(--rzos-shadow);
}

.rzos-contact-info-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--rzos-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.rzos-contact-info-card h3 {
  font-size: 0.85rem;
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rzos-sage);
  margin-bottom: 6px;
}

.rzos-contact-info-card p {
  font-size: 0.95rem;
  color: var(--rzos-dark);
  font-weight: 500;
  line-height: 1.5;
}

.rzos-contact-info-card span {
  font-size: 0.82rem;
  color: #7a9080;
}

/* ========== SCROLL ANIMATIONS ========== */
.rzos-fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .rzos-plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rzos-pack-item.rzos-recommended {
    transform: none;
  }

  .rzos-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .rzos-footer-brand {
    grid-column: 1 / -1;
    order: -1;
  }
}

@media (max-width: 768px) {
  .rzos-nav-links {
    display: none;
  }

  .rzos-drawer-btn {
    display: flex;
  }

  .rzos-hero-cta {
    padding: 16px 36px;
  }

  .rzos-trust-row {
    gap: 16px;
  }

  .rzos-form-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .rzos-feature-item {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 56px;
  }

  .rzos-feature-item.rzos-reverse {
    direction: ltr;
  }

  .rzos-feature-visual {
    min-height: 200px;
  }

  .rzos-shape-circle,
  .rzos-shape-hexagon,
  .rzos-shape-diamond,
  .rzos-shape-star {
    width: 150px;
    height: 150px;
    font-size: 3.2rem;
  }

  .rzos-shape-hexagon {
    height: 170px;
  }

  .rzos-plans-grid {
    grid-template-columns: 1fr;
  }

  .rzos-reviews-grid {
    grid-template-columns: 1fr;
  }

  .rzos-team-grid {
    grid-template-columns: 1fr;
  }

  .rzos-contact-grid {
    grid-template-columns: 1fr;
  }

  .rzos-footer-grid {
    grid-template-columns: 1fr;
  }

  .rzos-footer-brand {
    order: 0;
  }

  .rzos-notice-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  :root {
    --rzos-nav-h: 60px;
  }

  .rzos-section {
    padding: 60px 0;
  }

  .rzos-trust-item {
    font-size: 0.8rem;
  }

  #rzos-write-form {
    padding: 24px;
  }
}
