@import url('https://fonts.googleapis.com/css2?family=Cormorant+Infant:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Assistant:wght@300;400;600&display=swap');

:root {
  --czrz-ocean: #1A6B9E;
  --czrz-sunset: #D4701A;
  --czrz-light: #F8FCFF;
  --czrz-dark: #0A2A42;
  --czrz-muted: #E8F4FC;
  --czrz-text: #1A1A2E;
  --czrz-ocean-deep: #145580;
  --czrz-sunset-deep: #B5601A;
  --czrz-white: #ffffff;
  --czrz-shadow: 0 4px 24px rgba(10,42,66,0.10);
  --czrz-shadow-lg: 0 8px 40px rgba(10,42,66,0.15);
  --czrz-radius: 14px;
  --czrz-radius-sm: 8px;
  --czrz-transition: 0.28s cubic-bezier(.4,0,.2,1);
  --czrz-font-head: 'Cormorant Infant', Georgia, serif;
  --czrz-font-body: 'Assistant', Arial, sans-serif;
}

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

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

body {
  font-family: var(--czrz-font-body);
  background: var(--czrz-light);
  color: var(--czrz-text);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

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

a { color: var(--czrz-ocean); text-decoration: none; transition: color var(--czrz-transition); }
a:hover { color: var(--czrz-sunset); }

h1, h2, h3, h4 {
  font-family: var(--czrz-font-head);
  color: var(--czrz-dark);
  line-height: 1.2;
  font-weight: 700;
}

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

/* ── NAV ── */
.czrz-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--czrz-dark);
  box-shadow: 0 2px 16px rgba(10,42,66,0.18);
}

.czrz-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.czrz-nav-logo {
  font-family: var(--czrz-font-head);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--czrz-white);
  letter-spacing: 0.01em;
}

.czrz-nav-logo span { color: var(--czrz-sunset); }

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

.czrz-nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color var(--czrz-transition);
}

.czrz-nav-links a:hover { color: var(--czrz-sunset); }

.czrz-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.czrz-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--czrz-white);
  border-radius: 2px;
  transition: var(--czrz-transition);
}

.czrz-nav-mobile {
  display: none;
  background: var(--czrz-dark);
  padding: 0 24px 24px;
  list-style: none;
  flex-direction: column;
  gap: 0;
}

.czrz-nav-mobile.czrz-open { display: flex; }

.czrz-nav-mobile a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--czrz-transition);
}

.czrz-nav-mobile a:hover { color: var(--czrz-sunset); }

/* ── HERO ── */
.czrz-hero {
  background: linear-gradient(135deg, var(--czrz-dark) 0%, var(--czrz-ocean) 55%, #1e84be 100%);
  min-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}

.czrz-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(212,112,26,0.13) 0%, transparent 70%);
  pointer-events: none;
}

.czrz-hero-eyebrow {
  font-family: var(--czrz-font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--czrz-sunset);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.czrz-hero h1 {
  font-family: var(--czrz-font-head);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--czrz-white);
  font-weight: 700;
  max-width: 820px;
  margin: 0 auto 22px;
  line-height: 1.13;
}

.czrz-hero h1 em {
  font-style: italic;
  color: #ffd4a0;
}

.czrz-hero-sub {
  font-size: 1.18rem;
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin: 0 auto 36px;
  font-weight: 300;
}

.czrz-btn-go {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--czrz-sunset);
  color: var(--czrz-white);
  font-family: var(--czrz-font-body);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background var(--czrz-transition), transform var(--czrz-transition), box-shadow var(--czrz-transition);
  box-shadow: 0 4px 20px rgba(212,112,26,0.35);
  text-decoration: none;
}

.czrz-btn-go:hover {
  background: var(--czrz-sunset-deep);
  color: var(--czrz-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,112,26,0.45);
}

.czrz-btn-go .czrz-arrow { font-size: 1.2rem; transition: transform var(--czrz-transition); }
.czrz-btn-go:hover .czrz-arrow { transform: translateX(4px); }

