@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ============================================================
   SiteRooster Frontend Styles — Consolidated
   Homepage + Feature Pages + Landing Pages + Legal + Support

   Refactored April 2026:
   - Removed old homepage (grid hero, feature tabs)
   - Moved new homepage CSS from inline
   - Merged duplicate patterns across page types
   - Unified variables, animations, responsive rules
   ============================================================ */


/* ============================================================
   1. VARIABLES
   ============================================================ */
:root {
  --green: #0ea5e9;
  --green-light: #38bdf8;
  --green-glow: rgba(14, 165, 233,0.3);
  --green-faint: rgba(14, 165, 233,0.08);
  --dark: #0b1120;
  --dark-2: #111827;
  --dark-3: #1a2535;
  --light: #f8faf9;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --pipe-x: 50%;
  /* Landing page aliases */
  --sr-green: #0ea5e9;
  --sr-green-light: #38bdf8;
  --sr-dark: #022c22;
  --sr-cream: #f0f9ff;
  --sr-yellow: #f59e0b;
  --sr-red: #ef4444;
  --sr-blue: #3b82f6;
  --sr-gray-50: #f9fafb;
  --sr-gray-100: #f3f4f6;
  --sr-gray-200: #e5e7eb;
  --sr-gray-300: #d1d5db;
  --sr-gray-400: #9ca3af;
  --sr-gray-500: #6b7280;
  --sr-gray-600: #4b5563;
  --sr-gray-700: #374151;
}


/* ============================================================
   2. SHARED ANIMATIONS
   ============================================================ */
@keyframes pulse-down {
  0%   { top: 0%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes ring-pulse { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.8); opacity: 0; } }
@keyframes fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fill-down { 0% { height: 0%; } 100% { height: 100%; } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes float-a { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-12px) rotate(1deg); } }
@keyframes float-b { 0%,100% { transform: translateY(0) rotate(1deg); } 50% { transform: translateY(-18px) rotate(-1deg); } }
@keyframes float-c { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes float-d { 0%,100% { transform: translateY(0) rotate(0.5deg); } 50% { transform: translateY(-14px) rotate(-0.5deg); } }
@keyframes srh-fillBg { from { width: 0%; } to { width: 100%; } }
@keyframes srh-spin { to { transform: rotate(360deg); } }
@keyframes srh-slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }


/* ============================================================
   3. WORDPRESS OVERRIDES
   ============================================================ */
.entry-content,
.wp-block-post-content,
.is-layout-flow {
  padding-top: 0 !important;
  margin-top: 0 !important;
  margin-block-start: 0 !important;
}
.is-layout-flow > *:first-child { margin-block-start: 0 !important; }
.is-layout-flow > * + * { margin-block-start: 0 !important; }


/* ============================================================
   4. SHARED DOT BACKGROUND
   ============================================================ */
.srh-dot-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(14, 165, 233,0.15) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none; z-index: 0;
}
.srh-dot-bg.dark { background-image: radial-gradient(circle, rgba(14, 165, 233,0.2) 1px, transparent 1px); }
.srh-dot-bg::before, .srh-dot-bg::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 1; }
.srh-dot-bg::before { left: 0; background: linear-gradient(90deg, var(--light), transparent); }
.srh-dot-bg::after { right: 0; background: linear-gradient(270deg, var(--light), transparent); }
.srh-dot-bg.on-dark::before { background: linear-gradient(90deg, var(--dark-2), transparent); }
.srh-dot-bg.on-dark::after { background: linear-gradient(270deg, var(--dark-2), transparent); }
.srh-dot-bg.light { background-image: radial-gradient(circle, rgba(14, 165, 233,0.1) 1px, transparent 1px); }
.srh-dot-bg.light::before { background: linear-gradient(90deg, var(--white), transparent); }
.srh-dot-bg.light::after { background: linear-gradient(270deg, var(--white), transparent); }


/* ============================================================
   5. SHARED CARD PATTERN
   White card with border, hover lift + shadow.
   Used by: homepage, feature pages, landing pages.
   ============================================================ */
.srh-fg-card, .srh-fp-card, .srh-vis-card, .srh-fp-vis-card,
.sr-feature-card, .sr-use-case-card, .sr-track-card,
.srh-notification-card, .sr-persona-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all 0.2s;
}
.srh-fg-card:hover, .srh-fp-card:hover, .srh-vis-card:hover, .srh-fp-vis-card:hover,
.sr-feature-card:hover, .sr-use-case-card:hover, .sr-track-card:hover,
.srh-notification-card:hover, .sr-persona-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: rgba(14, 165, 233,0.2);
}

/* Card sizing overrides */
.srh-fg-card { padding: 24px 20px; background: var(--gray-50); border-color: var(--gray-100); }
.srh-fg-card:hover { background: var(--green-faint); }
.srh-fp-card { padding: 28px 24px; }
.srh-vis-card, .srh-fp-vis-card { border-radius: var(--radius-lg); overflow: hidden; }
.sr-feature-card { padding: 32px; border-radius: 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.sr-use-case-card, .sr-track-card { padding: 32px; border-radius: 16px; }
.srh-notification-card { padding: 32px; border-radius: 16px; position: relative; }
.sr-persona-card { text-align: center; padding: 32px 20px; border-radius: 16px; }

/* Card with image at top */
.srh-fp-card.has-image { padding: 0; overflow: hidden; }
.srh-fp-card-img { background: var(--gray-100); border-bottom: 1px solid var(--gray-100); overflow: hidden; padding: 10px 10px 0; }
.srh-fp-card-img img { width: 100%; height: auto; display: block; border-radius: 6px 6px 0 0; border: 1px solid var(--gray-200); box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.srh-fp-card-body { padding: 24px; }

/* Dark card variant */
.srh-fp-card.dark, .srh-pipe-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.srh-fp-card.dark:hover, .srh-pipe-card:hover {
  background: rgba(14, 165, 233,0.08);
  border-color: rgba(14, 165, 233,0.3);
  transform: translateY(-2px);
}

/* Muted card */
.srh-fp-card.muted { background: var(--gray-50); border-color: var(--gray-100); }
.srh-fp-card.muted:hover { background: var(--green-faint); }

/* Icon top-right card variant */
.srh-fp-card.icon-tr { position: relative; padding: 24px 20px !important; }
.srh-fp-card.icon-tr .srh-fp-card-icon { float: right; margin: 0 0 8px 12px !important; }

/* Step number badge (numbered cards in automation grid) */
.srh-fp-step-number { font-size: 22px; font-weight: 800; color: var(--green-light); margin-bottom: 10px; }

/* CTA card variant (centered content with icon + link) */
.srh-fp-card-cta { display: flex; align-items: center; justify-content: center; text-align: center; }
.srh-fp-card-cta-icon { font-size: 32px; margin-bottom: 12px; }

/* Explore link spacing */
.srh-fp-explore-link { margin-top: 24px !important; display: inline-flex !important; }
.srh-fp-explore-link-sm { font-size: 13px; padding: 10px 20px !important; }


/* ============================================================
   6. SHARED ICON CONTAINERS
   ============================================================ */
.srh-fg-card-icon, .srh-vis-card-icon, .srh-fp-card-icon, .srh-fp-vis-card-icon,
.srh-notification-icon {
  border-radius: 10px;
  background: var(--green-faint);
  border: 1px solid rgba(14, 165, 233,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.srh-fg-card-icon { width: 40px; height: 40px; background: white; border-color: var(--gray-200); }
.srh-vis-card-icon, .srh-fp-vis-card-icon { width: 40px; height: 40px; }
.srh-fp-card-icon { width: 44px; height: 44px; border-radius: 12px; margin-bottom: 16px; }
.srh-notification-icon { width: 56px; height: 56px; border-radius: 14px; background: #f0fdf4; border: none; margin-bottom: 20px; font-size: 28px; }

.srh-fg-card-icon svg { width: 18px; height: 18px; color: var(--green); }
.srh-vis-card-icon svg, .srh-fp-vis-card-icon svg { width: 20px; height: 20px; color: var(--green); }
.srh-fp-card-icon svg { width: 20px; height: 20px; color: var(--green); }
.srh-fp-card-icon.on-dark { background: rgba(14, 165, 233,0.15); border-color: rgba(14, 165, 233,0.3); }
.srh-fp-card-icon.on-dark svg { color: var(--green-light); }

/* Landing page icon containers */
.sr-feature-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 28px; background: rgba(14, 165, 233,0.1); }
.sr-feature-card.featured .sr-feature-icon { background: rgba(255,255,255,0.2); }
.sr-use-case-icon, .sr-track-icon, .sr-persona-icon { font-size: 32px; margin-bottom: 16px; }
.sr-persona-icon { font-size: 40px; }


/* ============================================================
   7. SHARED SECTION HEADINGS
   ============================================================ */
.srh-section-heading, .srh-fp-heading {
  text-align: center; max-width: 640px;
}
.srh-section-heading h2, .srh-fp-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1; color: var(--gray-800);
  letter-spacing: -0.02em; margin-bottom: 16px !important;
}
.srh-section-heading h2 em, .srh-fp-heading h2 em { font-style: italic; color: var(--green); }
.srh-section-heading p, .srh-fp-heading p { font-size: 16px; color: var(--gray-500); line-height: 1.7; margin-bottom: 0 !important; }

.srh-fp-heading { max-width: 680px; margin: 0 auto; }
.srh-fp-dark-heading { text-align: center; max-width: 680px; margin: 0 auto; }
.srh-fp-dark-heading h2 { font-family: var(--font-display); font-size: clamp(30px, 4vw, 50px); line-height: 1.1; color: white; letter-spacing: -0.02em; margin-bottom: 16px !important; }
.srh-fp-dark-heading h2 em { font-style: italic; color: var(--green-light); }
.srh-fp-dark-heading > p { font-size: 16px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 0 !important; }

/* Landing page section header */
.sr-section-header { text-align: center; max-width: 700px; margin: 0 auto 60px auto; }
.sr-section-header h2 { font-size: 42px; font-weight: 700; color: var(--sr-dark); margin: 0 0 16px 0; line-height: 1.2; }
.sr-section-header p { font-size: 18px; color: var(--sr-gray-600); margin: 0; line-height: 1.6; }
.sr-section-badge { display: inline-block; background: linear-gradient(135deg, rgba(14, 165, 233,0.1) 0%, rgba(56, 189, 248,0.1) 100%); color: var(--sr-green); padding: 8px 16px; border-radius: 50px; font-size: 14px; font-weight: 600; margin-bottom: 20px; }


/* ============================================================
   8. SHARED SECTION LABELS (pill badges)
   ============================================================ */
.srh-section-label, .srh-fp-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green); background: var(--green-faint);
  border: 1px solid rgba(14, 165, 233,0.2); border-radius: 20px; padding: 7px 18px !important; margin-bottom: 20px !important;
}
.srh-section-label.dark, .srh-fp-label.dark {
  background: rgba(14, 165, 233,0.15); border-color: rgba(14, 165, 233,0.3); color: var(--green-light);
}
.srh-section-label .dot, .srh-fp-label .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: blink 2s ease-in-out infinite;
}


/* ============================================================
   9. SHARED BUTTONS
   ============================================================ */
.srh-btn-cta-primary, .srh-fp-hero .srh-btn-primary,
.srh-fp-section .srh-btn-primary, .srh-fp-dark .srh-btn-primary,
.srh-fp-cta .srh-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: white; text-decoration: none;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  padding: 15px 32px !important; border-radius: 50px; border: none; cursor: pointer;
  transition: all 0.2s; box-shadow: 0 4px 24px rgba(14, 165, 233,0.4);
}
.srh-btn-cta-primary:hover, .srh-fp-hero .srh-btn-primary:hover,
.srh-fp-section .srh-btn-primary:hover, .srh-fp-dark .srh-btn-primary:hover,
.srh-fp-cta .srh-btn-primary:hover {
  background: #0284c7; transform: translateY(-1px); box-shadow: 0 8px 32px rgba(14, 165, 233,0.5);
}

.srh-btn-cta-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.6); text-decoration: none;
  font-family: var(--font-body); font-weight: 500; font-size: 15px;
  padding: 15px 32px !important; border-radius: 50px; border: 1px solid rgba(255,255,255,0.15); transition: all 0.2s;
}
.srh-btn-cta-outline:hover { color: white; border-color: rgba(255,255,255,0.35); }

.srh-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: white; text-decoration: none; font-weight: 600; font-size: 15px;
  padding: 14px 28px !important; border-radius: 50px; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(14, 165, 233,0.35);
}
.srh-btn-primary:hover { background: #0284c7; transform: translateY(-1px); box-shadow: 0 6px 28px rgba(14, 165, 233,0.45); }

.srh-btn-ghost, .srh-fp-cta .srh-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.5); text-decoration: none;
  font-family: var(--font-body); font-weight: 500; font-size: 14px;
  padding: 12px 24px !important; border-radius: 50px; border: 1px solid rgba(255,255,255,0.12); transition: all 0.2s;
}
.srh-btn-ghost:hover { color: white; border-color: rgba(255,255,255,0.3); }

