/* ==========================================================================
   Rezaak Theme - Extended UI Stylesheet (theme.css)
   ========================================================================== */

/* Top Utility Bar (Removed) */
.rz-topbar {
  display: none !important;
}

/* Main Navigation Header */
.rz-header {
  background-color: var(--rz-white);
  border-bottom: 1px solid var(--rz-slate-200);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--rz-transition);
}
.rz-header.is-scrolled {
  box-shadow: var(--rz-shadow-md);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
}
.rz-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Brand Logo */
.rz-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--rz-font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--rz-slate-900);
  letter-spacing: -0.03em;
  text-decoration: none;
}
.rz-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--rz-primary), #4f46e5);
  color: var(--rz-white);
  border-radius: var(--rz-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(30, 64, 175, 0.3);
}
.rz-logo span.rz-logo-text {
  color: var(--rz-slate-900);
}
.rz-logo span.rz-logo-badge {
  display: none !important;
}

/* Main Navigation Menu */
.rz-nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.rz-nav-desktop > li {
  position: relative;
}
.rz-nav-desktop > li > a {
  color: var(--rz-slate-700);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.rz-nav-desktop > li > a:hover,
.rz-nav-desktop > li.current-menu-item > a {
  color: var(--rz-primary);
}

/* Dropdown Menu */
.rz-nav-desktop .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: var(--rz-white);
  border: 1px solid var(--rz-slate-200);
  border-radius: var(--rz-radius-md);
  box-shadow: var(--rz-shadow-xl);
  padding: 0.5rem 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--rz-transition);
  z-index: 1010;
}
.rz-nav-desktop > li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.rz-nav-desktop .sub-menu li a {
  display: block;
  padding: 0.6rem 1.25rem;
  color: var(--rz-slate-700);
  font-size: 0.9rem;
  font-weight: 500;
}
.rz-nav-desktop .sub-menu li a:hover {
  background-color: var(--rz-slate-50);
  color: var(--rz-primary);
}

/* Header Action Buttons */
.rz-header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* Mobile Menu Toggle */
.rz-mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--rz-slate-800);
}
.rz-mobile-drawer {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--rz-white);
  padding: 2rem;
  overflow-y: auto;
  z-index: 999;
  border-top: 1px solid var(--rz-slate-200);
}
.rz-mobile-drawer.is-open {
  display: block;
}
.rz-mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}
.rz-mobile-nav li {
  border-bottom: 1px solid var(--rz-slate-100);
}
.rz-mobile-nav li a {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--rz-slate-800);
}

/* Hero Section */
.rz-hero {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1e3a8a 100%);
  color: var(--rz-white);
  padding: 6.5rem 0 7rem;
  overflow: hidden;
}
.rz-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, rgba(30, 64, 175, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}
.rz-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}
.rz-hero-content h1 {
  color: var(--rz-white);
  font-size: clamp(2.3rem, 4.5vw + 1rem, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.rz-hero-content h1 span.rz-gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rz-hero-lead {
  font-size: 1.15rem;
  color: var(--rz-slate-300);
  margin-bottom: 2rem;
  max-width: 580px;
  line-height: 1.7;
}
.rz-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.rz-hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.rz-hero-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.6);
}
.rz-hero-login-hint {
  margin-top: -0.25rem;
  margin-bottom: 2.2rem;
  font-size: 0.95rem;
  color: var(--rz-slate-300);
}
.rz-hero-login-hint a {
  color: #60a5fa;
  font-weight: 600;
  text-decoration: underline;
  margin-left: 6px;
  transition: color 0.2s ease;
}
.rz-hero-login-hint a:hover {
  color: #93c5fd;
}
.rz-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.rz-stat-number {
  font-family: var(--rz-font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--rz-white);
  line-height: 1;
}
.rz-stat-label {
  font-size: 0.8rem;
  color: var(--rz-slate-400);
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero App Mockup / Card */
.rz-hero-visual {
  position: relative;
}
.rz-hero-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--rz-radius-xl);
  padding: 1.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.rz-mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.25rem;
}
.rz-mockup-dots {
  display: flex;
  gap: 6px;
}
.rz-mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.rz-dot-red { background-color: #ef4444; }
.rz-dot-yellow { background-color: #f59e0b; }
.rz-dot-green { background-color: #10b981; }

.rz-mockup-badge {
  font-size: 0.75rem;
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.2rem 0.6rem;
  border-radius: var(--rz-radius-full);
}
.rz-mockup-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.rz-mockup-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.rz-mockup-stat-box {
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--rz-radius-md);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.rz-mockup-stat-title {
  font-size: 0.75rem;
  color: var(--rz-slate-400);
}
.rz-mockup-stat-val {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--rz-white);
  margin-top: 0.25rem;
}
.rz-mockup-feed-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.75rem 1rem;
  border-radius: var(--rz-radius-md);
}
.rz-feed-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--rz-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* Feature Cards & Pillars */
.rz-pillar-card {
  background: var(--rz-white);
  border-radius: var(--rz-radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--rz-slate-200);
  box-shadow: var(--rz-shadow-sm);
  transition: var(--rz-transition);
  position: relative;
  overflow: hidden;
}
.rz-pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--rz-shadow-xl);
  border-color: var(--rz-primary-light);
}
.rz-pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--rz-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  background-color: var(--rz-primary-50);
  color: var(--rz-primary);
}
.rz-pillar-icon.accent {
  background-color: var(--rz-accent-50);
  color: var(--rz-accent);
}
.rz-pillar-icon.warning {
  background-color: #fffbeb;
  color: var(--rz-warning);
}
.rz-pillar-icon.info {
  background-color: #f0f9ff;
  color: var(--rz-info);
}