/* zodiac strip */
.czrz-zodiac-strip {
  margin-top: 52px;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.czrz-zodiac-strip::-webkit-scrollbar { display: none; }

.czrz-zodiac-list {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 4px 0 8px;
}

.czrz-zodiac-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 10px 14px;
  min-width: 72px;
  transition: background var(--czrz-transition), transform var(--czrz-transition);
  cursor: default;
}

.czrz-zodiac-badge:hover {
  background: rgba(255,255,255,0.20);
  transform: translateY(-3px);
}

.czrz-zodiac-badge .czrz-emoji { font-size: 1.7rem; line-height: 1; }
.czrz-zodiac-badge .czrz-sign { font-size: 0.65rem; color: rgba(255,255,255,0.75); letter-spacing: 0.06em; font-weight: 600; text-transform: uppercase; }

/* ── DISCLAIMER ── */
.czrz-disclaimer {
  background: var(--czrz-muted);
  border-top: 3px solid var(--czrz-ocean);
  padding: 18px 24px;
  text-align: center;
}

.czrz-disclaimer p {
  font-size: 0.88rem;
  color: #5a6f80;
  max-width: 780px;
  margin: 0 auto;
  font-style: italic;
}

/* ── SECTION HEADINGS ── */
.czrz-section { padding: 88px 0; }
.czrz-section-alt { background: var(--czrz-muted); }

.czrz-section-head {
  text-align: center;
  margin-bottom: 60px;
}

.czrz-section-head .czrz-overline {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--czrz-sunset);
  margin-bottom: 12px;
}

.czrz-section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  margin-bottom: 14px;
}

.czrz-section-head p {
  font-size: 1.08rem;
  color: #4a5a6a;
  max-width: 600px;
  margin: 0 auto;
}

/* ── REVIEWS ── */
.czrz-review-card {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-radius: var(--czrz-radius);
  overflow: hidden;
  box-shadow: var(--czrz-shadow-lg);
  margin-bottom: 36px;
}

.czrz-review-card:last-child { margin-bottom: 0; }

.czrz-review-accent {
  width: 10px;
  background: var(--czrz-ocean);
  flex-shrink: 0;
}

.czrz-review-card.czrz-alt .czrz-review-accent { background: var(--czrz-sunset); }

.czrz-review-body {
  background: var(--czrz-white);
  padding: 48px 52px;
  flex: 1;
}

.czrz-review-card.czrz-alt .czrz-review-body { background: #fffaf5; }

.czrz-review-quote-mark {
  font-family: var(--czrz-font-head);
  font-size: 6rem;
  line-height: 0.7;
  color: var(--czrz-muted);
  margin-bottom: 16px;
  font-weight: 700;
  display: block;
  color: var(--czrz-ocean);
  opacity: 0.18;
}

.czrz-review-card.czrz-alt .czrz-review-quote-mark { color: var(--czrz-sunset); }

.czrz-review-text {
  font-size: 1.15rem;
  color: #2a3a4a;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 28px;
}

.czrz-review-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.czrz-review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--czrz-ocean), var(--czrz-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--czrz-white);
  font-family: var(--czrz-font-head);
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}

