/*
Theme Name: Browserspelletjes Theme 20260526
Theme URI: https://example.com/browserspelletjes-theme-20260526
Author: PBN Automation
Author URI: https://example.com
Description: Professional theme for Browserspelletjes
Version: 1.0.1779782004
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: browserspelletjes-theme-20260526
Tags: blog, custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #0072F5;
  --secondary-color: #FF6F20;
  --accent-color: #D5006D;
  --bg-color: #ffffff;
  --text-color: #333333;
  --link-color: #0072F5;
  --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --heading-font: 'Georgia', serif;
  --max-width: 1200px;
  --spacing-small: 1rem;
  --spacing-medium: 2rem;
  --spacing-large: 4rem;
}

body {
  font-family: var(--font-family);
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
  font-size: 18px;
}

.site-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-medium);
}

/* Header Styles */
.site-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 1.5rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-logo img {
  max-height: 80px;
  width: auto;
  display: block;
  background: white;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.custom-logo-link {
  display: block;
  line-height: 0;
}

.site-branding.has-logo .site-identity {
  display: none;
}

.site-identity {
  display: flex;
  flex-direction: column;
}

.site-title {
  font-family: var(--heading-font);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.site-title a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}

.site-title a:hover {
  opacity: 0.85;
}

.site-description {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-top: 0.25rem;
  line-height: 1.3;
}

/* Navigation */
.main-navigation {
  display: flex;
  gap: 2rem;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.main-navigation li {
  position: relative;
}

.main-navigation a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  transition: all 0.3s;
  display: block;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
  background: rgba(255,255,255,0.15);
  transform: translateY(-1px);
}

/* Hamburger menu button */
.menu-toggle {
  display: none;
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  padding: 0.75rem;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.5rem;
  line-height: 1;
}

.menu-toggle:hover {
  background: rgba(255,255,255,0.3);
}

.menu-toggle:focus {
  outline: 2px solid rgba(255,255,255,0.5);
  outline-offset: 2px;
}

/* Modern Hero Section */
.hero-content {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.hero-content .hero-title {
  font-family: var(--heading-font);
  font-size: 3.5rem;
  font-weight: 800;
  margin: 0 0 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-intro {
  font-size: 1.25rem;
  line-height: 1.7;
  opacity: 0.95;
  max-width: 800px;
  margin: 0 auto;
}

.intro-section {
  padding: 5rem 0;
  background: white;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-text .section-heading {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #444;
}

.intro-visual .visual-placeholder {
  width: 100%;
}

/* Topic Sections */
.topic-section {
  padding: 5rem 0;
}

.topic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.topic-reverse .topic-grid {
  direction: rtl;
}

.topic-reverse .topic-grid > * {
  direction: ltr;
}

.topic-heading {
  font-family: var(--heading-font);
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.topic-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 2rem;
}

.topic-keypoints {
  list-style: none;
  padding: 0;
  margin: 0;
}

.topic-keypoints li {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.keypoint-bullet {
  font-size: 1.5rem;
  margin-right: 0.75rem;
  line-height: 1;
  flex-shrink: 0;
}

.topic-visual .visual-placeholder {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.closing-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.closing-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  color: white;
}

.closing-heading {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.closing-text {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent-color);
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-primary:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-outline:hover {
  background: white;
  color: var(--primary-color);
}

.btn-large {
  padding: 1.125rem 3rem;
  font-size: 1.125rem;
}

/* Stats Section */
.stats-showcase {
  padding: 4rem 0;
  background: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
}

.stat-box {
  padding: 2rem;
}

.stat-number {
  font-family: var(--heading-font);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: #666;
  line-height: 1.4;
}

/* Features Section */
.features-modern {
  padding: 5rem 0;
  background: #f8f9fa;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}

.section-heading {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-heading.centered {
  text-align: center;
}

.section-description {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.6;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.feature-row.feature-reverse {
  direction: rtl;
}

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

.feature-text h3.feature-title {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.feature-description {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.feature-checklist {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.feature-checklist li {
  padding: 0.75rem 0;
  font-size: 1rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.checkmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.feature-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2rem;
}

.link-arrow {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.link-arrow:hover {
  color: var(--accent-color);
  transform: translateX(4px);
}

.feature-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-card {
  background: white;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 400px;
}

.visual-placeholder {
  font-size: 8rem;
  text-align: center;
}

/* Testimonials Section */
.testimonials-modern {
  padding: 5rem 0;
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.testimonial-rating {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e5e5;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.author-details {
  flex: 1;
}

.author-name {
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.25rem;
}

.author-role {
  font-size: 0.875rem;
  color: #666;
}

/* Blog Preview Section */
.blog-preview {
  padding: 5rem 0;
  background: #f8f9fa;
}

.text-center {
  text-align: center;
}

/* CTA Section */
.cta-final {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  text-align: center;
  color: white;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--heading-font);
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

/* Old Hero Section - Keep for backward compatibility */
.hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  overflow: hidden;
}

.hero-section.has-background-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-section.has-background-image::before {
  background: rgba(0, 0, 0, 0.3);
  background-image: none;
}

.hero-section.has-background-image .hero-overlay {
  display: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.1);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: var(--spacing-large) var(--spacing-medium);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin: 0;
  opacity: 0.95;
  line-height: 1.4;
  text-shadow: 0 1px 10px rgba(0,0,0,0.2);
}

/* Homepage Specific Styles */
.home-content {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  padding: var(--spacing-large) 0;
}

.featured-section {
  margin-bottom: var(--spacing-large);
}

.section-title {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
  margin: 0 0 var(--spacing-large);
  font-weight: 700;
}

/* Posts Grid */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: var(--spacing-medium);
}

.home-post-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.home-post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.home-post-thumbnail {
  position: relative;
  overflow: hidden;
  height: 240px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.home-post-thumbnail a {
  display: block;
  height: 100%;
}

.home-post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-post-card:hover .home-post-thumbnail img {
  transform: scale(1.1);
}

.home-post-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.home-post-category {
  margin-bottom: 0.75rem;
}

.home-post-category a {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.home-post-category a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.home-post-title {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  margin: 0 0 1rem;
  line-height: 1.3;
}

.home-post-title a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s;
}

.home-post-title a:hover {
  color: var(--accent-color);
}

.home-post-meta {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.home-post-excerpt {
  color: #495057;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: gap 0.3s;
  margin-top: auto;
}

.read-more-link:hover {
  gap: 0.75rem;
}

.view-all-posts {
  text-align: center;
  margin-top: var(--spacing-large);
}

.no-posts {
  text-align: center;
  padding: var(--spacing-large);
  font-size: 1.2rem;
  color: #6c757d;
}

/* Content Area */
.site-content {
  padding: var(--spacing-large) 0;
  min-height: 60vh;
}

.content-area {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--spacing-large);
}

@media (max-width: 768px) {
  .content-area {
    grid-template-columns: 1fr;
  }
}

/* Posts & Articles */
article {
  background: white;
  padding: var(--spacing-medium);
  margin-bottom: var(--spacing-medium);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.entry-header {
  margin-bottom: var(--spacing-medium);
}

.entry-title {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.entry-title a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s;
}

.entry-title a:hover {
  color: var(--accent-color);
}

.entry-meta {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: var(--spacing-small);
}

.entry-meta a {
  color: var(--link-color);
  text-decoration: none;
}

.entry-content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-family: var(--heading-font);
  color: var(--primary-color);
  margin-top: var(--spacing-medium);
  margin-bottom: var(--spacing-small);
}

.entry-content h2 { font-size: 2rem; }
.entry-content h3 { font-size: 1.5rem; }
.entry-content h4 { font-size: 1.25rem; }

.entry-content p {
  margin-bottom: var(--spacing-small);
}

.entry-content a {
  color: var(--link-color);
  text-decoration: underline;
}

.entry-content ul,
.entry-content ol {
  margin-left: 2rem;
  margin-bottom: var(--spacing-small);
}

.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: var(--spacing-medium) 0;
}

/* Sidebar */
.widget-area {
  font-size: 0.95rem;
}

.widget {
  background: white;
  padding: var(--spacing-medium);
  margin-bottom: var(--spacing-medium);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.widget-title {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-small);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-color);
}

.widget ul {
  list-style: none;
}

.widget li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.widget li:last-child {
  border-bottom: none;
}

.widget a {
  color: var(--link-color);
  text-decoration: none;
}

.widget a:hover {
  color: var(--accent-color);
}

/* Footer */
.site-footer {
  background-color: var(--secondary-color);
  color: white;
  padding: var(--spacing-large) 0 var(--spacing-medium);
  margin-top: var(--spacing-large);
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-medium);
  margin-bottom: var(--spacing-medium);
}

.site-info {
  text-align: center;
  padding-top: var(--spacing-medium);
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.9rem;
  opacity: 0.8;
}

.site-info p {
  margin-bottom: 0.75rem;
}

.site-info a {
  color: white;
  text-decoration: underline;
}

.footer-menu {
  margin-top: 0.75rem;
}

.footer-menu ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.footer-menu a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-menu a:hover {
  color: white;
  text-decoration: underline;
}

/* Comments */
.comments-area {
  margin-top: var(--spacing-large);
  padding-top: var(--spacing-large);
  border-top: 2px solid #eee;
}

.comment-list {
  list-style: none;
}

.comment {
  margin-bottom: var(--spacing-medium);
  padding: var(--spacing-medium);
  background: #f9f9f9;
  border-radius: 8px;
}

.comment-author {
  font-weight: bold;
  color: var(--primary-color);
}

.comment-metadata {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0.5rem;
}

/* Buttons */
.button,
button,
input[type="submit"],
input[type="button"] {
  background-color: var(--accent-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
}

.button:hover,
button:hover,
input[type="submit"]:hover {
  background-color: var(--primary-color);
}

/* Pagination */
.pagination {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: var(--spacing-large);
}

.pagination a,
.pagination span {
  padding: 0.5rem 1rem;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: var(--text-color);
}

.pagination a:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.pagination .current {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Responsive */
@media (max-width: 1024px) {
  .posts-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
  }

  .hero-content .hero-title {
    font-size: 2.75rem;
  }

  .hero-intro {
    font-size: 1.125rem;
  }

  .intro-grid,
  .topic-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .topic-reverse .topic-grid {
    direction: ltr;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .feature-row.feature-reverse {
    direction: ltr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (min-width: 769px) {
  /* Desktop: always show menu, hide hamburger */
  .menu-toggle {
    display: none !important;
  }

  .main-navigation {
    display: flex !important;
    position: static !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .site-branding {
    flex-direction: row;
    text-align: left;
    gap: 1rem;
  }

  .site-title {
    font-size: 1.5rem;
  }

  /* Mobile: show hamburger menu button */
  .menu-toggle {
    display: block;
  }

  /* Mobile: hide navigation by default */
  .main-navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    z-index: 1000;
  }

  .main-navigation.toggled {
    display: block;
  }

  .main-navigation ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  .main-navigation a {
    padding: 0.75rem 1rem;
    display: block;
    text-align: left;
  }

  .hero-content {
    padding: 3rem 0;
  }

  .hero-content .hero-title {
    font-size: 2rem;
  }

  .hero-intro {
    font-size: 1rem;
  }

  .section-heading,
  .topic-heading,
  .closing-heading {
    font-size: 1.75rem;
  }

  .intro-section,
  .topic-section,
  .closing-section,
  .blog-preview {
    padding: 3rem 0;
  }

  .cta-title {
    font-size: 2rem;
  }

  .hero-section {
    min-height: 350px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .posts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .home-post-card {
    max-width: 500px;
    margin: 0 auto;
  }

  .entry-title {
    font-size: 1.75rem;
  }

  .site-container {
    padding: 0 var(--spacing-small);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .site-logo img {
    max-height: 60px;
    padding: 0.5rem 1rem;
  }

  .main-navigation ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }

  .main-navigation a {
    font-size: 0.85rem;
    padding: 0.4rem 0.75rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .home-post-title {
    font-size: 1.25rem;
  }

  .home-post-thumbnail {
    height: 200px;
  }
}

/* Cookie Consent Banner - Minimale enkele regel */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  color: white;
  padding: 0.5rem 1rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  z-index: 99999;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 1px solid var(--accent-color);
}

.cookie-consent-banner.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: nowrap;
}

.cookie-consent-text {
  flex: 0 1 auto;
  white-space: nowrap;
}

.cookie-consent-text p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.2;
  display: inline;
}

.cookie-consent-text p:first-child {
  color: white;
  opacity: 0.95;
}

.cookie-consent-text p:last-child {
  display: none;
}

.cookie-consent-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.35rem 0.875rem;
  border: none;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: none;
}

.cookie-btn-accept {
  background: var(--accent-color);
  color: white;
}

.cookie-btn-accept:hover {
  opacity: 0.9;
}

.cookie-btn-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

@media (max-width: 768px) {
  .cookie-consent-content {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .cookie-consent-text {
    white-space: normal;
    flex: 1 1 100%;
    text-align: center;
  }

  .cookie-consent-actions {
    flex: 1 1 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .cookie-consent-banner {
    padding: 0.5rem 0.75rem;
  }

  .cookie-consent-text p {
    font-size: 0.75rem;
  }

  .cookie-btn {
    padding: 0.3rem 0.75rem;
    font-size: 0.7rem;
  }
}
/* ========================================
   MODERN SAAS THEME - PREMIUM EDITION
   ======================================== */

:root {
  --saas-primary: #0072F5;
  --saas-secondary: #FF6F20;
  --saas-accent: #D5006D;
  --saas-primary-soft: rgba(0, 114, 245, 0.08);
  --saas-primary-glow: rgba(0, 114, 245, 0.35);
  --saas-primary-border: rgba(0, 114, 245, 0.2);

  --saas-dark: #0B1220;
  --saas-dark-2: #111827;
  --saas-text: #0F172A;
  --saas-text-muted: #475569;
  --saas-text-subtle: #64748B;
  --saas-border: #E2E8F0;
  --saas-bg: #FFFFFF;
  --saas-bg-soft: #F8FAFC;
  --saas-bg-soft-2: #F1F5F9;

  --saas-radius-sm: 10px;
  --saas-radius: 16px;
  --saas-radius-lg: 24px;
  --saas-radius-xl: 32px;

  --saas-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.08);
  --saas-shadow: 0 4px 12px rgba(15, 23, 42, 0.06), 0 10px 20px rgba(15, 23, 42, 0.06);
  --saas-shadow-lg: 0 10px 30px rgba(15, 23, 42, 0.08), 0 20px 50px rgba(15, 23, 42, 0.1);
  --saas-shadow-glow: 0 20px 40px var(--saas-primary-glow);
}

body {
  background: var(--saas-bg);
  color: var(--saas-text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.saas-main {
  overflow-x: hidden;
}

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

/* Announcement Bar */
.saas-announce {
  background: linear-gradient(135deg, var(--saas-dark) 0%, var(--saas-dark-2) 100%);
  color: #E2E8F0;
  padding: 10px 0;
  font-size: 14px;
}

.saas-announce-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.saas-announce-pill {
  background: var(--saas-primary);
  color: white;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.saas-announce-text { color: #CBD5E1; }

.saas-announce-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: transform 0.2s;
}

.saas-announce-link:hover {
  transform: translateX(3px);
  color: white;
}

/* ===== HERO ===== */
.saas-hero {
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
  background: var(--saas-bg);
}

.saas-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.saas-mesh {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: saas-drift 20s ease-in-out infinite;
}

.saas-mesh-1 {
  width: 520px;
  height: 520px;
  background: var(--saas-primary);
  top: -200px;
  left: -100px;
  animation-delay: 0s;
}

.saas-mesh-2 {
  width: 480px;
  height: 480px;
  background: var(--saas-accent);
  top: 100px;
  right: -120px;
  animation-delay: -7s;
}

.saas-mesh-3 {
  width: 400px;
  height: 400px;
  background: var(--saas-secondary);
  bottom: -150px;
  left: 40%;
  animation-delay: -14s;
  opacity: 0.35;
}

@keyframes saas-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40px, -30px) scale(1.08); }
  66%      { transform: translate(-30px, 40px) scale(0.95); }
}

.saas-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.saas-hero .saas-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.saas-hero-content {
  max-width: 640px;
  animation: saas-rise 0.8s ease-out;
}

@keyframes saas-rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.saas-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  background: white;
  border: 1px solid var(--saas-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--saas-text-muted);
  margin-bottom: 28px;
  box-shadow: var(--saas-shadow-sm);
}

.saas-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
  animation: saas-pulse 2s ease-in-out infinite;
}

@keyframes saas-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2); }
  50%      { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.0); }
}

.saas-hero-title {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--saas-text);
  margin: 0 0 24px;
}

.saas-text-gradient {
  background: linear-gradient(135deg, var(--saas-primary) 0%, var(--saas-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.saas-hero-intro {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.6;
  color: var(--saas-text-muted);
  margin: 0 0 36px;
  max-width: 560px;
}

.saas-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Buttons */
.saas-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--saas-radius-sm);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1.5px solid transparent;
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
}

.saas-btn-primary {
  background: var(--saas-primary);
  color: white;
  box-shadow: 0 4px 14px var(--saas-primary-glow);
}

.saas-btn-primary:hover {
  background: var(--saas-secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--saas-primary-glow);
  color: white;
}

.saas-btn-ghost {
  background: white;
  color: var(--saas-text);
  border-color: var(--saas-border);
}

.saas-btn-ghost:hover {
  border-color: var(--saas-primary);
  color: var(--saas-primary);
  transform: translateY(-2px);
}

.saas-btn-outline {
  background: transparent;
  color: var(--saas-text);
  border-color: var(--saas-border);
}

.saas-btn-outline:hover {
  background: var(--saas-text);
  color: white;
  border-color: var(--saas-text);
}

.saas-btn-white {
  background: white;
  color: var(--saas-text);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.saas-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.saas-hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--saas-text-muted);
  font-size: 14px;
  flex-wrap: wrap;
}

.saas-trust-stars {
  display: flex;
  gap: 2px;
}

/* Hero Visual (dashboard mockup) */
.saas-hero-visual {
  position: relative;
  perspective: 2000px;
  animation: saas-rise 0.9s 0.2s ease-out backwards;
}

.saas-hero-visual-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, var(--saas-primary-glow), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

.saas-hero-visual-frame {
  position: relative;
  background: white;
  border-radius: var(--saas-radius-lg);
  overflow: hidden;
  border: 1px solid var(--saas-border);
  box-shadow: var(--saas-shadow-lg);
  transform: rotate3d(1, 1, 0, 0deg);
  z-index: 1;
  transition: transform 0.6s ease;
}

.saas-hero-visual:hover .saas-hero-visual-frame {
  transform: rotate3d(1, 1, 0, 2deg) translateY(-6px);
}

.saas-hero-visual-bar {
  background: var(--saas-bg-soft);
  padding: 12px 16px;
  display: flex;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid var(--saas-border);
}

.saas-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.saas-dot-red    { background: #EF4444; }
.saas-dot-yellow { background: #F59E0B; }
.saas-dot-green  { background: #10B981; }

.saas-hero-visual-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Floating cards on hero visual */
.saas-float-card {
  position: absolute;
  background: white;
  padding: 14px 18px;
  border-radius: var(--saas-radius);
  box-shadow: var(--saas-shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--saas-border);
  z-index: 2;
  animation: saas-float 4s ease-in-out infinite;
  min-width: 200px;
}

.saas-float-1 { top: 12%; right: -28px; animation-delay: 0s; }
.saas-float-2 { bottom: 20%; left: -32px; animation-delay: -1.5s; }
.saas-float-3 { top: 55%; right: -20px; animation-delay: -3s; }

@keyframes saas-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.saas-float-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--saas-primary-soft);
  color: var(--saas-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.saas-float-icon-alt {
  background: linear-gradient(135deg, var(--saas-primary), var(--saas-accent));
  color: white;
}

.saas-float-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--saas-text);
}

.saas-float-sub {
  font-size: 11px;
  color: var(--saas-text-subtle);
  margin-top: 2px;
}

.saas-float-avatars {
  display: flex;
}

.saas-float-avatars span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid white;
  background: linear-gradient(135deg, var(--saas-primary), var(--saas-accent));
  margin-left: -10px;
}

.saas-float-avatars span:first-child {
  margin-left: 0;
  background: linear-gradient(135deg, #F59E0B, #EF4444);
}

.saas-float-avatars span:nth-child(2) {
  background: linear-gradient(135deg, #10B981, #06B6D4);
}

/* ===== STATS BAR ===== */
.saas-stats-bar {
  padding: 60px 0;
  background: var(--saas-bg-soft);
  border-top: 1px solid var(--saas-border);
  border-bottom: 1px solid var(--saas-border);
}

.saas-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.saas-stat {
  position: relative;
}

.saas-stat + .saas-stat::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--saas-border);
}

.saas-stat-number {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(135deg, var(--saas-primary), var(--saas-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.saas-stat-number span {
  font-size: 0.6em;
  opacity: 0.8;
}

.saas-stat-label {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--saas-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ===== WHY / SPLIT ===== */
.saas-why {
  padding: 120px 0;
  background: var(--saas-bg);
}

.saas-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.saas-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--saas-primary);
  margin-bottom: 16px;
  padding: 6px 12px;
  background: var(--saas-primary-soft);
  border-radius: 999px;
}

.saas-eyebrow-light {
  color: white;
  background: rgba(255, 255, 255, 0.15);
}

.saas-section-heading,
.saas-section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--saas-text);
  margin: 0 0 20px;
}

.saas-section-lead,
.saas-section-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--saas-text-muted);
  margin: 0 0 32px;
}

.saas-mini-features {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}

.saas-mini-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.saas-mini-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--saas-primary-soft);
  color: var(--saas-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.saas-mini-feature h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--saas-text);
  margin: 0 0 4px;
}

.saas-mini-feature p {
  font-size: 15px;
  color: var(--saas-text-muted);
  margin: 0;
  line-height: 1.5;
}

.saas-split-visual {
  position: relative;
}

.saas-visual-card {
  position: relative;
  border-radius: var(--saas-radius-lg);
  overflow: hidden;
  box-shadow: var(--saas-shadow-lg);
  background: white;
  border: 1px solid var(--saas-border);
  transition: transform 0.4s ease;
}

.saas-visual-card img {
  width: 100%;
  height: auto;
  display: block;
}

.saas-visual-card:hover { transform: translateY(-4px); }

.saas-visual-card-tilt-left { transform: rotate(-1.5deg); }
.saas-visual-card-tilt-right { transform: rotate(1.5deg); }
.saas-visual-card-tilt-left:hover,
.saas-visual-card-tilt-right:hover { transform: rotate(0) translateY(-4px); }

.saas-visual-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: white;
  color: var(--saas-primary);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--saas-shadow);
}

