/*
Theme Name: Content Steer
Theme URI: https://contentsteer.com
Author: SitePlot Media LLC
Author URI: https://siteplotmedia.com
Description: Professional WordPress theme for Content Steer - AI-powered content automation plugin. Features a modern design with teal accents, optimized for conversions with prominent pricing, feature showcases, and demo sections.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: contentsteer
Tags: one-column, custom-menu, featured-images, theme-options, translation-ready
*/

/* ==================== CSS VARIABLES ==================== */
:root {
  --primary: #3d8b8b;
  --primary-dark: #2d6b6b;
  --primary-light: #5aabab;
  --secondary: #2c3e50;
  --accent: #e67e22;
  --accent-light: #f39c12;
  --success: #27ae60;
  --warning: #f1c40f;
  --danger: #e74c3c;
  --dark: #1a1a2e;
  --gray-900: #212529;
  --gray-800: #343a40;
  --gray-700: #495057;
  --gray-600: #6c757d;
  --gray-500: #adb5bd;
  --gray-400: #ced4da;
  --gray-300: #dee2e6;
  --gray-200: #e9ecef;
  --gray-100: #f8f9fa;
  --white: #ffffff;
  --gradient-primary: linear-gradient(135deg, #3d8b8b 0%, #2d6b6b 100%);
  --gradient-hero: linear-gradient(135deg, #1a1a2e 0%, #2c3e50 50%, #3d8b8b 100%);
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; color: var(--gray-700); }

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; }

/* ==================== LAYOUT ==================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-lg { max-width: 1400px; }
.container-sm { max-width: 900px; }

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(61, 139, 139, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(61, 139, 139, 0.5);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}

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

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(230, 126, 34, 0.5);
  color: var(--white);
}

.btn-lg { padding: 1.125rem 2.5rem; font-size: 1.125rem; }
.btn-sm { padding: 0.625rem 1.5rem; font-size: 0.875rem; }

/* ==================== HEADER ==================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.site-logo img,
.site-logo .custom-logo {
  height: 40px;
  width: auto;
  max-width: 200px;
  display: block;
}

/* WordPress custom logo wrapper */
.site-logo .custom-logo-link {
  display: flex;
  align-items: center;
}

.site-logo .custom-logo-link img {
  height: 40px;
  width: auto;
  max-width: 200px;
}

.site-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
}

/* Main Navigation */
.main-navigation {
  display: flex;
  align-items: center;
}

.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation a {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--gray-700);
  padding: 0.5rem 0;
  position: relative;
}

.main-navigation a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item a::after,
.main-navigation .current_page_item a::after {
  width: 100%;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a,
.main-navigation .current_page_item a {
  color: var(--primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--gray-800);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease;
}

.hero-section h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-section h1 .highlight {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  animation: fadeInUp 0.6s ease 0.4s both;
}

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

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  animation: fadeInUp 0.6s ease 0.5s both;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.hero-feature .check { color: var(--success); }

/* ==================== SECTIONS ==================== */
.section {
  padding: 6rem 0;
}

.section-alt {
  background: var(--gray-100);
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.8);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-label {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(61, 139, 139, 0.1);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--gray-600);
}

/* ==================== DEMO SECTION ==================== */
.demo-section {
  background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}

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

/* New Demo Step Blocks Layout */
.demo-step-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.demo-step-block:last-of-type {
  margin-bottom: 0;
}

.demo-step-block.demo-step-reverse {
  grid-template-columns: 1.2fr 1fr;
}

.demo-step-block.demo-step-reverse .demo-step-content {
  order: 2;
}

.demo-step-block.demo-step-reverse .demo-step-preview {
  order: 1;
}

.demo-step-content {
  padding: 1rem 0;
}

.demo-step-number-large {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
}

.demo-step-content h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.demo-step-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-600);
}

.demo-step-preview {
  position: relative;
}

/* Legacy demo steps (keeping for compatibility) */
.demo-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.demo-step {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.demo-step:hover,
.demo-step.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.demo-step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 50%;
}

.demo-step-content h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.demo-step-content > p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin: 0;
}

.demo-frame {
  background: var(--gray-900);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-xl);
}