/* Section Headings */
.rz-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}
.rz-section-header.text-left {
  text-align: left;
  margin-left: 0;
}
.rz-section-tag {
  display: inline-block;
  color: var(--rz-primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.rz-section-header h2 {
  margin-bottom: 1rem;
}
.rz-section-header p {
  font-size: 1.1rem;
  color: var(--rz-slate-600);
  margin-bottom: 0;
}

/* Module Grid */
.rz-module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.rz-module-card {
  background: var(--rz-white);
  border: 1px solid var(--rz-slate-200);
  border-radius: var(--rz-radius-md);
  padding: 1.5rem;
  transition: var(--rz-transition);
}
.rz-module-card:hover {
  border-color: var(--rz-primary);
  box-shadow: var(--rz-shadow-md);
  transform: translateY(-2px);
}
.rz-module-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--rz-primary);
  background: var(--rz-primary-50);
  padding: 0.2rem 0.5rem;
  border-radius: var(--rz-radius-sm);
  display: inline-block;
  margin-bottom: 0.75rem;
}
.rz-module-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.rz-module-card p {
  font-size: 0.875rem;
  color: var(--rz-slate-600);
  margin-bottom: 0;
  line-height: 1.5;
}

/* Pricing Section & Switcher */
.rz-pricing-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.rz-switch-btn {
  background: var(--rz-slate-200);
  border-radius: var(--rz-radius-full);
  padding: 0.35rem 0.5rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  gap: 0.5rem;
}
.rz-switch-btn span {
  padding: 0.4rem 1.1rem;
  border-radius: var(--rz-radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--rz-slate-700);
  transition: var(--rz-transition);
}
.rz-switch-btn span.active {
  background: var(--rz-primary);
  color: var(--rz-white);
  box-shadow: var(--rz-shadow-sm);
}

.rz-pricing-card {
  background: var(--rz-white);
  border: 1px solid var(--rz-slate-200);
  border-radius: var(--rz-radius-xl);
  padding: 2.5rem 2rem;
  position: relative;
  transition: var(--rz-transition);
  display: flex;
  flex-direction: column;
}
.rz-pricing-card.featured {
  border: 2px solid var(--rz-primary);
  box-shadow: 0 15px 35px -5px rgba(30, 64, 175, 0.15);
  transform: scale(1.02);
}
.rz-pricing-popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rz-primary);
  color: var(--rz-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: var(--rz-radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.rz-price-header {
  margin-bottom: 1.5rem;
}
.rz-price-amount {
  font-family: var(--rz-font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--rz-slate-900);
  line-height: 1;
}
.rz-price-amount small {
  font-size: 1rem;
  font-weight: 500;
  color: var(--rz-slate-500);
}
.rz-pricing-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem 0;
  flex-grow: 1;
}
.rz-pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 0;
  font-size: 0.925rem;
  color: var(--rz-slate-700);
}
.rz-pricing-features li svg {
  color: var(--rz-accent);
  flex-shrink: 0;
}

/* FAQ Accordion */
.rz-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.rz-faq-item {
  background: var(--rz-white);
  border: 1px solid var(--rz-slate-200);
  border-radius: var(--rz-radius-lg);
  overflow: hidden;
  transition: var(--rz-transition);
}
.rz-faq-item.is-open {
  border-color: var(--rz-primary-light);
  box-shadow: var(--rz-shadow-md);
}
.rz-faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--rz-slate-900);
  cursor: pointer;
}
.rz-faq-icon {
  transition: transform 0.2s ease;
}
.rz-faq-item.is-open .rz-faq-icon {
  transform: rotate(180deg);
}
.rz-faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--rz-slate-600);
  font-size: 0.95rem;
  line-height: 1.6;
}
.rz-faq-item.is-open .rz-faq-answer {
  display: block;
}