.czrz-review-card.czrz-alt .czrz-review-avatar {
  background: linear-gradient(135deg, var(--czrz-sunset), #8B3A0A);
}

.czrz-review-info { flex: 1; }
.czrz-review-name { font-weight: 700; font-size: 1rem; color: var(--czrz-dark); }
.czrz-review-city { font-size: 0.85rem; color: #6a7a8a; }
.czrz-review-stars { color: #F5A623; font-size: 1.1rem; letter-spacing: 2px; }
.czrz-review-tag { font-size: 0.8rem; color: #8a9aaa; font-style: italic; margin-top: 2px; }

/* ── FEATURES ── */
.czrz-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.czrz-feature-box {
  background: var(--czrz-white);
  border-radius: var(--czrz-radius);
  padding: 36px 30px;
  box-shadow: var(--czrz-shadow);
  border-top: 4px solid var(--czrz-ocean);
  transition: transform var(--czrz-transition), box-shadow var(--czrz-transition);
}

.czrz-feature-box:nth-child(even) { border-top-color: var(--czrz-sunset); }

.czrz-feature-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--czrz-shadow-lg);
}

.czrz-feature-icon { font-size: 2.4rem; margin-bottom: 16px; }
.czrz-feature-box h3 { font-size: 1.22rem; margin-bottom: 10px; color: var(--czrz-dark); }
.czrz-feature-box p { font-size: 0.96rem; color: #4a5a6a; line-height: 1.65; }

/* ── FAQ ── */
.czrz-faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.czrz-faq-item {
  background: var(--czrz-white);
  border-radius: var(--czrz-radius-sm);
  box-shadow: var(--czrz-shadow);
  overflow: hidden;
  border-left: 4px solid transparent;
  transition: border-color var(--czrz-transition);
}

.czrz-faq-item.czrz-active { border-left-color: var(--czrz-ocean); }

.czrz-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--czrz-font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--czrz-dark);
  transition: color var(--czrz-transition);
}

.czrz-faq-btn:hover { color: var(--czrz-ocean); }

.czrz-faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--czrz-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: background var(--czrz-transition), transform var(--czrz-transition);
  color: var(--czrz-ocean);
}

.czrz-faq-item.czrz-active .czrz-faq-icon {
  background: var(--czrz-ocean);
  color: var(--czrz-white);
  transform: rotate(45deg);
}

.czrz-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(.4,0,.2,1);
}

.czrz-faq-answer-inner {
  padding: 0 26px 24px;
  font-size: 0.98rem;
  color: #3a4a5a;
  line-height: 1.75;
}

.czrz-faq-answer-inner a { color: var(--czrz-ocean); font-weight: 600; }
.czrz-faq-answer-inner a:hover { color: var(--czrz-sunset); }

/* ── PLANS ── */
.czrz-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.czrz-tier {
  background: var(--czrz-white);
  border-radius: var(--czrz-radius);
  padding: 40px 32px;
  box-shadow: var(--czrz-shadow);
  position: relative;
  transition: transform var(--czrz-transition), box-shadow var(--czrz-transition);
  border: 2px solid transparent;
}

.czrz-tier:hover { transform: translateY(-4px); box-shadow: var(--czrz-shadow-lg); }

.czrz-tier.czrz-recommended {
  border-color: var(--czrz-sunset);
  transform: scale(1.04);
  box-shadow: 0 12px 50px rgba(212,112,26,0.18);
}

.czrz-tier.czrz-recommended:hover { transform: scale(1.04) translateY(-4px); }

.czrz-tier-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--czrz-sunset);
  color: var(--czrz-white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 50px;
  white-space: nowrap;
}

.czrz-tier-icon { font-size: 2.6rem; margin-bottom: 12px; }
.czrz-tier h3 { font-size: 1.55rem; margin-bottom: 8px; }
.czrz-tier-tagline { font-size: 0.92rem; color: #6a7a8a; margin-bottom: 28px; }

.czrz-tier-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.czrz-tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.96rem;
  color: #3a4a5a;
}

.czrz-tier-features li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--czrz-muted);
  color: var(--czrz-ocean);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.czrz-tier.czrz-recommended .czrz-tier-features li::before {
  background: rgba(212,112,26,0.12);
  color: var(--czrz-sunset);
}

.czrz-btn-tier {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: 50px;
  font-family: var(--czrz-font-body);
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid var(--czrz-ocean);
  color: var(--czrz-ocean);
  background: transparent;
  cursor: pointer;
  transition: all var(--czrz-transition);
  text-decoration: none;
}

.czrz-btn-tier:hover {
  background: var(--czrz-ocean);
  color: var(--czrz-white);
}