.srh-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--green); text-decoration: none;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  padding: 13px 28px !important; border-radius: 50px; border: 1.5px solid rgba(14, 165, 233,0.35); transition: all 0.2s;
}
.srh-btn-outline:hover { background: var(--green-faint); border-color: var(--green); }

/* Button loading states */
.srh-btn.loading { position: relative; color: transparent !important; pointer-events: none; }
.srh-btn.loading::after { content: ''; position: absolute; width: 20px; height: 20px; top: 50%; left: 50%; margin-top: -10px; margin-left: -10px; border: 2px solid transparent; border-top-color: currentColor; border-radius: 50%; animation: srh-spin 0.8s linear infinite; }
.srh-btn-primary.loading::after { border-top-color: white; }

/* Secondary button */
.srh-btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: white; color: var(--gray-700); text-decoration: none; font-weight: 600; font-size: 15px; padding: 14px 28px !important; border-radius: 12px; border: 1px solid var(--gray-200); cursor: pointer; transition: all 0.2s; }
.srh-btn-secondary:hover { background: var(--gray-50); border-color: var(--gray-300); }

.srh-btn-hero {
  flex-shrink: 0; background: var(--green); color: white; border: none; border-radius: 44px;
  padding: 12px 24px !important; font-family: var(--font-body); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: background 0.2s, transform 0.1s; white-space: nowrap;
}
.srh-btn-hero:hover { background: #0284c7; }
.srh-btn-hero:active { transform: scale(0.98); }

/* Landing page buttons */
.sr-btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 28px; border-radius: 12px; font-size: 16px; font-weight: 600; text-decoration: none !important; border: none; cursor: pointer; transition: all 0.2s ease; }
.sr-btn-large { padding: 18px 36px; font-size: 17px; }
.sr-btn-primary { background: linear-gradient(135deg, var(--sr-green) 0%, var(--sr-green-light) 100%) !important; color: white !important; box-shadow: 0 4px 15px rgba(14, 165, 233,0.3); }
.sr-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(14, 165, 233,0.4); color: white !important; }
.sr-btn-secondary { background: white !important; color: var(--sr-gray-700) !important; border: 1px solid var(--sr-gray-200) !important; }
.sr-btn-secondary:hover { background: var(--sr-gray-50) !important; border-color: var(--sr-gray-300) !important; }
.sr-btn-white { background: white !important; color: var(--sr-green) !important; }
.sr-btn-white:hover { background: var(--sr-cream) !important; transform: translateY(-2px); }


/* ============================================================
   9a. SHARED MODAL
   ============================================================ */