.saas-visual-fallback,
.saas-visual-placeholder {
  aspect-ratio: 4/3;
  border-radius: var(--saas-radius-lg);
  background: linear-gradient(135deg, var(--saas-primary-soft), var(--saas-bg-soft));
  border: 1px solid var(--saas-border);
  position: relative;
  overflow: hidden;
}

.saas-visual-deco {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
}

.saas-visual-deco-1 {
  width: 60%; height: 60%;
  background: var(--saas-primary);
  top: -10%; left: -10%;
}

.saas-visual-deco-2 {
  width: 50%; height: 50%;
  background: var(--saas-accent);
  bottom: -5%; right: -5%;
}

.saas-visual-deco-3 {
  width: 30%; height: 30%;
  background: var(--saas-secondary);
  top: 40%; left: 45%;
}

/* ===== SECTION HEAD ===== */
.saas-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.saas-section-head .saas-section-title {
  margin-bottom: 16px;
}

.saas-section-head .saas-section-sub {
  margin: 0 auto;
}

/* ===== FEATURES GRID ===== */
.saas-features {
  padding: 120px 0;
  background: var(--saas-bg-soft);
  position: relative;
}

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

.saas-feature-card {
  position: relative;
  padding: 36px 32px;
  background: white;
  border: 1px solid var(--saas-border);
  border-radius: var(--saas-radius-lg);
  transition: all 0.3s ease;
  overflow: hidden;
}