.demo-frame-header {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

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

.demo-frame-dot:nth-child(1) { background: #ff5f56; }
.demo-frame-dot:nth-child(2) { background: #ffbd2e; }
.demo-frame-dot:nth-child(3) { background: #27ca40; }

.demo-gif-container {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--gray-800);
}

.demo-gif-container img,
.demo-gif-container video {
  width: 100%;
  height: auto;
  display: block;
}

.demo-placeholder {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
  color: var(--gray-400);
  min-height: 250px;
  padding: 2rem;
}

.demo-placeholder-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

/* ==================== FEATURES ==================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(61, 139, 139, 0.1);
  border-radius: var(--radius-md);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin: 0;
}

.feature-list {
  list-style: none;
  margin-top: 1rem;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.375rem 0;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.feature-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
}

/* ==================== PRICING ==================== */
.pricing-section {
  background: var(--gradient-hero);
  position: relative;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.pricing-section .section-header {
  position: relative;
  z-index: 2;
}

.pricing-section .section-label {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.pricing-section .section-header h2 { color: var(--white); }
.pricing-section .section-header p { color: rgba(255, 255, 255, 0.8); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
  border: 3px solid var(--accent);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1.25rem;
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 100px;
}

.pricing-tier {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.pricing-name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pricing-price { margin-bottom: 1.5rem; }

.pricing-price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-800);
  vertical-align: top;
}

.pricing-price .amount {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
}

.pricing-price .period {
  font-size: 1rem;
  color: var(--gray-600);
}

.pricing-description {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  min-height: 48px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
  padding: 0;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.625rem 0;
  font-size: 0.9rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
}

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

.pricing-features li .icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(39, 174, 96, 0.1);
  color: var(--success);
  border-radius: 50%;
  font-size: 0.75rem;
}

.pricing-features li.disabled { color: var(--gray-500); }

.pricing-features li.disabled .icon {
  background: var(--gray-200);
  color: var(--gray-500);
}

.pricing-card .btn { width: 100%; }

/* ==================== OTO CARDS ==================== */
.oto-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.oto-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 2px solid var(--gray-200);
  transition: all 0.3s ease;
}

.oto-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.oto-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.oto-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.oto-number {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: var(--radius-md);
}

.oto-name h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.oto-name p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin: 0;
}

.oto-price { text-align: right; }

.oto-price .amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.oto-price .type {
  font-size: 0.75rem;
  color: var(--gray-600);
}

.oto-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.oto-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

.oto-features li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.testimonial-stars {
  color: var(--warning);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
}

.testimonial-info h4 {
  font-size: 1rem;
  margin-bottom: 0.125rem;
}

.testimonial-info p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin: 0;
}

/* ==================== FAQ ==================== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-900);
  transition: all 0.3s ease;
}

.faq-question:hover { color: var(--primary); }

.faq-icon {
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  color: var(--gray-700);
  line-height: 1.8;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  background: var(--gradient-hero);
  position: relative;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* ==================== PAGE HEADER ==================== */
.page-header {
  background: var(--gradient-hero);
  padding: 10rem 0 4rem;
  text-align: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.breadcrumb a { color: rgba(255, 255, 255, 0.7); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255, 255, 255, 0.5); }

/* ==================== CONTENT PAGES ==================== */
.content-section {
  padding: 4rem 0;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.content-wrapper h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}

.content-wrapper h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.content-wrapper h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.content-wrapper ul,
.content-wrapper ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.content-wrapper li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.content-wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.content-wrapper th,
.content-wrapper td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}

.content-wrapper th {
  background: var(--gray-100);
  font-weight: 600;
}

.toc {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
}

.toc h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.toc ol {
  margin: 0;
  padding-left: 1.25rem;
}

.toc li { margin-bottom: 0.375rem; }

.toc a {
  color: var(--gray-700);
  font-size: 0.9rem;
}

.toc a:hover { color: var(--primary); }