.srh-modal-overlay { position: fixed !important; top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important; width: 100vw !important; height: 100vh !important; max-width: none !important; margin: 0 !important; padding: 20px !important; background: rgba(0,0,0,0.6) !important; align-items: center !important; justify-content: center !important; z-index: 999999 !important; box-sizing: border-box !important; backdrop-filter: blur(4px); transform: none !important; }
.srh-modal-overlay[style*="display: flex"], .srh-modal-overlay[style*="display:flex"] { display: flex !important; }
.srh-modal-content { background: #ffffff !important; border-radius: 16px !important; padding: 32px !important; width: 100% !important; max-width: 480px !important; position: relative !important; box-shadow: 0 25px 80px rgba(0,0,0,0.25) !important; max-height: calc(100vh - 40px) !important; overflow-y: auto !important; box-sizing: border-box !important; margin: 0 auto !important; }
.srh-modal-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border: none; background: #f3f4f6; border-radius: 50%; font-size: 24px; line-height: 1; color: #6b7280; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s ease; padding: 0; }
.srh-modal-close:hover { background: #e5e7eb; color: #111827; }
.srh-modal-content h3 { font-size: 22px; font-weight: 700; color: #111827; margin: 0 0 8px 0; padding-right: 40px; }
.srh-modal-subtitle { font-size: 14px; color: #6b7280; margin: 0 0 24px 0; line-height: 1.5; }

/* ============================================================
   9b. SHARED FORM FIELDS
   ============================================================ */
.srh-form-group { margin-bottom: 18px; }
.srh-form-group label { display: block; margin-bottom: 6px; font-weight: 600; color: #111827; font-size: 14px; }
.srh-form-group input, .srh-form-group select, .srh-form-group textarea { width: 100%; padding: 12px 14px; border: 1px solid #e5e7eb; border-radius: 10px; font-size: 15px; transition: all 0.2s ease; background: #ffffff; box-sizing: border-box; font-family: inherit; color: #111827; }
.srh-form-group textarea { min-height: 90px; resize: vertical; }
.srh-form-group input:focus, .srh-form-group select:focus, .srh-form-group textarea:focus { outline: none; border-color: #0ea5e9; box-shadow: 0 0 0 3px rgba(14, 165, 233,0.1); }
.srh-form-group input::placeholder, .srh-form-group textarea::placeholder { color: #9ca3af; }
.srh-static-value { padding: 12px 14px; background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 10px; font-size: 15px; color: #111827; font-weight: 500; }
.srh-form-actions { display: flex; gap: 12px; margin-top: 24px; }
.srh-form-actions .srh-btn { flex: 1; }

/* ============================================================
   9c. SHARED TOAST NOTIFICATION
   ============================================================ */
.srh-toast { position: fixed; bottom: 30px; right: 30px; padding: 16px 24px; border-radius: 12px; color: white; font-weight: 500; font-size: 14px; z-index: 10000; animation: srh-slideIn 0.3s ease; box-shadow: 0 10px 40px rgba(0,0,0,0.15); }
.srh-toast.success { background: #38bdf8; }
.srh-toast.error { background: #ef4444; }
.srh-toast.info { background: #3b82f6; }


/* ============================================================
   10. SHARED SCROLL REVEAL
   ============================================================ */
.srh-reveal, .srh-fp-reveal { opacity: 0; animation: fade-up 0.6s ease forwards; animation-play-state: paused; }
.srh-reveal.visible, .srh-fp-reveal.visible { animation-play-state: running; }
.srh-reveal-d1, .srh-fp-reveal-d1 { animation-delay: 0.1s; }
.srh-reveal-d2, .srh-fp-reveal-d2 { animation-delay: 0.2s; }
.srh-reveal-d3, .srh-fp-reveal-d3 { animation-delay: 0.3s; }
.srh-reveal-d4, .srh-fp-reveal-d4 { animation-delay: 0.4s; }
.srh-reveal-d5, .srh-fp-reveal-d5 { animation-delay: 0.5s; }


/* ============================================================
   11. SHARED FEATURE LIST (checkmark items)
   ============================================================ */
.srh-feature-list, .srh-fp-feature-list { display: flex; flex-direction: column; gap: 16px; }
.srh-feature-item, .srh-fp-feature-item { display: flex; align-items: flex-start; gap: 12px; }

.srh-feature-check, .srh-fp-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(14, 165, 233,0.15); border: 1px solid rgba(14, 165, 233,0.3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.srh-feature-check svg, .srh-fp-check svg { width: 10px; height: 10px; color: var(--green-light); }

.srh-feature-item-text h4, .srh-fp-feature-text h4 { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.85); margin-bottom: 4px; }
.srh-feature-item-text p, .srh-fp-feature-text p { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.6; }
/* Light variant overrides */
.srh-fp-feature-text h4 { color: var(--gray-800); }
.srh-fp-feature-text h4.on-dark { color: rgba(255,255,255,0.85); }
.srh-fp-feature-text p { color: var(--gray-500); }
.srh-fp-feature-text p.on-dark { color: rgba(255,255,255,0.4); }


/* ============================================================
   12. SHARED BROWSER CHROME
   ============================================================ */
.srh-browser-chrome, .srh-fp-browser-bar {
  background: #f1f3f5; padding: 10px 14px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid #dde1e5;
}
.srh-browser-dots, .srh-fp-browser-dots { display: flex; gap: 5px; }
.srh-browser-dots span, .srh-fp-browser-dots span { width: 10px; height: 10px; border-radius: 50%; background: #d1d5db; }
.srh-browser-dots span:nth-child(1), .srh-fp-browser-dots span:nth-child(1) { background: #fc6058; }
.srh-browser-dots span:nth-child(2), .srh-fp-browser-dots span:nth-child(2) { background: #fec02e; }
.srh-browser-dots span:nth-child(3), .srh-fp-browser-dots span:nth-child(3) { background: #2aca44; }
.srh-browser-bar, .srh-fp-browser-url {
  flex: 1; background: white; border-radius: 4px; padding: 4px 10px;
  font-size: 11px; color: var(--gray-500); display: flex; align-items: center; gap: 6px;
}


/* ============================================================
   13. SHARED GRIDS
   ============================================================ */
.srh-fp-grid { display: grid; gap: 20px; width: 100%; }
.srh-fp-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.srh-fp-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.srh-fp-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }


/* ============================================================
   14. HOMEPAGE — Pipeline Spine
   ============================================================ */
.srh-homepage *,
.srh-homepage *::before,
.srh-homepage *::after { box-sizing: border-box; margin: 0; padding: 0; }

.srh-spine {
  position: absolute; left: var(--pipe-x); transform: translateX(-50%); width: 2px;
  background: linear-gradient(180deg, transparent 0%, var(--green) 20%, var(--green) 80%, transparent 100%);
  z-index: 1; pointer-events: none;
}
.srh-spine::after {
  content: ''; position: absolute; left: 50%; transform: translateX(-50%);
  width: 8px; height: 8px; border-radius: 50%; background: var(--green-light);
  box-shadow: 0 0 12px 4px var(--green-glow); animation: pulse-down 3s ease-in-out infinite;
}

/* Heading knockouts */
.srh-section-heading, .srh-automation-header, .srh-comp-content, .srh-cm-content,
.srh-fg-inner > .srh-section-heading, .srh-pricing-inner > .srh-section-heading,
.srh-hero-inner, .srh-cta-inner { position: relative; z-index: 3; }

.srh-visibility .srh-section-heading::before, .srh-contentmap .srh-cm-content::before,
.srh-features-grid-section .srh-section-heading::before, .srh-pricing .srh-section-heading::before {
  content: ''; position: absolute; top: -40px; left: 50%; transform: translateX(-50%);
  width: 500px; height: calc(100% + 80px);
  background: radial-gradient(ellipse 70% 100% at 50% 50%, var(--light) 55%, transparent 100%);
  z-index: -1; pointer-events: none;
}
.srh-features-grid-section .srh-section-heading::before { background: radial-gradient(ellipse 70% 100% at 50% 50%, white 55%, transparent 100%); }
.srh-hero-inner::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 500px; height: 100%; background: radial-gradient(ellipse 50% 60% at 50% 50%, var(--light) 10%, transparent 70%); z-index: -1; pointer-events: none; }
.srh-automation .srh-automation-header::before, .srh-competition .srh-comp-content::before,
.srh-cta .srh-cta-inner::before { content: ''; position: absolute; top: -40px; left: 50%; transform: translateX(-50%); width: 600px; height: calc(100% + 80px); background: radial-gradient(ellipse 70% 100% at 50% 50%, var(--dark-2) 55%, transparent 100%); z-index: -1; pointer-events: none; }

/* Connector nodes */
.srh-node { position: relative; z-index: 5; display: flex; align-items: center; justify-content: center; width: 100%; height: 64px; pointer-events: none; }
.srh-node-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--green); border: 3px solid var(--white); box-shadow: 0 0 0 3px var(--green-glow), 0 0 20px var(--green-glow); position: relative; z-index: 5; }
.srh-node-dot.dark { border-color: var(--dark); }
.srh-node.dark-node .srh-node-dot { border-color: var(--dark-2); }
.srh-node::before, .srh-node::after { content: ''; position: absolute; top: 50%; width: 80px; height: 1px; background: linear-gradient(90deg, transparent, var(--green)); opacity: 0.4; }
.srh-node::before { right: calc(50% + 10px); }
.srh-node::after { left: calc(50% + 10px); background: linear-gradient(90deg, var(--green), transparent); }

/* Section zero-margin */
.srh-homepage > section, .srh-connector { margin-top: 0 !important; margin-bottom: 0 !important; }
/* Hide stray <p> tags WordPress inserts between sections (wpautop) */
.srh-homepage > p, .srh-homepage > br { display: none !important; }
.entry-content > .srh-homepage, .wp-block-post-content > .srh-homepage,
.is-layout-flow > .srh-homepage { margin: 0 !important; padding: 0 !important; }

/* WP flex-direction fixes */
.srh-bubble, .srh-hero-form, .srh-section-label, .srh-pipe-card-top, .srh-feature-item,
.srh-vis-tags, .srh-node, .srh-comp-mockup-header, .srh-cm-mockup-header, .srh-pricing-inner,
.srh-cta-btns, .srh-browser-chrome, .srh-browser-dots, .srh-automation-cta { flex-direction: row !important; }

.srh-hero-inner, .srh-automation-inner, .srh-visibility-inner, .srh-fg-inner, .srh-pricing-inner,
.srh-vis-card, .srh-pipe-card, .srh-price-card, .srh-feature-item-text, .srh-vis-card-body,
.srh-fg-card, .srh-comp-content, .srh-cm-content, .srh-comp-mockup-body, .srh-cm-tree { flex-direction: column !important; }

.srh-hero p, .srh-bubbles p, .srh-automation p, .srh-visibility p, .srh-competition p,
.srh-contentmap p, .srh-features-grid-section p, .srh-pricing p, .srh-cta p { display: contents !important; }

.srh-hero-sub, .srh-automation-header p, .srh-section-heading p, .srh-comp-content > p,
.srh-cm-content > p, .srh-pipe-card-desc, .srh-vis-card-body p, .srh-feature-item-text p,
.srh-fg-card p, .srh-cta-inner p { display: block !important; }

.srh-bubbles br, .srh-hero br { display: none !important; }

/* Container */
.srh-container { max-width: 1100px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 3; }


/* ============================================================
   14a. HOMEPAGE — Hero
   ============================================================ */
.srh-hero { position: relative; padding: 128px 0 80px; overflow: hidden; background: var(--light); }
.srh-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 100%; background: linear-gradient(180deg, rgba(14, 165, 233,0.07) 0%, transparent 70%); pointer-events: none; }
.srh-hero .srh-spine { top: 75%; height: 25%; }
.srh-hero-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 32px; position: relative; z-index: 2; }
.srh-hero h1 { font-family: var(--font-display); font-size: clamp(42px, 6vw, 76px); line-height: 1.08; color: var(--gray-800); max-width: 820px; letter-spacing: -0.02em; }
.srh-hero h1 em { font-style: italic; color: var(--green); }
.srh-hero-sub { font-size: 18px; color: var(--gray-500); max-width: 540px; line-height: 1.7; font-weight: 400; }
.srh-hero-sub strong { color: var(--gray-700); font-weight: 600; }
.srh-hero-hint { font-size: 12px; color: var(--gray-400); margin-top: -16px; }

/* Hero form */
.srh-hero-form { display: flex; align-items: center; background: white; border: 1.5px solid var(--gray-200); border-radius: 50px; padding: 6px 6px 6px 20px; box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 0 0 4px rgba(14, 165, 233,0.04); gap: 0; width: 100%; max-width: 520px; transition: border-color 0.2s, box-shadow 0.2s; }
.srh-hero-form:focus-within { border-color: var(--green); box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 0 0 4px var(--green-glow); }
.srh-hero-form svg { color: var(--gray-400); flex-shrink: 0; margin-right: 10px; }
.srh-hero-form input { border: none; outline: none; font-family: var(--font-body); font-size: 15px; color: var(--gray-700); background: transparent; flex: 1; min-width: 0; }
.srh-hero-form input::placeholder { color: var(--gray-400); }

/* Floating bubbles */
.srh-bubbles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.srh-bubble { position: absolute; background: white; border: 1px solid var(--gray-200); border-radius: 40px; padding: 7px 14px 7px 8px; display: flex !important; flex-direction: row !important; align-items: center !important; gap: 6px; font-size: 12px; font-weight: 600; color: var(--gray-700); box-shadow: 0 2px 16px rgba(0,0,0,0.06); white-space: nowrap; width: fit-content; max-width: 180px; overflow: hidden; }
.srh-bubble-emoji { font-size: 13px; line-height: 1; flex-shrink: 0; }
.srh-bubble-1 { top: 22%; left: 6%; animation: float-a 7s ease-in-out infinite; }
.srh-bubble-2 { top: 38%; left: 3%; animation: float-b 9s ease-in-out infinite 1s; }
.srh-bubble-3 { top: 18%; right: 5%; animation: float-c 8s ease-in-out infinite 0.5s; }
.srh-bubble-4 { top: 42%; right: 4%; animation: float-d 10s ease-in-out infinite 2s; }
.srh-bubble-5 { top: 60%; left: 8%; animation: float-a 8s ease-in-out infinite 1.5s; }
.srh-bubble-6 { top: 62%; right: 7%; animation: float-b 7s ease-in-out infinite 0.8s; }

/* Hero screenshot */
.srh-hero-screenshot { width: 100%; max-width: 900px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.14), 0 0 0 1px rgba(0,0,0,0.06); position: relative; }
.srh-screenshot-placeholder { width: 100%; aspect-ratio: 16/9; background: linear-gradient(135deg, #f0fdf4, #f0f9ff, #f0f9ff); display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--gray-400); }
.srh-screenshot-placeholder img { width: 100%; height: 100%; object-fit: cover; display: block; }


/* ============================================================
   14b. HOMEPAGE — Automation Section (dark)
   ============================================================ */
.srh-automation { position: relative; background: var(--dark-2); padding: 80px 0 100px; overflow: hidden; }
.srh-automation .srh-spine { top: 0; bottom: 0; height: 100%; background: linear-gradient(180deg, transparent 0%, rgba(14, 165, 233,0.4) 10%, var(--green) 30%, var(--green) 70%, rgba(14, 165, 233,0.4) 90%, transparent 100%); }
.srh-automation .srh-spine::after { animation-duration: 2.5s; }
.srh-automation-inner { display: flex; flex-direction: column; align-items: center; gap: 60px; }
.srh-automation-header { text-align: center; max-width: 680px; }
.srh-automation-header h2 { font-family: var(--font-display); font-size: clamp(34px, 4.5vw, 58px); line-height: 1.1; color: white; letter-spacing: -0.02em; margin-bottom: 16px; }
.srh-automation-header h2 em { font-style: italic; color: var(--green-light); }
.srh-automation-header p { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.7; }
.srh-automation-cta { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }

/* Pipeline diagram */
.srh-pipeline { width: 100%; max-width: 860px; position: relative; }
.srh-pipeline-spine { position: absolute; left: 50%; transform: translateX(-50%); top: 28px; bottom: 28px; width: 2px; background: linear-gradient(180deg, var(--green) 0%, rgba(14, 165, 233,0.2) 100%); z-index: 0; }
.srh-pipeline-spine::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; background: var(--green-light); box-shadow: 0 0 8px 2px var(--green-glow); animation: fill-down 4s ease-in-out infinite alternate; border-radius: 2px; }
.srh-pipeline-steps { display: flex; flex-direction: column; gap: 0; position: relative; z-index: 1; }
.srh-pipe-step { display: grid; grid-template-columns: 1fr 60px 1fr; align-items: center; gap: 0; padding: 12px 0; }
.srh-pipe-step.left .srh-pipe-card { grid-column: 1; } .srh-pipe-step.left .srh-pipe-node { grid-column: 2; } .srh-pipe-step.left .srh-pipe-empty { grid-column: 3; }
.srh-pipe-step.right .srh-pipe-empty { grid-column: 1; } .srh-pipe-step.right .srh-pipe-node { grid-column: 2; } .srh-pipe-step.right .srh-pipe-card { grid-column: 3; }
.srh-pipe-node { display: flex; align-items: center; justify-content: center; width: 60px; height: 60px; flex-shrink: 0; }
.srh-pipe-node-inner { width: 44px; height: 44px; border-radius: 50%; background: var(--dark-3); border: 2px solid rgba(14, 165, 233,0.4); display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; }
.srh-pipe-node-inner::before { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 1.5px solid var(--green); animation: ring-pulse 2.5s ease-out infinite; opacity: 0; }
.srh-pipe-node-num { font-size: 14px; font-weight: 700; color: var(--green-light); }
.srh-pipe-card { padding: 16px 20px; cursor: default; }
.srh-pipe-step.left .srh-pipe-card { position: relative; }
.srh-pipe-step.left .srh-pipe-card::after { content: ''; position: absolute; right: -20px; top: 50%; width: 20px; height: 1px; background: linear-gradient(90deg, rgba(14, 165, 233,0.4), rgba(14, 165, 233,0.1)); }
.srh-pipe-step.right .srh-pipe-card { position: relative; }
.srh-pipe-step.right .srh-pipe-card::before { content: ''; position: absolute; left: -20px; top: 50%; width: 20px; height: 1px; background: linear-gradient(270deg, rgba(14, 165, 233,0.4), rgba(14, 165, 233,0.1)); }
.srh-pipe-card-top { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.srh-pipe-card-icon { width: 30px; height: 30px; border-radius: 8px; background: rgba(14, 165, 233,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.srh-pipe-card-icon svg { width: 14px; height: 14px; color: var(--green-light); }
.srh-pipe-card-title { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9); }
.srh-pipe-card-desc { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.5; padding-left: 40px; }


/* ============================================================
   14c. HOMEPAGE — Visibility, Competition, Content Map, Features Grid, Pricing, CTA
   ============================================================ */
.srh-visibility { position: relative; background: var(--light); padding: 80px 0 100px; overflow: hidden; }
.srh-visibility .srh-spine { top: 0; height: 100%; background: linear-gradient(180deg, transparent 0%, var(--green) 15%, var(--green) 85%, transparent 100%); }
.srh-visibility-inner { display: flex; flex-direction: column; align-items: center; gap: 60px; }
.srh-vis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; width: 100%; }
.srh-vis-card-img { width: 100%; aspect-ratio: 4/3; background: #f3f4f6; border-bottom: 1px solid var(--gray-100); overflow: hidden; display: flex; align-items: flex-start; justify-content: center; padding: 10px 10px 0; }
.srh-vis-card-img img { width: 100%; height: auto; object-fit: cover; object-position: top center; border-radius: 6px 6px 0 0; border: 1px solid var(--gray-200); box-shadow: 0 2px 8px rgba(0,0,0,0.06); display: block; }
.srh-vis-card-body { padding: 24px; }
.srh-vis-card-body h3 { font-size: 17px; font-weight: 700; color: var(--gray-800); margin-bottom: 8px; }
.srh-vis-card-body p { font-size: 13px; color: var(--gray-500); line-height: 1.6; margin-bottom: 16px; }
.srh-vis-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.srh-vis-tag { font-size: 11px; font-weight: 500; color: var(--green); background: var(--green-faint); border-radius: 20px; padding: 5px 14px !important; }

.srh-competition { position: relative; background: var(--dark-2); padding: 80px 0 100px; overflow: hidden; }
.srh-competition .srh-spine { top: 0; height: 100%; background: linear-gradient(180deg, transparent 0%, rgba(14, 165, 233,0.4) 10%, var(--green) 30%, var(--green) 70%, rgba(14, 165, 233,0.4) 90%, transparent 100%); }
.srh-comp-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.srh-comp-content h2 { font-family: var(--font-display); font-size: clamp(30px, 3.5vw, 48px); line-height: 1.1; color: white; letter-spacing: -0.02em; margin-bottom: 20px; }
.srh-comp-content h2 em { font-style: italic; color: var(--green-light); }
.srh-comp-content > p { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 32px; }
.srh-comp-mockup { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); overflow: hidden; }
.srh-comp-mockup-header { padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: space-between; }
.srh-comp-mockup-title { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7); }
.srh-comp-mockup-badge { font-size: 10px; font-weight: 600; color: var(--green-light); background: rgba(14, 165, 233,0.15); border-radius: 20px; padding: 3px 10px; }
.srh-comp-placeholder img { width: 100%; height: 100%; object-fit: cover; }

.srh-contentmap { position: relative; background: var(--light); padding: 80px 0 100px; overflow: hidden; }
.srh-contentmap .srh-spine { top: 0; height: 100%; background: linear-gradient(180deg, transparent 0%, var(--green) 15%, var(--green) 85%, transparent 100%); }
.srh-cm-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.srh-cm-content { order: 2; } .srh-cm-visual { order: 1; }
.srh-cm-content h2 { font-family: var(--font-display); font-size: clamp(30px, 3.5vw, 48px); line-height: 1.1; color: var(--gray-800); letter-spacing: -0.02em; margin-bottom: 16px; }
.srh-cm-content h2 em { font-style: italic; color: var(--green); }
.srh-cm-content > p { font-size: 15px; color: var(--gray-500); line-height: 1.7; margin-bottom: 28px; }
.srh-cm-mockup { background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.srh-cm-mockup-header { background: var(--gray-50); padding: 14px 18px; border-bottom: 1px solid var(--gray-100); font-size: 12px; font-weight: 600; color: var(--gray-600); display: flex; align-items: center; gap: 8px; }
.srh-cm-mockup-header .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.srh-cm-placeholder img { width: 100%; height: auto; display: block; }

.srh-features-grid-section { position: relative; background: white; padding: 80px 0 100px; overflow: hidden; }
.srh-features-grid-section .srh-dot-bg::before { background: linear-gradient(90deg, white, transparent); }
.srh-features-grid-section .srh-dot-bg::after { background: linear-gradient(270deg, white, transparent); }
.srh-features-grid-section .srh-spine { top: 0; height: 100%; }
.srh-fg-inner { display: flex; flex-direction: column; align-items: center; gap: 48px; }
.srh-fg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; width: 100%; }
.srh-fg-card h4 { font-size: 14px; font-weight: 700; color: var(--gray-800); margin-bottom: 6px; }
.srh-fg-card p { font-size: 12px; color: var(--gray-500); line-height: 1.55; }

.srh-pricing { position: relative; background: var(--light); padding: 80px 0 100px; overflow: hidden; }
.srh-pricing .srh-spine { top: 0; height: 100%; }
.srh-pricing-inner { display: flex; flex-direction: column; align-items: center; gap: 48px; }
.srh-pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; width: 100%; }
.srh-price-card { background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px 24px; display: flex; flex-direction: column; gap: 0; transition: all 0.2s; }
.srh-price-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }
.srh-price-card.featured { background: var(--green); border-color: transparent; box-shadow: 0 12px 40px rgba(14, 165, 233,0.3); }
.srh-price-card.featured:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(14, 165, 233,0.4); }
.srh-price-tier { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 12px; }
.srh-price-card.featured .srh-price-tier { color: rgba(255,255,255,0.7); }
.srh-price-amount { font-family: var(--font-display); font-size: 44px; line-height: 1; color: var(--gray-800); margin-bottom: 4px; }
.srh-price-card.featured .srh-price-amount { color: white; }
.srh-price-amount sup { font-size: 22px; }
.srh-price-amount sub { font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--gray-400); }
.srh-price-card.featured .srh-price-amount sub { color: rgba(255,255,255,0.6); }
.srh-price-desc { font-size: 13px; color: var(--gray-500); margin-bottom: 24px; }
.srh-price-card.featured .srh-price-desc { color: rgba(255,255,255,0.65); }
.srh-price-btn { display: block; text-align: center; padding: 12px; border-radius: 50px; font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.2s; border: 1.5px solid var(--gray-200); color: var(--gray-700); background: transparent; }
.srh-price-btn:hover { border-color: var(--green); color: var(--green); }
.srh-price-card.featured .srh-price-btn { background: white; color: var(--green); border-color: transparent; box-shadow: 0 2px 12px rgba(0,0,0,0.1); }
.srh-price-card.featured .srh-price-btn:hover { background: var(--gray-50); }

.srh-cta { position: relative; background: var(--dark); padding: 100px 0; overflow: hidden; text-align: center; }
.srh-cta::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 400px; background: radial-gradient(ellipse, rgba(14, 165, 233,0.15) 0%, transparent 70%); pointer-events: none; }
.srh-cta-inner { display: flex; flex-direction: column; align-items: center; gap: 28px; position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.srh-cta h2 { font-family: var(--font-display); font-size: clamp(36px, 5vw, 62px); line-height: 1.1; color: white; letter-spacing: -0.02em; }
.srh-cta h2 em { font-style: italic; color: var(--green-light); }
.srh-cta p { font-size: 16px; color: rgba(255,255,255,0.45); line-height: 1.7; }
.srh-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* Transition bands */
.srh-band-dark-to-light { position: relative; height: 0; overflow: visible; z-index: 3; }
.srh-band-dark-to-light::before { content: ''; position: absolute; top: -32px; left: 0; right: 0; height: 64px; background: linear-gradient(180deg, var(--dark-2), var(--light)); z-index: 3; }
.srh-band-light-to-dark { position: relative; height: 0; overflow: visible; z-index: 3; }
.srh-band-light-to-dark::before { content: ''; position: absolute; top: -32px; left: 0; right: 0; height: 64px; background: linear-gradient(180deg, var(--light), var(--dark-2)); z-index: 3; }

/* Spine on feature pages + homepage sections */
.srh-fp-hero .srh-spine, .srh-fp-dark .srh-spine, .srh-fp-section .srh-spine,
.srh-fp-cta .srh-spine, .srh-features-grid-section .srh-spine, .srh-pricing .srh-spine,
.srh-visibility .srh-spine { background: linear-gradient(180deg, transparent 0%, var(--green) 15%, var(--green) 85%, transparent 100%); }
.srh-fp-hero .srh-spine { top: 75%; height: 25%; background: linear-gradient(180deg, transparent 0%, var(--green) 100%); }


/* ============================================================
   15. FEATURE PAGE STYLES (srh-fp- prefix)
   ============================================================ */

/* WP overrides for feature pages */
.srh-fp-hero-inner p, .srh-fp-section p, .srh-fp-dark p { display: contents !important; }
.srh-fp-hero-sub, .srh-fp-heading > p, .srh-fp-dark-heading > p, .srh-fp-card p,
.srh-fp-feature-text p, .srh-fp-cta-inner p, .srh-fp-split-content > p { display: block !important; }
.srh-pricing-page .srh-pricing-card p, .srh-pricing-page .srh-pricing-hero-inner p,
.srh-pricing-page .srh-faq-item p, .srh-pricing-page .srh-modal-content p,
.srh-pricing-page .srh-modal-subtitle,
.srh-pricing-page .srh-bottom-cta p,
.srh-pricing-page .srh-plan-description { display: block !important; }
.srh-pricing-page .srh-fp-heading,
.srh-pricing-page .srh-fp-dark-heading { margin: 0 auto !important; text-align: center; }

/* Container */
.srh-fp-container { max-width: 1100px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 3; }

/* Connectors */
.srh-fp-connector { height: 64px; position: relative; z-index: 3; display: flex; align-items: center; justify-content: center; }
.srh-fp-connector.to-dark { background: linear-gradient(180deg, var(--light), var(--dark-2)); }
.srh-fp-connector.to-light { background: linear-gradient(180deg, var(--dark-2), var(--light)); }
.srh-fp-connector.to-dark-from-white { background: linear-gradient(180deg, var(--white), var(--dark-2)); }
.srh-fp-connector.to-dark-final { background: linear-gradient(180deg, var(--light), var(--dark)); }
.srh-fp-node { width: 14px; height: 14px; border-radius: 50%; background: var(--green); border: 3px solid var(--light); box-shadow: 0 0 0 3px var(--green-glow), 0 0 20px var(--green-glow); position: absolute; z-index: 5; }
.srh-fp-node.dark-bg { border-color: var(--dark-2); }
.srh-fp-node.darker-bg { border-color: var(--dark); }

/* Hero */
.srh-fp-hero { position: relative; background: var(--light); padding: 100px 0 80px; overflow: hidden; }
.srh-fp-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 100%; background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(14, 165, 233,0.07) 0%, transparent 70%); pointer-events: none; }
.srh-fp-hero-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 48px; position: relative; z-index: 3; }
.srh-fp-hero-inner.two-col { flex-direction: row; text-align: left; align-items: flex-start; gap: 64px; }
.srh-fp-hero-content { flex: 1; min-width: 0; }
.srh-fp-hero-visual { flex: 1; min-width: 0; }
.srh-fp-hero h1 { font-family: var(--font-display); font-size: clamp(38px, 5.5vw, 68px); line-height: 1.08; color: var(--gray-800); letter-spacing: -0.02em; margin-bottom: 20px; }
.srh-fp-hero h1 em { font-style: italic; color: var(--green); }
.srh-fp-hero-sub { font-size: 17px; color: var(--gray-500); line-height: 1.7; max-width: 560px; margin: 0 auto 32px; }
.srh-fp-hero-inner.two-col .srh-fp-hero-sub { margin: 0 0 32px; }
.srh-fp-hero-hint { font-size: 12px; color: var(--gray-400); }

/* Hero URL form (feature page variant) */
.srh-fp-hero-form { display: flex; align-items: center; background: white; border: 1.5px solid var(--gray-200); border-radius: 50px; padding: 6px 6px 6px 20px; box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 0 0 4px rgba(14, 165, 233,0.04); gap: 0; width: 100%; max-width: 520px; transition: border-color 0.2s, box-shadow 0.2s; }
.srh-fp-hero-form:focus-within { border-color: var(--green); box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 0 0 4px var(--green-glow); }
.srh-fp-hero-form svg { color: var(--gray-400); flex-shrink: 0; margin-right: 10px; }
.srh-fp-hero-form input { border: none; outline: none; font-family: var(--font-body); font-size: 15px; color: var(--gray-700); background: transparent; flex: 1; min-width: 0; }
.srh-fp-hero-form input::placeholder { color: var(--gray-400); }
.srh-fp-hero-btn { flex-shrink: 0; background: var(--green); color: white; border: none; border-radius: 44px; padding: 12px 24px; font-family: var(--font-body); font-size: 14px; font-weight: 600; cursor: pointer; transition: background 0.2s, transform 0.1s; white-space: nowrap; }
.srh-fp-hero-btn:hover { background: #0284c7; }
.srh-fp-hero-btn:active { transform: scale(0.98); }
.srh-fp-hero-form { flex-direction: row !important; }
.srh-fp-seo-audit-page .srh-fp-hero-form p,
.srh-fp-monitoring-page .srh-fp-hero-form p,
.srh-fp-agentic-page .srh-fp-hero-form p,
.srh-fp-performance-page .srh-fp-hero-form p { display: contents !important; }

/* Stats strip */
.srh-fp-stats { display: flex; align-items: center; gap: 24px; margin-top: 8px; flex-wrap: wrap; justify-content: center; }
.srh-fp-hero-inner.two-col .srh-fp-stats { justify-content: flex-start; }
.srh-fp-stat-item { text-align: center; }
.srh-fp-stat-value { display: block; font-size: 22px; font-weight: 700; color: var(--gray-800); line-height: 1; }
.srh-fp-stat-label { display: block; font-size: 11px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
.srh-fp-stat-divider { width: 1px; height: 32px; background: var(--gray-200); }

/* CTA row */
.srh-fp-cta-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; align-items: center; }
.srh-fp-hero-inner.two-col .srh-fp-cta-row { justify-content: flex-start; }

/* Browser mockup */
.srh-fp-browser { width: 100%; max-width: 860px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.14), 0 0 0 1px rgba(0,0,0,0.06); }
.srh-fp-screenshot-slot { width: 100%; aspect-ratio: 16/9; background: linear-gradient(135deg, #f0fdf4, #f0f9ff, #f0f9ff); display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--gray-400); font-style: italic; }
.srh-fp-screenshot-slot img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Sections */
.srh-fp-section { position: relative; background: var(--light); padding: 80px 0 100px; overflow: hidden; }
.srh-fp-section.white-bg { background: var(--white); }
.srh-fp-section-inner { display: flex; flex-direction: column; align-items: center; gap: 60px; position: relative; z-index: 3; }
.srh-fp-dark { position: relative; background: var(--dark-2); padding: 80px 0 100px; overflow: hidden; }
.srh-fp-dark-inner { display: flex; flex-direction: column; align-items: center; gap: 60px; position: relative; z-index: 3; }

/* Split layout */
.srh-fp-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; width: 100%; }
.srh-fp-split.reverse .srh-fp-split-content { order: 2; }
.srh-fp-split.reverse .srh-fp-split-visual { order: 1; }
.srh-fp-split-content h2 { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 46px); line-height: 1.1; color: var(--gray-800); letter-spacing: -0.02em; margin-bottom: 16px !important; }
.srh-fp-split-content h2 em { font-style: italic; color: var(--green); }
.srh-fp-split-content.on-dark h2 { color: white; }
.srh-fp-split-content.on-dark h2 em { color: var(--green-light); }
.srh-fp-split-content > p { font-size: 15px; line-height: 1.7; color: var(--gray-500); margin-bottom: 28px !important; }
.srh-fp-split-content.on-dark > p { color: rgba(255,255,255,0.5); }

/* Card text */
.srh-fp-card h3 { font-size: 16px; font-weight: 700; color: var(--gray-800); margin-bottom: 8px !important; }
.srh-fp-card.dark h3 { color: rgba(255,255,255,0.9); }
.srh-fp-card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }
.srh-fp-card.dark p { color: rgba(255,255,255,0.45); }

/* Vis card extras */
.srh-fp-vis-card-img { width: 100%; aspect-ratio: 4/3; background: var(--gray-100); border-bottom: 1px solid var(--gray-100); overflow: hidden; display: flex; align-items: flex-start; justify-content: center; padding: 10px 10px 0; }
.srh-fp-vis-card-img img { width: 100%; height: auto; object-fit: cover; object-position: top center; border-radius: 6px 6px 0 0; border: 1px solid var(--gray-200); box-shadow: 0 2px 8px rgba(0,0,0,0.06); display: block; }
.srh-fp-vis-card-img.placeholder { align-items: center; justify-content: center; font-size: 12px; color: var(--gray-400); font-style: italic; padding: 0; }
.srh-fp-vis-card-body { padding: 24px; }
.srh-fp-vis-card-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--green-faint); border: 1px solid rgba(14, 165, 233,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.srh-fp-vis-card-icon svg { width: 20px; height: 20px; color: var(--green); }
.srh-fp-vis-card-body h3 { font-size: 17px; font-weight: 700; color: var(--gray-800); margin-bottom: 8px !important; }
.srh-fp-vis-card-body p { font-size: 13px; color: var(--gray-500); line-height: 1.6; margin-bottom: 16px !important; }
.srh-fp-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px !important; }
.srh-fp-tag { font-size: 11px; font-weight: 500; color: var(--green); background: var(--green-faint); border-radius: 20px; padding: 5px 14px !important; }

/* Mockup panels */
.srh-fp-mockup { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); overflow: hidden; }
.srh-fp-mockup-header { padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: space-between; }
.srh-fp-mockup-title { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7); font-family: var(--font-body); }
.srh-fp-mockup-badge { font-size: 10px; font-weight: 600; color: var(--green-light); background: rgba(14, 165, 233,0.15); border-radius: 20px; padding: 3px 10px; }
.srh-fp-mockup-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.srh-fp-mockup-row { display: grid; grid-template-columns: 1fr auto auto auto; gap: 12px; align-items: center; padding: 12px 14px; background: rgba(255,255,255,0.03); border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.05); }
.srh-fp-mockup-site { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7); }
.srh-fp-mockup-stat { font-size: 11px; color: rgba(255,255,255,0.35); text-align: center; }
.srh-fp-mockup-val { font-size: 12px; font-weight: 700; color: white; text-align: right; }
.srh-fp-mockup-val.you { color: var(--green-light); }