.saas-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saas-primary), var(--saas-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.saas-feature-card:hover::before {
  transform: scaleX(1);
}

.saas-feature-card-featured {
  background: linear-gradient(135deg, var(--saas-dark) 0%, var(--saas-dark-2) 100%);
  border-color: var(--saas-dark);
  color: white;
}

.saas-feature-card-featured h3,
.saas-feature-card-featured p { color: white; }

.saas-feature-card-featured p { color: rgba(255, 255, 255, 0.75); }

.saas-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--saas-primary), var(--saas-accent));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px var(--saas-primary-glow);
}

.saas-feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--saas-text);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.saas-feature-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--saas-text-muted);
  margin: 0;
}

.saas-feature-arrow {
  position: absolute;
  top: 36px;
  right: 32px;
  color: var(--saas-text-subtle);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.saas-feature-card:hover .saas-feature-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--saas-primary);
}

.saas-feature-card-featured .saas-feature-arrow { color: rgba(255,255,255,0.7); }
.saas-feature-card-featured:hover .saas-feature-arrow { color: white; }

/* ===== SHOWCASE ROWS ===== */
.saas-showcase {
  padding: 120px 0;
  background: var(--saas-bg);
}

.saas-showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 0;
}

.saas-showcase-row-reverse .saas-showcase-content { order: 2; }
.saas-showcase-row-reverse .saas-showcase-visual  { order: 1; }