.czrz-btn-tier.czrz-btn-sunset {
  background: var(--czrz-sunset);
  border-color: var(--czrz-sunset);
  color: var(--czrz-white);
  box-shadow: 0 4px 18px rgba(212,112,26,0.30);
}

.czrz-btn-tier.czrz-btn-sunset:hover {
  background: var(--czrz-sunset-deep);
  border-color: var(--czrz-sunset-deep);
  color: var(--czrz-white);
}

/* ── CONTACT FORM ── */
.czrz-form-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.czrz-form-disclaimer {
  background: var(--czrz-muted);
  border-left: 4px solid var(--czrz-ocean);
  border-radius: 0 var(--czrz-radius-sm) var(--czrz-radius-sm) 0;
  padding: 14px 18px;
  margin-bottom: 28px;
  font-size: 0.88rem;
  color: #5a6a7a;
  font-style: italic;
}

.czrz-form {
  background: var(--czrz-white);
  border-radius: var(--czrz-radius);
  padding: 44px 48px;
  box-shadow: var(--czrz-shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.czrz-field { display: flex; flex-direction: column; gap: 6px; }
.czrz-field label { font-size: 0.9rem; font-weight: 600; color: var(--czrz-dark); }

.czrz-field input,
.czrz-field select,
.czrz-field textarea {
  padding: 13px 16px;
  border: 2px solid #d0e4f0;
  border-radius: var(--czrz-radius-sm);
  font-family: var(--czrz-font-body);
  font-size: 0.97rem;
  color: var(--czrz-text);
  background: var(--czrz-light);
  transition: border-color var(--czrz-transition), box-shadow var(--czrz-transition);
  outline: none;
}

.czrz-field input:focus,
.czrz-field select:focus,
.czrz-field textarea:focus {
  border-color: var(--czrz-ocean);
  box-shadow: 0 0 0 3px rgba(26,107,158,0.10);
  background: var(--czrz-white);
}

.czrz-field textarea { resize: vertical; min-height: 130px; }

.czrz-form-success {
  display: none;
  background: #e6f7ee;
  border: 2px solid #2ecc71;
  border-radius: var(--czrz-radius-sm);
  padding: 18px 22px;
  color: #1a6a3a;
  font-weight: 600;
  text-align: center;
  font-size: 1rem;
}

.czrz-form-success.czrz-visible { display: block; }

/* ── CTA SECTION ── */
.czrz-cta-section {
  background: linear-gradient(135deg, var(--czrz-dark) 0%, var(--czrz-ocean) 100%);
  padding: 80px 24px;
  text-align: center;
}

.czrz-cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--czrz-white);
  margin-bottom: 16px;
}

.czrz-cta-section p {
  color: rgba(255,255,255,0.80);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ── FOOTER ── */
.czrz-footer {
  background: var(--czrz-dark);
  padding: 64px 0 0;
  color: rgba(255,255,255,0.70);
}

.czrz-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.czrz-footer-logo {
  font-family: var(--czrz-font-head);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--czrz-white);
  margin-bottom: 12px;
}

.czrz-footer-logo span { color: var(--czrz-sunset); }
.czrz-footer-tagline { font-size: 0.92rem; color: rgba(255,255,255,0.55); margin-bottom: 16px; line-height: 1.6; }

.czrz-footer-col h4 {
  font-family: var(--czrz-font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--czrz-sunset);
  margin-bottom: 16px;
}

.czrz-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.czrz-footer-col a { color: rgba(255,255,255,0.65); font-size: 0.94rem; transition: color var(--czrz-transition); }
.czrz-footer-col a:hover { color: var(--czrz-white); }

.czrz-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 20px 0;
  text-align: center;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.40);
}

/* ── COOKIE BANNER ── */
.czrz-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--czrz-dark);
  color: rgba(255,255,255,0.88);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(10,42,66,0.25);
  flex-wrap: wrap;
}