.srh-fp-light-mockup { background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.srh-fp-light-mockup-header { background: var(--gray-50); padding: 14px 18px; border-bottom: 1px solid var(--gray-100); font-size: 12px; font-weight: 600; color: var(--gray-600); display: flex; align-items: center; gap: 8px; font-family: var(--font-body); }
.srh-fp-light-mockup-header .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }

/* Category pills */
.srh-fp-cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; width: 100%; }
.srh-fp-cat-pill { display: flex; align-items: center; gap: 10px; padding: 12px 16px; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; color: var(--gray-700); transition: all 0.2s; }
.srh-fp-cat-pill:hover { border-color: rgba(14, 165, 233,0.25); background: var(--green-faint); }
.srh-fp-cat-pill svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }

/* Comparison grid */
.srh-fp-comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; width: 100%; }
.srh-fp-comp-card { border-radius: var(--radius-lg); padding: 32px 28px; border: 1px solid; }
.srh-fp-comp-card.bad { background: rgb(254 235 235); border-color: rgb(239 68 68); }
.srh-fp-comp-card.good { background: white; border-color: var(--green); }
.srh-fp-comp-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.srh-fp-comp-icon { font-size: 20px; line-height: 1; }
.srh-fp-comp-header h3 { font-size: 16px; font-weight: 700; color: var(--gray-800); }
.srh-fp-comp-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.srh-fp-comp-list li { font-size: 14px; color: var(--gray-600); line-height: 1.5; padding-left: 20px; position: relative; }
.srh-fp-comp-card.bad .srh-fp-comp-list li::before { content: '\2013'; position: absolute; left: 0; color: rgba(239,68,68,0.6); }
.srh-fp-comp-card.good .srh-fp-comp-list li::before { content: '\2713'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* Steps */
.srh-fp-steps { display: flex; align-items: flex-start; gap: 0; width: 100%; }
.srh-fp-step { flex: 1; text-align: center; padding: 0 16px; position: relative; }
.srh-fp-step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--green-faint); border: 2px solid rgba(14, 165, 233,0.25); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; color: var(--green); margin: 0 auto 16px; }
.srh-fp-step-num.on-dark { background: rgba(14, 165, 233,0.15); border-color: rgba(14, 165, 233,0.35); color: var(--green-light); }
.srh-fp-step h3 { font-size: 15px; font-weight: 700; color: var(--gray-800); margin-bottom: 8px; }
.srh-fp-step h3.on-dark { color: rgba(255,255,255,0.9); }
.srh-fp-step p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }
.srh-fp-step p.on-dark { color: rgba(255,255,255,0.45); }
.srh-fp-step-arrow { display: flex; align-items: center; justify-content: center; width: 32px; flex-shrink: 0; margin-top: 12px; color: var(--green); opacity: 0.4; font-size: 18px; }