.saas-showcase-content h3 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--saas-text);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.saas-showcase-content > p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--saas-text-muted);
  margin: 0 0 28px;
}

.saas-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 14px;
}

.saas-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--saas-text);
  line-height: 1.5;
}

.saas-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--saas-primary-soft);
  color: var(--saas-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.saas-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--saas-primary);
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  transition: gap 0.2s;
}

.saas-arrow-link:hover { gap: 10px; color: var(--saas-secondary); }

/* ===== TESTIMONIALS ===== */
.saas-testimonials {
  padding: 120px 0;
  background: var(--saas-bg-soft);
  position: relative;
}

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

.saas-testimonial {
  padding: 32px;
  background: white;
  border: 1px solid var(--saas-border);
  border-radius: var(--saas-radius-lg);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

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

.saas-testimonial-featured {
  background: linear-gradient(135deg, var(--saas-primary), var(--saas-accent));
  border-color: transparent;
  color: white;
  box-shadow: var(--saas-shadow-glow);
}

.saas-testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 20px;
}

.saas-testimonial blockquote {
  font-size: 17px;
  line-height: 1.7;
  color: var(--saas-text);
  margin: 0 0 24px;
  font-weight: 500;
  flex: 1;
}

.saas-testimonial-featured blockquote { color: white; }