/* ==================== CONTACT FORM ==================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-info {
  padding: 2rem;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--gray-300);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--primary);
  font-size: 1.25rem;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.contact-info-content h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-info-content p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin: 0;
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.form-group label .required { color: var(--danger); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray-800);
  background: var(--white);
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(61, 139, 139, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox input {
  width: 20px;
  height: 20px;
  margin-top: 0.125rem;
}

.form-checkbox label {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-bottom: 0;
}

/* ==================== FOOTER ==================== */
.site-footer {
  background: var(--dark);
  color: var(--gray-400);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand { max-width: 300px; }

.footer-brand .site-logo { margin-bottom: 1rem; }

.footer-brand .site-logo img {
  height: 35px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.footer-column h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li { margin-bottom: 0.625rem; }

.footer-menu a {
  color: var(--gray-500);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-menu a:hover { color: var(--primary-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.footer-legal a:hover { color: var(--primary-light); }

/* Warrior Plus Disclaimer */
.wplus-disclaimer-wrapper {
  padding: 1.5rem 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: var(--gray-500);
  text-align: center;
}

.wplus_spdisclaimer {
  line-height: 1.6;
}

.wplus_spdisclaimer a {
  color: var(--gray-400);
  text-decoration: underline;
}

.wplus_spdisclaimer a:hover {
  color: var(--primary-light);
}

/* ==================== BLOG ==================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

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

.blog-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content { padding: 1.5rem; }

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
}

.blog-card-category {
  padding: 0.25rem 0.75rem;
  background: rgba(61, 139, 139, 0.1);
  color: var(--primary);
  border-radius: 100px;
  font-weight: 600;
}

.blog-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-card h3 a { color: var(--gray-900); }
.blog-card h3 a:hover { color: var(--primary); }

.blog-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Blog Single */
.blog-single-header {
  padding: 10rem 0 4rem;
  background: var(--gradient-hero);
  text-align: center;
}

.blog-single-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.blog-single-meta .category {
  padding: 0.375rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-single-meta .date,
.blog-single-meta .read-time {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.blog-single-header h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.blog-single-content {
  padding: 4rem 0;
}

.blog-single-content .container {
  max-width: 800px;
}

.entry-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.entry-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.entry-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background: var(--gray-100);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--gray-700);
}

/* ==================== SUPPORT PAGE ==================== */
.support-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.support-option {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.support-option:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.support-option-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(61, 139, 139, 0.1);
  color: var(--primary);
  font-size: 2rem;
  border-radius: var(--radius-lg);
  margin: 0 auto 1.5rem;
}

.support-option h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.support-option p {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

/* ==================== DOCS PAGE ==================== */
.docs-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
}

.docs-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.docs-nav {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.docs-nav-section { margin-bottom: 1.5rem; }
.docs-nav-section:last-child { margin-bottom: 0; }

.docs-nav-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
}

.docs-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.docs-nav-links a {
  display: block;
  padding: 0.5rem 0.75rem;
  margin: 0.125rem 0;
  font-size: 0.9rem;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.docs-nav-links a:hover,
.docs-nav-links a.active,
.docs-nav-links .current-menu-item a {
  background: rgba(61, 139, 139, 0.1);
  color: var(--primary);
}

.docs-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.docs-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

.docs-step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 50%;
}

.docs-callout {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

.docs-callout.tip {
  background: rgba(39, 174, 96, 0.1);
  border-left: 4px solid var(--success);
}

.docs-callout.warning {
  background: rgba(241, 196, 15, 0.1);
  border-left: 4px solid var(--warning);
}

.docs-callout.info {
  background: rgba(61, 139, 139, 0.1);
  border-left: 4px solid var(--primary);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ==================== WORDPRESS SPECIFIC ==================== */
.wp-block-image img { border-radius: var(--radius-md); }

.aligncenter { text-align: center; }
.alignleft { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* ==================== PROBLEM CARDS ==================== */
.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.problem-card {
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  text-align: center;
}

.problem-card .problem-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.problem-card h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin: 0;
}

/* ==================== EXAMPLE SITES ==================== */
.example-sites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.example-site-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.example-site-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.example-site-image {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.example-site-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.example-site-card:hover .example-site-image img {
  transform: scale(1.05);
}

.example-site-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.example-site-card:hover .example-site-overlay {
  opacity: 1;
}

.example-site-content {
  padding: 1.5rem;
}

.example-site-content h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.example-site-content p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.example-site-stats {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ==================== INCLUDED SECTION ==================== */
.included-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.included-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  border: 1px solid var(--gray-200);
}

.included-check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(39, 174, 96, 0.1);
  color: var(--success);
  font-weight: 700;
  border-radius: 50%;
}

.included-content h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.included-content p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin: 0;
}

.included-sidebar {
  position: sticky;
  top: 100px;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--primary);
}

.price-card-header {
  background: var(--gradient-primary);
  padding: 2rem;
  text-align: center;
}

.price-label {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.price-amount {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.price-value {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
}

.price-term {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.price-card-body {
  padding: 2rem;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.price-features li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
}

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

.price-guarantee {
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-top: 1rem;
  margin-bottom: 0;
}

/* ==================== REQUIREMENTS ==================== */
.requirements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.requirement-card {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.requirement-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.requirement-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.requirement-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.requirement-note {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(61, 139, 139, 0.1);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 100px;
}

.requirements-note {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--primary);
}

.requirements-note-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.requirements-note-content h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.requirements-note-content p {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.7;
}

/* ==================== ENHANCED CTA ==================== */
.cta-price {
  margin-bottom: 2rem;
}

.cta-price-label {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.cta-price-amount {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.cta-price-currency {
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 1rem;
}

.cta-price-value {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.cta-price-term {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.cta-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.trust-icon {
  font-size: 1.25rem;
}

/* ==================== OTO PAGE STYLES ==================== */
.oto-hero {
  background: var(--gradient-hero);
  padding: 10rem 0 4rem;
  text-align: center;
  position: relative;
}

.oto-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.oto-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.oto-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.oto-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.oto-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.oto-price-display {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

.oto-price-original {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
}

.oto-price-current {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
}

.oto-timer {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(231, 76, 60, 0.2);
  border: 1px solid rgba(231, 76, 60, 0.5);
  border-radius: var(--radius-md);
  color: #ff6b6b;
  font-weight: 600;
  margin-bottom: 2rem;
}

.oto-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.oto-skip-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  text-decoration: underline;
}

.oto-skip-link:hover {
  color: rgba(255, 255, 255, 0.9);
}

.oto-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: left;
  max-width: 800px;
  margin: 3rem auto 0;
}

.oto-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
}

.oto-feature-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(39, 174, 96, 0.2);
  color: #2ecc71;
  border-radius: 50%;
  font-size: 0.875rem;
}

.oto-feature-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.5;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}

.comparison-table th {
  background: var(--gray-100);
  font-weight: 600;
  font-size: 0.9rem;
}

.comparison-table .check {
  color: var(--success);
  font-size: 1.25rem;
}

.comparison-table .cross {
  color: var(--gray-400);
  font-size: 1.25rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .features-grid,
  .pricing-grid,
  .testimonials-grid,
  .example-sites-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-10px); }
  
  .demo-grid { grid-template-columns: 1fr; gap: 3rem; }
  .demo-preview { order: -1; }
  
  .demo-step-block,
  .demo-step-block.demo-step-reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .demo-step-block.demo-step-reverse .demo-step-content,
  .demo-step-block.demo-step-reverse .demo-step-preview {
    order: unset;
  }
  
  .demo-step-preview {
    order: -1;
  }
  
  .docs-layout { grid-template-columns: 1fr; }
  .docs-sidebar { position: relative; top: 0; }
  
  .footer-grid { grid-template-columns: 1fr 1fr; }
  
  .included-grid { grid-template-columns: 1fr; }
  .included-sidebar { position: relative; top: 0; margin-top: 2rem; }
  
  .oto-features-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 1rem;
    box-shadow: var(--shadow-lg);
  }
  
  .main-navigation.active { display: flex; }
  
  .main-navigation ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  
  .main-navigation li { width: 100%; }
  
  .main-navigation a {
    display: block;
    padding: 0.75rem 1rem;
  }
  
  .nav-cta { display: none; }
  .mobile-toggle { display: flex; }
  
  .hero-section { padding: 7rem 0 3rem; }
  .hero-stats { gap: 2rem; }
  .hero-stat-value { font-size: 2rem; }
  
  .features-grid,
  .pricing-grid,
  .testimonials-grid,
  .blog-grid,
  .problem-cards,
  .example-sites-grid,
  .requirements-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid,
  .oto-grid,
  .support-options {
    grid-template-columns: 1fr;
  }
  
  .form-row { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .section { padding: 4rem 0; }
  .section-header { margin-bottom: 3rem; }
  
  .demo-step-block { margin-bottom: 3rem; }
  .demo-step-number-large { width: 50px; height: 50px; font-size: 1.25rem; }
  .demo-step-content h3 { font-size: 1.5rem; }
  .demo-step-content p { font-size: 1rem; }
  
  .cta-trust {
    flex-direction: column;
    gap: 1rem;
  }
  
  .requirements-note {
    flex-direction: column;
    text-align: center;
  }
  
  .oto-hero { padding: 8rem 0 3rem; }
  .oto-price-current { font-size: 2.5rem; }
  .oto-features-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-cta,
  .hero-features,
  .cta-buttons {
    flex-direction: column;
  }
  
  .hero-cta .btn,
  .cta-buttons .btn {
    width: 100%;
  }
}

/* Warrior Plus Button Container */
.wplus-button-container {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wplus-button-container iframe,
.wplus-button-container img,
.wplus-button-container a {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