/* Keyword search form */
.srh-fp-search-form { display: flex; align-items: center; background: white; border: 1.5px solid var(--gray-200); border-radius: 50px; padding: 6px 6px 6px 20px; box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 0 0 4px rgba(14, 165, 233,0.04); gap: 0; width: 100%; max-width: 560px; transition: border-color 0.2s, box-shadow 0.2s; }
.srh-fp-search-form:focus-within { border-color: var(--green); box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 0 0 4px var(--green-glow); }
.srh-fp-search-form svg { color: var(--gray-400); flex-shrink: 0; margin-right: 10px; }
.srh-fp-search-form input { border: none; outline: none; font-family: var(--font-body); font-size: 15px; color: var(--gray-700); background: transparent; flex: 1; min-width: 0; }
.srh-fp-search-form input::placeholder { color: var(--gray-400); }

/* Feature page CTA */
.srh-fp-cta { position: relative; background: var(--dark); padding: 100px 0; overflow: hidden; text-align: center; }
.srh-fp-cta::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 400px; background: radial-gradient(ellipse, rgba(14, 165, 233,0.15) 0%, transparent 70%); pointer-events: none; }
.srh-fp-cta-inner { display: flex; flex-direction: column; align-items: center; gap: 28px; position: relative; z-index: 3; max-width: 680px; margin: 0 auto; }
.srh-fp-cta h2 { font-family: var(--font-display); font-size: clamp(34px, 5vw, 58px); line-height: 1.1; color: white; letter-spacing: -0.02em; }
.srh-fp-cta h2 em { font-style: italic; color: var(--green-light); }
.srh-fp-cta p { font-size: 16px; color: rgba(255,255,255,0.45); line-height: 1.7; }
.srh-fp-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* Feature page limit/included badges */
.srh-fp-feature-limit, .sr-feature-limit { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; background: var(--gray-50); border-radius: 10px; margin-top: auto; }
.srh-fp-limit-label, .sr-limit-label { font-size: 13px; color: var(--gray-500); }
.srh-fp-limit-value, .sr-limit-value { font-size: 14px; font-weight: 700; color: var(--green); }
.srh-fp-feature-included, .sr-feature-included { padding: 12px 16px; background: #f0f9ff; border-radius: 10px; text-align: center; margin-top: auto; }
.srh-fp-feature-included span, .sr-feature-included span { font-size: 13px; font-weight: 600; color: var(--green); }


/* ============================================================
   16. LANDING PAGE BASE (sr- prefix)
   ============================================================ */
.siterooster-landing { width: 100%; margin-left: 0; margin-right: 0; margin-top: -20px; background: var(--sr-cream) !important; color: var(--sr-dark); font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; overflow-x: clip; }
.siterooster-landing *, .siterooster-landing *::before, .siterooster-landing *::after { box-sizing: border-box; }
.sr-wrap-narrow { max-width: 1000px; margin: 0 auto; padding: 0 20px; width: 100%; }
.sr-wrap-wide { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; }
.sr-wrap-hero { max-width: 1400px; margin: 0 auto; padding: 0 20px; width: 100%; }
.siterooster-landing section { padding: 100px 20px; }

/* Landing page cards */
.sr-feature-card { padding: 32px; border-radius: 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.sr-feature-card.featured { background: linear-gradient(135deg, var(--sr-green), var(--sr-green-light)); color: white; grid-row: span 2; }
.sr-feature-card h3 { font-size: 20px; font-weight: 700; margin: 0 0 12px 0; }
.sr-feature-card:not(.featured) h3 { color: var(--sr-dark); }
.sr-feature-card p { font-size: 15px; line-height: 1.6; opacity: 0.9; margin: 0 0 20px 0; }
.sr-feature-card:not(.featured) p { color: var(--sr-gray-600); }
.sr-feature-bullets { list-style: none; padding: 0; margin: 0; }
.sr-feature-bullets li { padding: 6px 0; font-size: 14px; display: flex; align-items: center; gap: 8px; }
.sr-feature-bullets li::before { content: '\2713'; font-weight: bold; }
.sr-feature-card:not(.featured) .sr-feature-bullets li::before { color: var(--sr-green); }
.sr-feature-card.featured .sr-feature-bullets li::before { color: white; }
.sr-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.sr-use-case-card h3, .sr-track-card h3 { font-size: 18px; font-weight: 700; margin: 0 0 12px 0; color: var(--sr-dark); }
.sr-use-case-card p, .sr-track-card p { font-size: 14px; color: var(--sr-gray-600); line-height: 1.6; margin: 0 0 16px 0; }
.sr-persona-card h3 { font-size: 16px; font-weight: 700; margin: 0 0 8px 0; color: var(--sr-dark); }
.sr-persona-card p { font-size: 13px; color: var(--sr-gray-500); margin: 0; line-height: 1.5; }

/* Tags */
.sr-signal-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sr-signal-tag { background: white; border: 1px solid var(--sr-gray-200); padding: 4px 10px; border-radius: 6px; font-size: 12px; color: var(--sr-gray-600); }
.sr-use-case-example { padding: 12px 16px; background: var(--gray-50); border-radius: 10px; font-size: 13px; color: var(--gray-600); border-left: 3px solid var(--green); }
.sr-example-label { display: block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray-400); margin-bottom: 4px; }

/* Grids */
.sr-use-cases-grid, .sr-track-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.sr-benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; padding: 0 20px; }
.sr-personas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; padding: 0 20px; }
.sr-features-deep-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; padding: 0 20px; }