.saas-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--saas-border);
}

.saas-testimonial-featured .saas-testimonial-author {
  border-top-color: rgba(255, 255, 255, 0.2);
}

.saas-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saas-primary), var(--saas-accent));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.saas-testimonial-featured .saas-avatar {
  background: white;
  color: var(--saas-primary);
}

.saas-author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--saas-text);
}

.saas-author-role {
  font-size: 13px;
  color: var(--saas-text-subtle);
  margin-top: 2px;
}

.saas-testimonial-featured .saas-author-name { color: white; }
.saas-testimonial-featured .saas-author-role { color: rgba(255, 255, 255, 0.8); }

/* ===== BLOG ===== */
.saas-blog {
  padding: 120px 0;
  background: var(--saas-bg);
}

.saas-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.saas-post-card {
  background: white;
  border: 1px solid var(--saas-border);
  border-radius: var(--saas-radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.saas-post-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--saas-bg-soft);
}

.saas-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.saas-post-card:hover .saas-post-image img {
  transform: scale(1.06);
}

.saas-post-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.saas-post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--saas-text-subtle);
  margin-bottom: 12px;
}

.saas-post-category {
  background: var(--saas-primary-soft);
  color: var(--saas-primary);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
}

.saas-post-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.saas-post-title a {
  color: var(--saas-text);
  text-decoration: none;
  transition: color 0.2s;
}