.czrz-cookie p { font-size: 0.9rem; flex: 1; min-width: 200px; }
.czrz-cookie a { color: var(--czrz-sunset); }

.czrz-cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }

.czrz-btn-cookie {
  padding: 9px 22px;
  border-radius: 50px;
  font-family: var(--czrz-font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid rgba(255,255,255,0.30);
  background: transparent;
  color: rgba(255,255,255,0.80);
  transition: all var(--czrz-transition);
}

.czrz-btn-cookie:hover { border-color: var(--czrz-white); color: var(--czrz-white); }

.czrz-btn-cookie.czrz-btn-accept {
  background: var(--czrz-sunset);
  border-color: var(--czrz-sunset);
  color: var(--czrz-white);
}

.czrz-btn-cookie.czrz-btn-accept:hover { background: var(--czrz-sunset-deep); border-color: var(--czrz-sunset-deep); }

.czrz-cookie.czrz-hidden { display: none; }

/* ── CONTENT PAGES ── */
.czrz-page-hero {
  background: linear-gradient(135deg, var(--czrz-dark) 0%, var(--czrz-ocean) 100%);
  padding: 72px 24px 60px;
  text-align: center;
}

.czrz-page-hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  color: var(--czrz-white);
  margin-bottom: 14px;
}

.czrz-page-hero p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.czrz-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.58);
  justify-content: center;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.czrz-breadcrumb a { color: rgba(255,255,255,0.70); }
.czrz-breadcrumb a:hover { color: var(--czrz-white); }
.czrz-breadcrumb span { color: rgba(255,255,255,0.40); }

.czrz-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px;
}

.czrz-article h2 {
  font-size: 1.85rem;
  margin: 48px 0 18px;
  color: var(--czrz-ocean);
}

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