/* Benefit / deep card */
.sr-benefit-card, .sr-feature-deep-card { display: flex; gap: 20px; padding: 28px; background: var(--gray-50); border-radius: 16px; transition: all 0.2s; }
.sr-benefit-card:hover, .sr-feature-deep-card:hover { background: #f1f5f9; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.sr-benefit-icon { font-size: 28px; width: 56px; height: 56px; background: linear-gradient(135deg, rgba(14, 165, 233,0.1), rgba(56, 189, 248,0.1)); border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sr-feature-deep-icon { font-size: 24px; width: 48px; height: 48px; background: rgba(14, 165, 233,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sr-benefit-content h3, .sr-feature-deep-content h3 { font-size: 18px; font-weight: 700; margin: 0 0 8px 0; color: var(--sr-dark); }
.sr-benefit-content p, .sr-feature-deep-content p { font-size: 14px; color: var(--sr-gray-600); line-height: 1.6; margin: 0; }

/* How it works */
.sr-steps-container { display: flex; align-items: flex-start; gap: 20px; max-width: 1000px; margin: 0 auto; padding: 0 20px; }
.sr-step { flex: 1; text-align: center; }
.sr-step-number { width: 56px; height: 56px; background: linear-gradient(135deg, var(--sr-green), var(--sr-green-light)); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 700; margin: 0 auto 20px; }
.sr-step h3 { font-size: 20px; font-weight: 700; margin: 0 0 8px 0; color: var(--sr-dark); }
.sr-step p { font-size: 15px; color: var(--sr-gray-500); line-height: 1.6; margin: 0; }
.sr-step-connector { width: 60px; height: 2px; background: var(--sr-gray-200); margin-top: 28px; flex-shrink: 0; }

/* Change preview / diff */
.sr-change-preview, .srh-change-preview { background: white; border-radius: 20px; box-shadow: 0 25px 80px rgba(0,0,0,0.15); overflow: hidden; }
.sr-diff-block, .srh-diff-block { border-radius: 12px; padding: 16px; margin-bottom: 16px; }
.sr-diff-removed, .srh-diff-removed { background: #fef2f2; border: 1px solid #fecaca; }
.sr-diff-added, .srh-diff-added { background: #f0f9ff; border: 1px solid #a7f3d0; }
.sr-diff-label, .srh-diff-label { font-size: 12px; font-weight: 600; margin-bottom: 8px; display: flex; align-items: center; gap: 4px; }
.sr-diff-removed .sr-diff-label, .srh-diff-removed .srh-diff-label { color: var(--sr-red); }
.sr-diff-added .sr-diff-label, .srh-diff-added .srh-diff-label { color: var(--sr-green); }
.sr-diff-text, .srh-diff-text { font-family: 'SF Mono', Monaco, 'Courier New', monospace; font-size: 14px; padding: 8px 12px; border-radius: 6px; }
.sr-diff-removed .sr-diff-text { background: #fee2e2; color: #991b1b; text-decoration: line-through; }
.sr-diff-added .sr-diff-text { background: #e0f2fe; color: #0c4a6e; }
.sr-diff-source, .srh-diff-source { padding: 12px; background: var(--sr-gray-50); border-radius: 8px; font-size: 13px; color: var(--sr-gray-500); }
.sr-diff-source strong, .srh-diff-source strong { color: var(--sr-dark); }

/* Feed preview */
.sr-feed-preview, .srh-feed-preview { background: white; border-radius: 20px; box-shadow: 0 25px 80px rgba(0,0,0,0.15); overflow: hidden; }
.sr-feed-item, .srh-feed-item { display: flex; align-items: center; gap: 12px; padding: 14px; background: var(--sr-gray-50); border-radius: 10px; margin-bottom: 10px; border: 1px solid transparent; transition: all 0.3s; }
.sr-feed-item:last-child, .srh-feed-item:last-child { margin-bottom: 0; }
.sr-feed-item.active, .srh-feed-item.active { background: #f0fdf4; }
.sr-feed-icon, .srh-feed-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.sr-feed-icon-price { background: #fef2f2; } .sr-feed-icon-feature { background: #f0f9ff; }
.sr-feed-icon-message { background: #eff6ff; } .sr-feed-icon-alert { background: #fef3c7; }
.sr-feed-details, .srh-feed-details { flex: 1; min-width: 0; }
.sr-feed-header, .srh-feed-header { display: flex; align-items: center; gap: 8px; margin-bottom: 2px; }
.sr-feed-competitor, .srh-feed-competitor { font-weight: 600; font-size: 14px; color: var(--sr-dark); }
.sr-feed-tag, .srh-feed-tag { font-size: 11px; background: var(--sr-gray-200); padding: 2px 6px; border-radius: 4px; color: var(--sr-gray-600); }
.sr-feed-change, .srh-feed-change { font-size: 13px; color: var(--sr-gray-500); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sr-feed-time, .srh-feed-time { font-size: 11px; color: var(--sr-gray-400); white-space: nowrap; }

/* Floating alerts */
.sr-floating-alert, .srh-floating-alert { position: absolute; background: white; padding: 14px 18px; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.15); display: flex; align-items: center; gap: 12px; animation: float 3s ease-in-out infinite; }
.sr-alert-icon, .srh-alert-icon { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.sr-alert-success .sr-alert-icon { background: #f0f9ff; color: var(--sr-green); }
.sr-alert-warning .sr-alert-icon { background: #fef3c7; color: var(--sr-yellow); }
.sr-alert-content, .srh-alert-content { white-space: nowrap; }
.sr-alert-title, .srh-alert-title { display: block; font-weight: 600; font-size: 14px; color: var(--sr-dark); }
.sr-alert-time, .srh-alert-time { font-size: 12px; color: var(--sr-gray-400); }
.sr-floating-badge, .srh-floating-badge { position: absolute; bottom: -20px; left: -30px; background: white; padding: 12px 16px; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.15); display: flex; align-items: center; gap: 10px; animation: float 3s ease-in-out infinite; }

/* Pricing teaser */
.sr-pricing-cards-teaser { display: flex; justify-content: center; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; max-width: 1000px; margin-left: auto; margin-right: auto; padding: 0 20px; }
.sr-pricing-card-mini { background: var(--sr-gray-50); padding: 32px 40px; border-radius: 20px; min-width: 180px; position: relative; }
.sr-pricing-card-mini.highlighted { background: linear-gradient(135deg, var(--sr-green), var(--sr-green-light)); color: white; transform: scale(1.05); box-shadow: 0 20px 60px rgba(14, 165, 233,0.3); }
.sr-popular-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--sr-dark); color: white; padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 600; }
.sr-pricing-card-mini h3 { font-size: 18px; font-weight: 600; margin: 0 0 8px 0; }
.sr-pricing-card-mini:not(.highlighted) h3 { color: var(--sr-dark); }
.sr-price { font-size: 36px; font-weight: 700; margin-bottom: 8px; }
.sr-pricing-card-mini:not(.highlighted) .sr-price { color: var(--sr-dark); }
.sr-price span { font-size: 16px; font-weight: 400; opacity: 0.7; }
.sr-pricing-card-mini p { font-size: 14px; opacity: 0.8; margin: 0; }

/* Final CTA */
.sr-final-cta { background: linear-gradient(135deg, var(--sr-green), var(--sr-green-light)); text-align: center; }
.sr-final-cta h2 { font-size: 42px; font-weight: 700; color: white; max-width: 1000px; margin-left: auto; margin-right: auto; }
.sr-final-cta p { font-size: 18px; color: rgba(255,255,255,0.9); max-width: 1000px; margin-left: auto; margin-right: auto; }
.sr-cta-note { display: block; margin-top: 16px; font-size: 14px; color: rgba(255,255,255,0.8); }

/* Social proof */
.sr-social-proof { text-align: center; padding: 80px 20px !important; background: white; }
.sr-social-proof p { font-size: 16px; color: var(--sr-gray-400); max-width: 1200px; margin-left: auto; margin-right: auto; }
.sr-proof-logos { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; max-width: 1200px; margin: 0 auto; }
.sr-proof-logos span { font-size: 16px; color: var(--sr-gray-500); }


/* ============================================================
   17. NOTIFICATION CARDS (shared between feature + landing pages)
   ============================================================ */
.srh-notification-card.locked { opacity: 0.7; }
.srh-notification-card.locked:hover { transform: none; box-shadow: none; }
.srh-notification-content h3 { font-size: 18px; font-weight: 700; color: var(--gray-800); margin: 0 0 8px 0; }
.srh-notification-content p { font-size: 14px; color: var(--gray-500); line-height: 1.6; margin: 0 0 16px 0; }
.srh-notification-types { display: flex; flex-wrap: wrap; gap: 8px; }
.srh-notification-types span { padding: 4px 10px; background: #f1f5f9; border-radius: 6px; font-size: 12px; font-weight: 500; color: var(--gray-500); }
.srh-notification-status { margin-top: 20px; }
.srh-status-badge { display: inline-block; padding: 6px 12px; border-radius: 100px; font-size: 12px; font-weight: 600; }
.srh-status-badge.available { background: #f0f9ff; color: var(--green); }
.srh-notification-lock { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(255,255,255,0.9); border-radius: 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.srh-lock-icon { font-size: 32px; }
.srh-lock-text { font-size: 14px; font-weight: 600; color: var(--gray-500); }
.srh-notification-note { text-align: center; padding: 20px 24px; background: var(--gray-50); border-radius: 12px; font-size: 14px; color: var(--gray-500); }
.srh-notifications-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }


/* ============================================================
   17a. PRICING PAGE (srh-pricing-page)
   ============================================================ */

/* WP margin override */
.srh-pricing-page, .srh-pricing-page > *:first-child { margin-block-start: 0 !important; margin-top: 0 !important; }

/* Pricing hero */
.srh-pricing-page .srh-fp-hero { padding: 80px 0 48px; }
.srh-pricing-hero-inner { text-align: center; max-width: 700px; margin: 0 auto; }
.srh-pricing-hero-inner h1 { font-family: var(--font-display); font-size: clamp(38px, 5.5vw, 56px); font-weight: 400; line-height: 1.1; color: var(--gray-800); margin-bottom: 16px; letter-spacing: -0.02em; }
.srh-pricing-hero-inner .srh-fp-hero-sub { margin: 0 auto 32px; max-width: 520px; }

/* Billing toggle */
.srh-billing-toggle { display: inline-flex; align-items: center; gap: 16px; background: #fff; padding: 8px 24px; border-radius: 100px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); border: 1px solid #e5e7eb; }
.srh-toggle-label { font-size: 15px; font-weight: 600; color: #9ca3af; cursor: pointer; transition: color 0.3s ease; display: flex; align-items: center; gap: 8px; }
.srh-toggle-label.active { color: var(--gray-800); }
.srh-save-badge { background: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%); color: white; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.srh-toggle-switch { position: relative; width: 52px; height: 28px; cursor: pointer; }
.srh-toggle-switch input { opacity: 0; width: 0; height: 0; }
.srh-toggle-slider { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-color: #e5e7eb; border-radius: 28px; transition: 0.3s ease; }
.srh-toggle-slider:before { position: absolute; content: ""; height: 22px; width: 22px; left: 3px; bottom: 3px; background-color: white; border-radius: 50%; transition: 0.3s ease; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.srh-toggle-switch input:checked + .srh-toggle-slider { background: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%); }
.srh-toggle-switch input:checked + .srh-toggle-slider:before { transform: translateX(24px); }

/* Pricing cards section */
.srh-pricing-cards-section { background: #f9fafb; }
.srh-pricing-cards-section .srh-dot-bg { opacity: 0.2; }
.srh-pricing-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; max-width: 1060px; margin: 0 auto; }

/* Individual pricing card */
.srh-pricing-card { background: #fff; border-radius: 16px; padding: 32px 28px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); border: 1px solid #e5e7eb; transition: all 0.3s ease; position: relative; display: flex; flex-direction: column; }
.srh-pricing-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

/* Tier accent bars */
.srh-pricing-card::before { content: ''; position: absolute; top: 0; left: 24px; right: 24px; height: 4px; border-radius: 0 0 4px 4px; }
.srh-tier-free::before { background: #9ca3af; }
.srh-tier-small::before { background: #3b82f6; }
.srh-tier-medium::before { background: #0ea5e9; }
.srh-tier-enterprise::before { background: #f59e0b; }

/* Popular card */
.srh-pricing-card.srh-popular { border-color: #0ea5e9; border-width: 2px; transform: scale(1.03); z-index: 2; box-shadow: 0 8px 30px rgba(14, 165, 233,0.15); }
.srh-pricing-card.srh-popular:hover { transform: scale(1.03) translateY(-8px); box-shadow: 0 20px 40px rgba(14, 165, 233,0.2); }
.srh-popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%); color: white; font-size: 12px; font-weight: 700; padding: 6px 16px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap; box-shadow: 0 4px 12px rgba(14, 165, 233,0.3); }

/* Card header */
.srh-pricing-card-header { margin-bottom: 24px; }
.srh-plan-name { font-family: var(--font-body); font-size: 22px; font-weight: 700; color: var(--gray-800); margin: 0 0 8px 0; }
.srh-plan-description { font-size: 14px; color: var(--gray-500); margin: 0; }

/* Card pricing */
.srh-pricing-card-price { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid #f1f5f9; }
.srh-price { display: flex; align-items: flex-start; gap: 2px; margin-bottom: 4px; }
.srh-currency { font-size: 24px; font-weight: 600; color: var(--gray-800); line-height: 1; margin-top: 8px; }
.srh-amount { font-size: 56px; font-weight: 700; color: var(--gray-800); line-height: 1; }
.srh-period { font-size: 14px; color: var(--gray-500); display: block; }
.srh-annual-total { display: block; font-size: 13px; color: var(--green); font-weight: 600; margin-top: 4px; }
.srh-seat-pricing { display: block; font-size: 13px; color: var(--green); font-weight: 600; margin-top: 8px; padding-top: 8px; border-top: 1px dashed var(--gray-200); }
.srh-feature-note { font-size: 12px; color: var(--green); font-weight: 500; margin-left: auto; }

/* Features list */
.srh-features-list { list-style: none; padding: 0; margin: 0 0 28px 0; flex: 1; }
.srh-features-list li { padding: 10px 0; font-size: 14px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #f8fafc; white-space: nowrap; }
.srh-features-list li:last-child { border-bottom: none; }
.srh-features-list .srh-icon { font-size: 14px; flex-shrink: 0; }
.srh-features-list .srh-included { color: var(--gray-600); }
.srh-features-list .srh-included .srh-icon { color: var(--green-light); }
.srh-features-list .srh-not-included { color: var(--gray-400); }
.srh-features-list .srh-not-included .srh-icon { color: var(--gray-300); }
.srh-features-list .srh-highlight { background: #f0fdf4; margin: 0 -28px; padding: 10px 28px; border-bottom: none; }
.srh-features-list strong { color: var(--gray-800); }

/* Card footer */
.srh-pricing-card-footer { margin-top: auto; }
.srh-pricing-card-footer .srh-btn-block { width: 100%; text-align: center; }
.srh-pricing-card-footer .srh-btn-primary { padding: 14px 28px; font-size: 15px; border-radius: 12px; }
.srh-pricing-card-footer .srh-btn-secondary { padding: 14px 28px; font-size: 15px; border-radius: 12px; }
.srh-enterprise-options { display: flex; flex-direction: column; gap: 10px; }

/* Comparison table */
.srh-comparison-section { background: #fff; }
.srh-comparison-section .srh-dot-bg { opacity: 0.18; }
.srh-comparison-table-wrapper { overflow-x: auto; margin-top: 40px; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); border: 1px solid #e5e7eb; }
.srh-comparison-table { width: 100%; border-collapse: collapse; background: #fff; font-size: 14px; }
.srh-comparison-table th, .srh-comparison-table td { padding: 16px 20px; text-align: center; border-bottom: 1px solid #f1f5f9; }
.srh-comparison-table th:first-child, .srh-comparison-table td:first-child { text-align: left; font-weight: 500; color: #4b5563; min-width: 180px; }
.srh-comparison-table thead th { background: var(--gray-50); font-weight: 700; color: var(--gray-800); font-size: 15px; position: sticky; top: 0; }
.srh-comparison-table .srh-category-row td { background: var(--dark-2); color: #fff; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; padding: 12px 20px; }
.srh-comparison-table .srh-highlight-col { background: #f0fdf4; }
.srh-comparison-table thead .srh-highlight-col { background: #0ea5e9; color: #fff; }
.srh-check { color: #38bdf8; font-weight: 700; }
.srh-cross { color: #d1d5db; }

/* Pricing FAQ (dark section) */
.srh-faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.srh-pricing-page .srh-faq-item { background: rgba(255,255,255,0.04); padding: 28px; border-radius: 14px; border: 1px solid rgba(255,255,255,0.08); transition: all 0.3s ease; }
.srh-pricing-page .srh-faq-item:hover { background: rgba(255,255,255,0.07); transform: translateY(-2px); }
.srh-pricing-page .srh-faq-item h4 { font-family: var(--font-body); font-size: 16px; font-weight: 700; color: #fff; margin: 0 0 12px 0; }
.srh-pricing-page .srh-faq-item p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; margin: 0; }

/* Pricing bottom CTA */
.srh-pricing-page .srh-bottom-cta { text-align: center; padding: 80px 0; }
.srh-pricing-page .srh-bottom-cta h2 { font-family: var(--font-display); font-size: clamp(30px, 4vw, 42px); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 12px; color: #fff; }
.srh-pricing-page .srh-bottom-cta h2 em { color: #38bdf8; }
.srh-pricing-page .srh-bottom-cta-buttons { display: flex; gap: 12px; justify-content: center; }
.srh-pricing-page .srh-bottom-cta .srh-btn-white { display: inline-flex; align-items: center; padding: 14px 32px; border-radius: 10px; font-size: 15px; font-weight: 600; background: #fff; color: #111827; text-decoration: none; border: none; cursor: pointer; transition: all 0.2s ease; }
.srh-pricing-page .srh-bottom-cta .srh-btn-white:hover { background: #f3f4f6; }
.srh-pricing-page .srh-bottom-cta .srh-btn-outline-light { display: inline-flex; align-items: center; padding: 14px 32px; border-radius: 10px; font-size: 15px; font-weight: 600; background: transparent; color: rgba(255,255,255,0.8); text-decoration: none; border: 1px solid rgba(255,255,255,0.2); cursor: pointer; transition: all 0.2s ease; }
.srh-pricing-page .srh-bottom-cta .srh-btn-outline-light:hover { border-color: rgba(255,255,255,0.5); color: #fff; }


/* ============================================================
   18. APP WINDOW
   ============================================================ */
.app-window-container { background: #fff; display: flex; justify-content: center; padding: 0 20px; }
.app-window { background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 25px 80px rgba(0,0,0,0.12); border: 1px solid rgba(0,0,0,0.06); max-width: 1200px; }
.app-window .top-bar { height: 44px; background: #f3f4f6; display: flex; align-items: center; gap: 10px; padding: 0 16px; border-bottom: 1px solid rgba(0,0,0,0.06); }
.app-window .top-bar .red, .app-window .top-bar .amber, .app-window .top-bar .green { width: 12px; height: 12px; border-radius: 999px; }
.app-window .top-bar .red { background: #ef4444; } .app-window .top-bar .amber { background: #f59e0b; } .app-window .top-bar .green { background: #38bdf8; }
.app-window-img { display: block; width: 100%; height: auto; }


/* ============================================================
   19. PRIVACY PAGE
   ============================================================ */
.siterooster-privacy { width: 100vw; max-width: 100vw; margin-left: calc(-50vw + 50%); padding: 60px 20px; background: linear-gradient(180deg, #f0f9ff, #ffffff); min-height: 100vh; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif; }
.sr-privacy-container { max-width: 800px; margin: 0 auto; }
.sr-privacy-header { text-align: center; margin-bottom: 48px; }
.sr-privacy-header h1 { font-size: 36px; font-weight: 700; color: #022c22; margin: 0 0 12px 0; }
.sr-privacy-updated { font-size: 14px; color: #6b7280; margin: 0; }
.sr-privacy-toc { background: white; border-radius: 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); padding: 28px 32px; margin-bottom: 32px; }
.sr-privacy-toc h2 { font-size: 16px; font-weight: 600; color: #022c22; margin: 0 0 16px 0; }
.sr-privacy-toc ol { margin: 0; padding-left: 20px; }
.sr-privacy-toc li { margin-bottom: 8px; }
.sr-privacy-toc a { color: #0ea5e9; text-decoration: none; font-size: 15px; }
.sr-privacy-toc a:hover { text-decoration: underline; }
.sr-privacy-section { background: white; border-radius: 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); padding: 32px 36px; margin-bottom: 24px; }
.sr-privacy-section h2 { font-size: 20px; font-weight: 600; color: #022c22; margin: 0 0 20px 0; padding-bottom: 12px; border-bottom: 2px solid #f3f4f6; }
.sr-privacy-section p { font-size: 15px; line-height: 1.7; color: #374151; margin: 0 0 16px 0; }
.sr-privacy-section p:last-child { margin-bottom: 0; }
.sr-privacy-section strong { color: #022c22; font-weight: 600; }
.sr-privacy-section ul { margin: 0 0 16px 0; padding-left: 0; list-style: none; }
.sr-privacy-section ul li { font-size: 15px; line-height: 1.7; color: #374151; margin-bottom: 12px; padding-left: 24px; position: relative; }
.sr-privacy-section ul li::before { content: ""; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; background: #0ea5e9; border-radius: 50%; }
.sr-privacy-table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; }
.sr-privacy-table th, .sr-privacy-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid #e5e7eb; }
.sr-privacy-table th { background: #f9fafb; font-weight: 600; color: #022c22; }
.sr-privacy-table td { color: #374151; }
.sr-privacy-contact { background: linear-gradient(135deg, #fff9f7, #ffffff); border: 1px solid #ffe4dc; }
.sr-privacy-contact a { color: #0ea5e9; text-decoration: none; }
.sr-privacy-contact a:hover { text-decoration: underline; }


/* ============================================================
   20. TERMS PAGE
   ============================================================ */
.siterooster-terms { width: 100vw; max-width: 100vw; margin-left: calc(-50vw + 50%); margin-top: 0px !important; padding: 60px 20px; background: linear-gradient(180deg, #f0f9ff, #ffffff); min-height: 100vh; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif; }
.sr-terms-container { max-width: 800px; margin: 0 auto; }
.sr-terms-header { text-align: center; margin-bottom: 48px; }
.sr-terms-header h1 { font-size: 36px; font-weight: 700; color: #022c22; margin: 0 0 12px 0; }
.sr-terms-updated { font-size: 14px; color: #6b7280; margin: 0; }
.sr-terms-toc { background: white; border-radius: 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); padding: 28px 32px; margin-bottom: 32px; }
.sr-terms-toc h2 { font-size: 16px; font-weight: 600; color: #022c22; margin: 0 0 16px 0; }
.sr-terms-toc ol { margin: 0; padding-left: 20px; }
.sr-terms-toc li { margin-bottom: 8px; }
.sr-terms-toc a { color: #0ea5e9; text-decoration: none; font-size: 15px; }
.sr-terms-toc a:hover { text-decoration: underline; }
.sr-terms-section { background: white; border-radius: 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); padding: 32px 36px; margin-bottom: 24px; }
.sr-terms-section h2 { font-size: 20px; font-weight: 600; color: #022c22; margin: 0 0 20px 0; padding-bottom: 12px; border-bottom: 2px solid #f3f4f6; }
.sr-terms-section h3 { font-size: 16px; font-weight: 600; color: #022c22; margin: 24px 0 12px 0; }
.sr-terms-section h3:first-of-type { margin-top: 0; }
.sr-terms-section p { font-size: 15px; line-height: 1.7; color: #374151; margin: 0 0 16px 0; }
.sr-terms-section p:last-child { margin-bottom: 0; }
.sr-terms-section strong { color: #022c22; font-weight: 600; }
.sr-terms-section ul { margin: 0 0 16px 0; padding-left: 0; list-style: none; }
.sr-terms-section ul li { font-size: 15px; line-height: 1.7; color: #374151; margin-bottom: 12px; padding-left: 24px; position: relative; }
.sr-terms-section ul li::before { content: ""; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; background: #0ea5e9; border-radius: 50%; }
.sr-terms-section ol { margin: 0 0 16px 0; padding-left: 24px; }
.sr-terms-section ol li { font-size: 15px; line-height: 1.7; color: #374151; margin-bottom: 8px; }
.sr-terms-contact { background: linear-gradient(135deg, #fff9f7, #ffffff); border: 1px solid #ffe4dc; }
.sr-terms-contact a { color: #0ea5e9; text-decoration: none; }
.sr-terms-contact a:hover { text-decoration: underline; }
.sr-terms-highlight { background: #f9fafb; border-left: 3px solid #0ea5e9; padding: 16px 20px; margin: 16px 0; border-radius: 0 10px 10px 0; }
.sr-terms-highlight p { margin: 0; font-size: 14px; }


/* ============================================================
   21. SUPPORT PAGE
   ============================================================ */
.sr-support-page .sr-support-hero { text-align: center; padding: 80px 20px 60px; max-width: 700px; margin: 0 auto; }
.sr-support-page .sr-support-hero h1 { font-size: 48px; font-weight: 800; color: var(--sr-dark); margin: 0 0 16px 0; letter-spacing: -1px; }
.sr-support-page .sr-support-hero p { font-size: 20px; color: var(--sr-gray-600); margin: 0 0 32px 0; line-height: 1.6; }
.sr-support-page .sr-faq-section { max-width: 900px; margin: 0 auto; padding: 0 20px 80px; }
.sr-support-page .sr-faq-section .sr-section-header { text-align: center; margin-bottom: 48px; }
.sr-support-page .sr-faq-section .sr-section-header h2 { font-size: 36px; font-weight: 700; color: var(--sr-dark); margin: 0 0 12px 0; }
.sr-support-page .sr-faq-category { margin-bottom: 40px; }
.sr-support-page .sr-faq-category-title { display: flex; align-items: center; gap: 12px; font-size: 22px; font-weight: 700; color: var(--sr-dark); margin: 0 0 20px 0; padding-bottom: 12px; border-bottom: 2px solid var(--sr-gray-200); }
.sr-support-page .sr-faq-category-icon { font-size: 24px; }
.sr-support-page .sr-faq-list { display: flex; flex-direction: column; gap: 12px; }
.sr-support-page .sr-faq-item { background: white; border-radius: 12px; border: 1px solid var(--sr-gray-200); overflow: hidden; transition: box-shadow 0.2s, border-color 0.2s; }
.sr-support-page .sr-faq-item:hover { border-color: var(--sr-gray-300); box-shadow: 0 4px 12px rgba(0,0,0,0.04); }
.sr-support-page .sr-faq-item[open] { border-color: var(--sr-green); box-shadow: 0 4px 20px rgba(14, 165, 233,0.1); }
.sr-support-page .sr-faq-item summary { padding: 20px 24px; font-size: 16px; font-weight: 600; color: var(--sr-dark); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; transition: background 0.2s; }
.sr-support-page .sr-faq-item summary::-webkit-details-marker { display: none; }
.sr-support-page .sr-faq-item summary::after { content: '+'; font-size: 24px; font-weight: 400; color: var(--sr-gray-400); transition: transform 0.2s, color 0.2s; flex-shrink: 0; margin-left: 16px; }
.sr-support-page .sr-faq-item[open] summary::after { content: '\2212'; color: var(--sr-green); }
.sr-support-page .sr-faq-item summary:hover { background: var(--sr-gray-50); }
.sr-support-page .sr-faq-item[open] summary { background: var(--sr-cream); }
.sr-support-page .sr-faq-answer { padding: 0 24px 24px; color: var(--sr-gray-600); font-size: 15px; line-height: 1.7; }
.sr-support-page .sr-faq-answer p { margin: 0 0 12px 0; }
.sr-support-page .sr-faq-answer p:last-child { margin-bottom: 0; }
.sr-support-page .sr-faq-answer ul { margin: 12px 0; padding-left: 24px; }
.sr-support-page .sr-faq-answer li { margin-bottom: 8px; }
.sr-support-page .sr-faq-answer a { color: var(--sr-green); text-decoration: none; font-weight: 500; }
.sr-support-page .sr-faq-answer a:hover { text-decoration: underline; }
.sr-support-page .sr-contact-section { max-width: 700px; margin: 0 auto; padding: 0 20px 100px; }
.sr-support-page .sr-contact-card { background: white; border-radius: 20px; border: 1px solid var(--sr-gray-200); box-shadow: 0 10px 40px rgba(0,0,0,0.06); overflow: hidden; }
.sr-support-page .sr-contact-header { text-align: center; padding: 48px 40px 32px; background: linear-gradient(180deg, var(--sr-cream), white); }
.sr-support-page .sr-contact-icon { font-size: 48px; display: block; margin-bottom: 16px; }
.sr-support-page .sr-contact-header h2 { font-size: 28px; font-weight: 700; color: var(--sr-dark); margin: 0 0 12px 0; }
.sr-support-page .sr-contact-header p { font-size: 16px; color: var(--sr-gray-500); margin: 0; line-height: 1.6; }
.sr-support-page .sr-contact-form-wrapper { padding: 32px 40px 48px; }
.sr-support-page .sr-contact-form-wrapper .wpcf7-form { display: flex; flex-direction: column; gap: 20px; }
.sr-support-page .sr-contact-form-wrapper .wpcf7-form p { margin: 0; }
.sr-support-page .sr-contact-form-wrapper .wpcf7-form label { display: block; font-size: 14px; font-weight: 600; color: var(--sr-dark); margin-bottom: 8px; }
.sr-support-page .sr-contact-form-wrapper .wpcf7-form input[type="text"],
.sr-support-page .sr-contact-form-wrapper .wpcf7-form input[type="email"],
.sr-support-page .sr-contact-form-wrapper .wpcf7-form textarea { width: 100%; padding: 14px 16px; font-size: 15px; border: 1px solid var(--sr-gray-200); border-radius: 10px; background: var(--sr-gray-50); color: var(--sr-dark); transition: border-color 0.2s, box-shadow 0.2s, background 0.2s; font-family: inherit; }
.sr-support-page .sr-contact-form-wrapper .wpcf7-form input[type="text"]:focus,
.sr-support-page .sr-contact-form-wrapper .wpcf7-form input[type="email"]:focus,
.sr-support-page .sr-contact-form-wrapper .wpcf7-form textarea:focus { outline: none; border-color: var(--sr-green); box-shadow: 0 0 0 3px rgba(14, 165, 233,0.1); background: white; }
.sr-support-page .sr-contact-form-wrapper .wpcf7-form textarea { min-height: 140px; resize: vertical; }
.sr-support-page .sr-contact-form-wrapper .wpcf7-form input[type="submit"] { width: 100%; padding: 16px 32px; font-size: 16px; font-weight: 600; color: white; background: linear-gradient(135deg, var(--sr-green), var(--sr-green-light)); border: none; border-radius: 10px; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; }
.sr-support-page .sr-contact-form-wrapper .wpcf7-form input[type="submit"]:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(14, 165, 233,0.3); }


/* ============================================================
   21a. FOOTER
   ============================================================ */
/* Hide WordPress theme footer */
footer.wp-block-template-part,
.wp-site-blocks > footer,
.site-footer,
#colophon { display: none !important; }

.sr-footer { background: var(--dark-2); color: rgba(255,255,255,0.5); font-family: var(--font-body); margin-top: 0 !important; position: relative; z-index: 100; display: block !important; visibility: visible !important; }
.sr-footer p { display: block !important; }
.sr-footer-inner { max-width: 1200px; margin: 0 auto; padding: 64px 32px 48px !important; display: grid; grid-template-columns: 1.2fr 2fr 1fr; gap: 48px; align-items: start; }

/* Brand column */
.sr-footer-brand { display: flex; flex-direction: column; gap: 16px; }
.sr-footer-logo { display: flex !important; align-items: center !important; gap: 10px !important; text-decoration: none !important; }
.sr-footer-logo img { width: 28px; height: 28px; border-radius: 6px; }
.sr-footer-logo span { font-family: var(--font-body); font-size: 17px; font-weight: 700; color: white; }
.sr-footer-copyright { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.5; }

/* Link columns */
.sr-footer-links { display: flex; gap: 48px; }
.sr-footer-col { display: flex; flex-direction: column; gap: 10px; }
.sr-footer-col h4 { font-family: var(--font-body); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.3); margin-bottom: 4px !important; }
.sr-footer-col a { font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; padding: 0 !important; }
.sr-footer-col a:hover { color: var(--green-light); }

/* CTA column */
.sr-footer-cta { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.sr-footer-cta p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.5; margin: 0 !important; }
.sr-footer-btn { display: inline-flex; align-items: center; gap: 6px; background: var(--green); color: white !important; text-decoration: none !important; font-size: 13px; font-weight: 600; padding: 10px 20px !important; border-radius: 8px; transition: background 0.2s, transform 0.1s; }
.sr-footer-btn:hover { background: #0284c7; transform: translateY(-1px); }

/* Bottom bar */
.sr-footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); }
.sr-footer-bottom-inner { max-width: 1200px; margin: 0 auto; padding: 20px 32px !important; font-size: 12px; color: rgba(255,255,255,0.25); }


/* ============================================================
   22. RESPONSIVE — Consolidated
   ============================================================ */
@media (max-width: 1100px) {
  /* Pricing page */
  .srh-pricing-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .srh-pricing-card.srh-popular { transform: none; }
  .srh-pricing-card.srh-popular:hover { transform: translateY(-8px); }
}

@media (max-width: 1024px) {
  /* Homepage */
  .srh-comp-inner, .srh-cm-inner { grid-template-columns: 1fr; gap: 40px; }
  .srh-cm-content { order: 1; } .srh-cm-visual { order: 2; }

  /* Feature pages */
  .srh-fp-split { grid-template-columns: 1fr; gap: 40px; }
  .srh-fp-split.reverse .srh-fp-split-content { order: 1; }
  .srh-fp-split.reverse .srh-fp-split-visual { order: 2; }
  .srh-fp-grid.cols-4, .srh-fp-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .srh-fp-comparison { grid-template-columns: 1fr; }
  .srh-fp-hero-inner.two-col { flex-direction: column; text-align: center; }
  .srh-fp-hero-inner.two-col .srh-fp-cta-row,
  .srh-fp-hero-inner.two-col .srh-fp-stats { justify-content: center; }
  .srh-fp-steps { flex-wrap: wrap; justify-content: center; }
  .srh-fp-step { min-width: 180px; max-width: 220px; }
  .srh-fp-step-arrow { display: none; }

  /* Landing pages */
  .sr-features-grid, .sr-use-cases-grid, .sr-track-grid { grid-template-columns: 1fr 1fr; }
  .sr-feature-card.featured { grid-row: span 1; }
  .sr-features-deep-grid, .sr-benefits-grid { grid-template-columns: 1fr; }
  .sr-personas-grid { grid-template-columns: repeat(2, 1fr); max-width: 600px; }

  /* Notifications */
  .srh-notifications-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .srh-bubbles { display: none; }
  .srh-vis-grid { grid-template-columns: 1fr 1fr; }
  .srh-fg-grid { grid-template-columns: repeat(2, 1fr); }
  .srh-pricing-grid { grid-template-columns: 1fr 1fr; }
  .srh-pipe-step { grid-template-columns: 1fr 48px 1fr; }
}

@media (max-width: 768px) {
  /* Hide the pipeline visualization on mobile — too complex for small screens */
  .srh-pipeline { display: none; }

  /* Landing pages */
  .siterooster-landing section { padding: 60px 20px; }
  .sr-features-grid, .sr-use-cases-grid, .sr-track-grid, .sr-benefits-grid, .sr-personas-grid { grid-template-columns: 1fr; }
  .sr-steps-container { flex-direction: column; gap: 30px; }
  .sr-step-connector { width: 2px; height: 40px; margin: 0 auto; }
  .sr-pricing-cards-teaser { flex-direction: column; align-items: center; }
  .sr-pricing-card-mini { width: 100%; max-width: 280px; }
  .sr-pricing-card-mini.highlighted { transform: none; }
  .sr-final-cta h2 { font-size: 28px; }
  .sr-proof-logos { gap: 24px; }
  .sr-section-header h2 { font-size: 28px; }
  .sr-benefit-card, .sr-feature-deep-card { flex-direction: column; text-align: center; }

  /* Notifications */
  .srh-notifications-grid { grid-template-columns: 1fr; }

  /* Support */
  .sr-support-page .sr-support-hero { padding: 60px 20px 40px; }
  .sr-support-page .sr-support-hero h1 { font-size: 36px; }
  .sr-support-page .sr-faq-section { padding: 0 16px 60px; }
  .sr-support-page .sr-faq-category-title { font-size: 18px; }
  .sr-support-page .sr-contact-header { padding: 36px 24px 24px; }
  .sr-support-page .sr-contact-form-wrapper { padding: 24px 24px 36px; }

  /* Legal */
  .siterooster-privacy, .siterooster-terms { padding: 40px 16px; }
  .sr-privacy-header h1, .sr-terms-header h1 { font-size: 28px; }
  .sr-privacy-section, .sr-terms-section { padding: 24px 20px; }
  .sr-privacy-toc, .sr-terms-toc { padding: 20px 24px; }
  .sr-privacy-table th, .sr-privacy-table td { padding: 10px 12px; font-size: 13px; }

  /* Floating elements */
  .sr-floating-alert, .srh-floating-alert, .sr-floating-badge, .srh-floating-badge { display: none; }

  /* Pricing page */
  .srh-pricing-page .srh-fp-hero { padding: 60px 0 36px; }
  .srh-pricing-cards-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .srh-pricing-card { padding: 28px 24px; }
  .srh-amount { font-size: 48px; }
  .srh-faq-grid { grid-template-columns: 1fr; }
  .srh-billing-toggle { padding: 6px 16px; gap: 12px; }
  .srh-toggle-label { font-size: 14px; }
  .srh-comparison-table { font-size: 12px; }
  .srh-comparison-table th, .srh-comparison-table td { padding: 12px 10px; }
  .srh-comparison-table th:first-child, .srh-comparison-table td:first-child { min-width: 120px; }
  .srh-features-list .srh-highlight { margin: 0 -24px; padding: 10px 24px; }

  /* Footer */
  .sr-footer-inner { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px 36px !important; }
  .sr-footer-links { gap: 32px; }
  .sr-footer-bottom-inner { padding: 16px 24px !important; }
}

@media (max-width: 600px) {
  /* Homepage */
  .srh-container { padding: 0 20px; }
  .srh-vis-grid { grid-template-columns: 1fr; }
  .srh-fg-grid { grid-template-columns: 1fr 1fr; }
  .srh-pricing-grid { grid-template-columns: 1fr; }
  .srh-pipe-step { grid-template-columns: 1fr; }
  .srh-pipeline-spine { display: none; }
  .srh-pipe-step.left .srh-pipe-card::after,
  .srh-pipe-step.right .srh-pipe-card::before { display: none; }
  .srh-pipe-node { display: none; }
  .srh-nav-links { display: none; }

  /* Feature pages */
  .srh-fp-container { padding: 0 20px; }
  .srh-fp-grid.cols-2, .srh-fp-grid.cols-3 { grid-template-columns: 1fr; }
  .srh-fp-grid.cols-4 { grid-template-columns: 1fr 1fr; }
  .srh-fp-hero h1 { font-size: clamp(32px, 8vw, 52px); }
  .srh-fp-cta h2 { font-size: 34px; }
}

@media (max-width: 480px) {
  .sr-support-page .sr-support-hero h1 { font-size: 28px; }
  .sr-support-page .sr-faq-category-title { font-size: 16px; gap: 8px; }
  .sr-support-page .sr-faq-item summary { padding: 14px 16px; font-size: 14px; }
  .sr-support-page .sr-contact-header { padding: 28px 20px 20px; }
  .sr-support-page .sr-contact-form-wrapper { padding: 20px 20px 28px; }

  /* Pricing page */
  .srh-billing-toggle { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .srh-toggle-label[data-period="annual"] { order: 3; width: 100%; justify-content: center; margin-top: 4px; }
  .srh-form-actions { flex-direction: column; }
  .srh-pricing-page .srh-bottom-cta-buttons { flex-direction: column; align-items: center; }

  /* Footer */
  .sr-footer-links { flex-direction: column; gap: 24px; }
  .sr-footer-cta { align-items: stretch; }
  .sr-footer-btn { text-align: center; justify-content: center; }
}

html, body {
  overflow: visible !important;
}

#wp-skip-link {
  position: absolute;
  left: -9999px;
}