.saas-post-title a:hover { color: var(--saas-primary); }

.saas-post-excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: var(--saas-text-muted);
  margin: 0 0 20px;
  flex: 1;
}

.saas-post-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--saas-primary);
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  transition: gap 0.2s;
}

.saas-post-link:hover { gap: 10px; }

.saas-section-cta {
  text-align: center;
}

/* ===== FINAL CTA ===== */
.saas-final-cta {
  padding: 40px 0 120px;
}

.saas-final-cta-card {
  position: relative;
  padding: 80px 60px;
  border-radius: var(--saas-radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--saas-dark) 0%, var(--saas-dark-2) 100%);
  color: white;
  text-align: center;
  box-shadow: var(--saas-shadow-lg);
}

.saas-final-cta-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.saas-mesh-cta-1 {
  width: 600px;
  height: 600px;
  background: var(--saas-primary);
  top: -200px;
  left: -100px;
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
}

.saas-mesh-cta-2 {
  width: 500px;
  height: 500px;
  background: var(--saas-accent);
  bottom: -200px;
  right: -100px;
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
}

.saas-final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.saas-final-cta-content h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 20px;
  color: white;
}

.saas-final-cta-content > p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 36px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .saas-hero .saas-container,
  .saas-split,
  .saas-showcase-row,
  .saas-showcase-row-reverse {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .saas-showcase-row-reverse .saas-showcase-content,
  .saas-showcase-row-reverse .saas-showcase-visual {
    order: initial;
  }

  .saas-feature-grid,
  .saas-testimonial-grid,
  .saas-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .saas-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
}

@media (max-width: 640px) {
  .saas-hero { padding: 60px 0 80px; }
  .saas-why, .saas-features, .saas-showcase,
  .saas-testimonials, .saas-blog { padding: 80px 0; }

  .saas-feature-grid,
  .saas-testimonial-grid,
  .saas-posts-grid,
  .saas-stats-grid {
    grid-template-columns: 1fr;
  }

  .saas-stat + .saas-stat::before { display: none; }

  .saas-float-card { display: none; }

  .saas-final-cta-card {
    padding: 48px 24px;
    border-radius: var(--saas-radius-lg);
  }

  .saas-hero-actions .saas-btn { width: 100%; justify-content: center; }
}