.czrz-article p { margin-bottom: 18px; line-height: 1.80; font-size: 1.02rem; color: #2a3a4a; }

.czrz-article ul {
  margin: 0 0 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.czrz-article ul li { font-size: 1.02rem; color: #2a3a4a; line-height: 1.7; }

.czrz-article blockquote {
  border-left: 4px solid var(--czrz-ocean);
  background: var(--czrz-muted);
  padding: 18px 22px;
  border-radius: 0 var(--czrz-radius-sm) var(--czrz-radius-sm) 0;
  margin: 24px 0;
  font-style: italic;
  color: #3a4a5a;
}

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

.czrz-read-also h3 {
  font-size: 1.1rem;
  color: var(--czrz-dark);
  margin-bottom: 14px;
  font-family: var(--czrz-font-body);
  font-weight: 700;
}

.czrz-read-also ul { list-style: none; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.czrz-read-also a { color: var(--czrz-ocean); font-weight: 600; font-size: 0.98rem; }
.czrz-read-also a:hover { color: var(--czrz-sunset); }

/* ── ABOUT PAGE ── */
.czrz-about-intro {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 64px 24px 0;
}

.czrz-about-intro p { font-size: 1.08rem; color: #3a4a5a; line-height: 1.8; margin-bottom: 16px; }

.czrz-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 48px auto 0;
  padding: 0 24px;
}

.czrz-team-card {
  background: var(--czrz-white);
  border-radius: var(--czrz-radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--czrz-shadow);
  transition: transform var(--czrz-transition);
}

.czrz-team-card:hover { transform: translateY(-4px); }

.czrz-team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--czrz-ocean), var(--czrz-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--czrz-font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--czrz-white);
  margin: 0 auto 16px;
}

.czrz-team-card:nth-child(2) .czrz-team-avatar { background: linear-gradient(135deg, var(--czrz-sunset), #8B3A0A); }
.czrz-team-card:nth-child(3) .czrz-team-avatar { background: linear-gradient(135deg, #1a6b6e, #0A2A42); }

.czrz-team-name { font-size: 1.1rem; font-weight: 700; color: var(--czrz-dark); margin-bottom: 4px; }
.czrz-team-role { font-size: 0.88rem; color: var(--czrz-ocean); font-weight: 600; margin-bottom: 10px; }
.czrz-team-bio { font-size: 0.92rem; color: #5a6a7a; line-height: 1.65; }

.czrz-company-info {
  max-width: 700px;
  margin: 56px auto 0;
  padding: 0 24px 64px;
}

.czrz-info-table {
  background: var(--czrz-white);
  border-radius: var(--czrz-radius);
  box-shadow: var(--czrz-shadow);
  overflow: hidden;
}

.czrz-info-row {
  display: flex;
  border-bottom: 1px solid var(--czrz-muted);
}

.czrz-info-row:last-child { border-bottom: none; }

.czrz-info-label {
  width: 180px;
  flex-shrink: 0;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--czrz-ocean);
  background: var(--czrz-muted);
}

.czrz-info-value {
  padding: 16px 20px;
  font-size: 0.94rem;
  color: var(--czrz-text);
  flex: 1;
}

/* ── CONTACT PAGE CARDS ── */
.czrz-contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 820px;
  margin: 0 auto 56px;
}

.czrz-contact-card {
  background: var(--czrz-white);
  border-radius: var(--czrz-radius);
  padding: 32px 28px;
  box-shadow: var(--czrz-shadow);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border-top: 4px solid var(--czrz-ocean);
  transition: transform var(--czrz-transition);
}

.czrz-contact-card:nth-child(even) { border-top-color: var(--czrz-sunset); }
.czrz-contact-card:hover { transform: translateY(-3px); }

.czrz-contact-icon { font-size: 2rem; flex-shrink: 0; }
.czrz-contact-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--czrz-dark); }
.czrz-contact-card p { font-size: 0.92rem; color: #5a6a7a; line-height: 1.6; }
.czrz-contact-card a { color: var(--czrz-ocean); }

/* ── LEGAL PAGES ── */
.czrz-legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 24px;
}

.czrz-legal h2 { font-size: 1.5rem; margin: 40px 0 14px; color: var(--czrz-ocean); }
.czrz-legal h3 { font-size: 1.15rem; margin: 28px 0 10px; color: var(--czrz-dark); }
.czrz-legal p { font-size: 0.98rem; line-height: 1.78; margin-bottom: 14px; color: #2a3a4a; }
.czrz-legal ul { margin: 0 0 16px 22px; display: flex; flex-direction: column; gap: 7px; }
.czrz-legal ul li { font-size: 0.98rem; color: #2a3a4a; line-height: 1.65; }
.czrz-legal .czrz-last-updated { font-size: 0.85rem; color: #8a9aaa; font-style: italic; margin-bottom: 36px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .czrz-features-grid { grid-template-columns: repeat(2, 1fr); }
  .czrz-plans-grid { grid-template-columns: repeat(2, 1fr); }
  .czrz-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .czrz-team-grid { grid-template-columns: repeat(2, 1fr); }
}

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

  .czrz-hero { min-height: 70vh; padding: 60px 20px 44px; }
  .czrz-zodiac-list { flex-wrap: nowrap; justify-content: flex-start; }

  .czrz-review-body { padding: 30px 24px; }
  .czrz-review-text { font-size: 1.04rem; }

  .czrz-features-grid { grid-template-columns: 1fr; }
  .czrz-plans-grid { grid-template-columns: 1fr; }
  .czrz-tier.czrz-recommended { transform: scale(1); }

  .czrz-form { padding: 28px 22px; }

  .czrz-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .czrz-contact-cards { grid-template-columns: 1fr; }
  .czrz-team-grid { grid-template-columns: 1fr; }
  .czrz-info-label { width: 130px; }

  .czrz-cookie { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .czrz-section { padding: 60px 0; }
  .czrz-review-body { padding: 24px 18px; }
  .czrz-feature-box { padding: 26px 20px; }
}