/* Single Post & Blog Styles */
.rz-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}
.rz-post-card {
  background: var(--rz-white);
  border-radius: var(--rz-radius-lg);
  border: 1px solid var(--rz-slate-200);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--rz-transition);
}
.rz-post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--rz-shadow-lg);
}
.rz-post-thumb {
  aspect-ratio: 16 / 9;
  background: var(--rz-slate-200);
  overflow: hidden;
}
.rz-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.rz-post-card:hover .rz-post-thumb img {
  transform: scale(1.05);
}
.rz-post-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.rz-post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.825rem;
  color: var(--rz-slate-500);
  margin-bottom: 0.75rem;
}
.rz-post-title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}
.rz-post-title a {
  color: var(--rz-slate-900);
}
.rz-post-title a:hover {
  color: var(--rz-primary);
}
.rz-post-excerpt {
  font-size: 0.925rem;
  color: var(--rz-slate-600);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

/* Breadcrumbs */
.rz-breadcrumbs {
  font-size: 0.85rem;
  color: var(--rz-slate-500);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.rz-breadcrumbs a {
  color: var(--rz-slate-600);
}
.rz-breadcrumbs a:hover {
  color: var(--rz-primary);
}

/* Author Box */
.rz-author-box {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--rz-slate-50);
  border: 1px solid var(--rz-slate-200);
  border-radius: var(--rz-radius-lg);
  padding: 1.5rem;
  margin: 2.5rem 0;
}
.rz-author-avatar img {
  border-radius: 50%;
  width: 64px;
  height: 64px;
}
.rz-author-info h4 {
  margin-bottom: 0.25rem;
}
.rz-author-info p {
  font-size: 0.9rem;
  color: var(--rz-slate-600);
  margin-bottom: 0;
}

/* Comments */
.rz-comments-area {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--rz-slate-200);
}
.rz-comments-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}
.rz-comments-list li.comment {
  border-bottom: 1px solid var(--rz-slate-200);
  padding: 1.5rem 0;
}
.comment-body {
  display: flex;
  gap: 1rem;
}
.comment-author img {
  border-radius: 50%;
}
.comment-content {
  flex-grow: 1;
}
.comment-metadata {
  font-size: 0.8rem;
  color: var(--rz-slate-500);
  margin-bottom: 0.5rem;
}

/* Forms & Inputs */
.rz-form-group {
  margin-bottom: 1.25rem;
}
.rz-form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--rz-slate-700);
  margin-bottom: 0.4rem;
}
.rz-input,
.rz-textarea,
.rz-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--rz-slate-300);
  border-radius: var(--rz-radius-md);
  background-color: var(--rz-white);
  color: var(--rz-slate-900);
  font-size: 0.95rem;
  transition: var(--rz-transition);
}
.rz-input:focus,
.rz-textarea:focus,
.rz-select:focus {
  outline: none;
  border-color: var(--rz-primary);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.15);
}
.rz-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Footer Styles */
.rz-footer {
  background-color: var(--rz-slate-900);
  color: var(--rz-slate-400);
  padding-top: 5rem;
  font-size: 0.925rem;
}
.rz-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.rz-footer h5 {
  color: var(--rz-white);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.rz-footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rz-footer-nav li {
  margin-bottom: 0.65rem;
}
.rz-footer-nav li a {
  color: var(--rz-slate-400);
}
.rz-footer-nav li a:hover {
  color: var(--rz-white);
  padding-left: 4px;
}
.rz-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}
.rz-footer-bottom a {
  color: var(--rz-slate-400);
}
.rz-footer-bottom a:hover {
  color: var(--rz-white);
}

/* Back to top button */
.rz-back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--rz-primary);
  color: var(--rz-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--rz-shadow-lg);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--rz-transition);
  z-index: 900;
  border: none;
}
.rz-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}
.rz-back-to-top:hover {
  background: var(--rz-primary-dark);
  transform: translateY(-3px);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .rz-nav-desktop, .rz-topbar {
    display: none;
  }
  .rz-mobile-toggle {
    display: block;
  }
  .rz-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .rz-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .rz-header-actions .rz-btn-outline {
    display: none !important;
  }
  .rz-hero-buttons {
    flex-direction: column;
    gap: 0.85rem;
  }
  .rz-hero-buttons .rz-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .rz-hero-login-hint {
    text-align: center;
  }
  .rz-hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .rz-footer-grid {
    grid-template-columns: 1fr;
  }
  .rz-footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Rezaak v2.11.5: Suppress black header announcement bar on top */
.rz-top-announcement-bar {
  display: none !important;
}
