/*
Theme Name: XBert AI - Landscaping Answering Service
Theme URI: https://xbert.ai
Author: XBert Team
Author URI: https://xbert.ai
Description: A modern, high-converting landing page theme for AI answering services tailored to landscaping businesses. Features smooth scroll animations, responsive design, and customizable sections.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: xbert-ai
Tags: landing-page, business, responsive, custom-menu, custom-logo, threaded-comments, translation-ready
*/

/* ========================================
   XBert AI WordPress Theme Styles
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --nextiva-orange: #FF6B35;
  --nextiva-orange-dark: #E55A2B;
  --nextiva-orange-light: #FF8A5B;
  --navy: #1a1f36;
  --navy-light: #2a3050;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 1.875rem;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 40px rgba(255, 107, 53, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
  margin-bottom: 1rem;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* ========================================
   Header & Navigation
   ======================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.5s ease;
  background: transparent;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header.scrolled .logo-icon {
  background: var(--navy);
}

.logo-icon span {
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
}

.site-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
}

.site-header.scrolled .site-title {
  color: var(--navy);
}

/* Navigation */
.main-navigation {
  display: none;
}

@media (min-width: 1024px) {
  .main-navigation {
    display: block;
  }
}

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

.main-navigation a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  transition: opacity 0.3s ease;
}

.site-header.scrolled .main-navigation a {
  color: var(--navy);
}

.main-navigation a:hover {
  opacity: 0.7;
}

.header-cta {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .header-cta {
    display: flex;
  }
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
}

.site-header.scrolled .phone-link {
  color: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--nextiva-orange);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--nextiva-orange-dark);
  color: var(--white);
}

.site-header.scrolled .btn-primary {
  background: var(--nextiva-orange);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--white);
}

.site-header.scrolled .mobile-menu-toggle {
  color: var(--navy);
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 1rem;
  right: 1rem;
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  padding: 1.5rem;
  margin-top: 0.5rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu a {
  color: var(--navy);
  font-weight: 500;
  padding: 0.5rem 0;
  display: block;
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 1rem;
}

/* ========================================
   Hero Section
   ======================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26, 31, 54, 0.8), rgba(26, 31, 54, 0.6), rgba(26, 31, 54, 0.8));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

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

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

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

@media (min-width: 1024px) {
  .hero-text {
    text-align: left;
  }
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.stars {
  display: flex;
  gap: 0.125rem;
}

.star {
  width: 1rem;
  height: 1rem;
  color: var(--nextiva-orange);
  fill: var(--nextiva-orange);
}

.trust-badge span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
}

.hero-title .highlight {
  color: var(--nextiva-orange);
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin: 0 auto 2rem;
}

@media (min-width: 1024px) {
  .hero-description {
    margin: 0 0 2rem;
  }
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero-ctas {
    justify-content: flex-start;
  }
}

.btn-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.6);
  }
}

/* Audio Player */
.audio-player {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  max-width: 400px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .audio-player {
    margin: 0;
  }
}

.player-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.play-btn {
  width: 48px;
  height: 48px;
  background: var(--nextiva-orange);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.play-btn:hover {
  background: var(--nextiva-orange-dark);
}

.play-btn svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.player-info h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.player-info p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.demo-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.demo-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  background: transparent;
  border: none;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: background 0.3s ease;
  text-align: left;
}

.demo-tab:hover,
.demo-tab.active {
  background: rgba(255, 255, 255, 0.2);
}

.demo-tab-content h5 {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.demo-tab-content p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.demo-duration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.demo-duration svg {
  width: 16px;
  height: 16px;
  color: var(--nextiva-orange);
}

.demo-duration span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Phone Mockup */
.phone-mockup {
  display: none;
  justify-content: center;
}

@media (min-width: 1024px) {
  .phone-mockup {
    display: flex;
  }
}

.phone-container {
  position: relative;
}

.phone-frame {
  width: 300px;
  height: 600px;
  background: #000;
  border-radius: 3rem;
  padding: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 128px;
  height: 28px;
  background: #000;
  border-radius: 0 0 1rem 1rem;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 2.5rem;
  overflow: hidden;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.floating-card.card-1 {
  top: -1rem;
  right: -1rem;
  animation: float 3s ease-in-out infinite;
}

.floating-card.card-2 {
  bottom: -1rem;
  left: -1rem;
  animation: float 3s ease-in-out infinite;
  animation-delay: 1s;
}

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

.floating-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-icon.success {
  background: #dcfce7;
  color: #16a34a;
}

.floating-icon.star {
  background: rgba(255, 107, 53, 0.2);
  color: var(--nextiva-orange);
}

.floating-card h5 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.125rem;
}

.floating-card p {
  font-size: 0.75rem;
  color: var(--navy);
  opacity: 0.6;
  margin: 0;
}

/* ========================================
   Trusted By Section
   ======================================== */

.trusted-section {
  padding: 5rem 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  opacity: 0.6;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.5rem;
  }
}

/* Ratings */
.ratings {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.rating-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rating-score {
  font-weight: 700;
  color: var(--navy);
}

.rating-platform {
  font-size: 0.875rem;
  color: var(--navy);
  opacity: 0.6;
}

/* Partners */
.partners {
  border-top: 1px solid var(--gray-200);
  padding-top: 3rem;
}

.partners-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--navy);
  opacity: 0.4;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.partners-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .partners-list {
    gap: 4rem;
  }
}

.partner-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.partner-name:hover {
  opacity: 0.6;
}

/* ========================================
   Testimonials Section
   ======================================== */

.testimonials-section {
  padding: 6rem 0;
  background: var(--gray-50);
}

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

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-xl);
}

.quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  color: var(--nextiva-orange);
  opacity: 0.2;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 1.125rem;
  color: var(--navy);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 2rem;
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  background: rgba(26, 31, 54, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--navy);
}

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

.author-role {
  font-size: 0.875rem;
  color: var(--navy);
  opacity: 0.6;
}

/* ========================================
   Advantages Section
   ======================================== */

.advantages-section {
  padding: 6rem 0;
  background: var(--white);
}

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

@media (min-width: 640px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.advantage-card {
  background: var(--gray-50);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.advantage-card:hover {
  background: var(--navy);
}

.advantage-icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.3s ease;
}

.advantage-card:hover .advantage-icon {
  background: var(--nextiva-orange);
}

.advantage-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.advantage-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.advantage-card:hover .advantage-title {
  color: var(--white);
}

.advantage-description {
  font-size: 0.875rem;
  color: var(--navy);
  opacity: 0.7;
  line-height: 1.6;
  transition: color 0.3s ease;
  margin: 0;
}

.advantage-card:hover .advantage-description {
  color: var(--white);
  opacity: 0.8;
}

/* ========================================
   Feature Sections
   ======================================== */

.feature-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.feature-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.feature-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.feature-overlay.left {
  background: linear-gradient(to right, rgba(26, 31, 54, 0.9), rgba(26, 31, 54, 0.7), transparent);
}

.feature-overlay.right {
  background: linear-gradient(to left, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8), transparent);
}

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

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

@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.feature-grid.reverse .feature-text {
  order: 1;
}

@media (min-width: 1024px) {
  .feature-grid.reverse .feature-text {
    order: 2;
    text-align: right;
  }
}

.feature-grid.reverse .feature-phone {
  order: 2;
}

@media (min-width: 1024px) {
  .feature-grid.reverse .feature-phone {
    order: 1;
  }
}

.feature-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--nextiva-orange);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.feature-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .feature-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .feature-title {
    font-size: 3.5rem;
  }
}

.feature-title.dark {
  color: var(--navy);
}

.feature-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin-bottom: 2rem;
}

.feature-description.dark {
  color: var(--navy);
  opacity: 0.7;
}

.feature-grid.reverse .feature-description {
  margin-left: auto;
  margin-right: 0;
}

.feature-list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.feature-list li:last-child {
  margin-bottom: 0;
}

.check-icon {
  width: 24px;
  height: 24px;
  background: rgba(255, 107, 53, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon svg {
  width: 14px;
  height: 14px;
  color: var(--nextiva-orange);
}

.check-icon.dark {
  background: rgba(26, 31, 54, 0.1);
}

.check-icon.dark svg {
  color: var(--navy);
}

.feature-list span {
  color: rgba(255, 255, 255, 0.9);
}

.feature-list.dark span {
  color: var(--navy);
  opacity: 0.8;
}

.btn-with-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-with-arrow svg {
  transition: transform 0.3s ease;
}

.btn-with-arrow:hover svg {
  transform: translateX(4px);
}

/* Phone in features */
.feature-phone {
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .feature-grid.reverse .feature-phone {
    justify-content: flex-start;
  }
}

.phone-wrapper {
  position: relative;
}

.phone-tilted {
  transform: rotate(-5deg);
  transition: transform 0.5s ease;
}

.phone-tilted:hover {
  transform: rotate(0);
}

.phone-tilted-right {
  transform: rotate(5deg);
  transition: transform 0.5s ease;
}

.phone-tilted-right:hover {
  transform: rotate(0);
}

.phone-glow {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 8rem;
  height: 8rem;
  background: rgba(255, 107, 53, 0.2);
  border-radius: 50%;
  filter: blur(30px);
}

.phone-glow-alt {
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 6rem;
  height: 6rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(20px);
}

/* ========================================
   Services Section
   ======================================== */

.services-section {
  padding: 6rem 0;
  background: var(--gray-50);
}

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

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

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

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(26, 31, 54, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--navy);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--navy);
  transition: color 0.3s ease;
}

.service-card:hover .service-icon svg {
  color: var(--white);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.service-description {
  font-size: 0.875rem;
  color: var(--navy);
  opacity: 0.7;
  line-height: 1.6;
  margin: 0;
}

/* ========================================
   Trust & Reliability Section
   ======================================== */

.trust-reliability-section {
  padding: 6rem 0;
  background: var(--white);
}

.trust-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
}

@media (min-width: 768px) {
  .trust-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.trust-feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(26, 31, 54, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.trust-feature-icon svg {
  width: 32px;
  height: 32px;
  color: var(--navy);
}

.trust-feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
}

.trust-feature-description {
  font-size: 0.875rem;
  color: var(--navy);
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.badge {
  padding: 0.25rem 0.75rem;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--navy);
}

/* Integrations Box */
.integrations-box {
  background: var(--gray-50);
  border-radius: 1.5rem;
  padding: 2.5rem;
}

@media (min-width: 1024px) {
  .integrations-box {
    padding: 4rem;
  }
}

.integrations-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.integrations-icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.integrations-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.integrations-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.integrations-description {
  color: var(--navy);
  opacity: 0.7;
  margin: 0;
}

.integrations-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.integration-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.integration-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
}

.integration-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
}

.integrations-more {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--navy);
  opacity: 0.5;
}

/* Stats */
.trust-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

@media (min-width: 640px) {
  .trust-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.stat-icon svg {
  width: 32px;
  height: 32px;
  color: var(--nextiva-orange);
}

.stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--navy);
  opacity: 0.6;
}

/* ========================================
   Pricing Section
   ======================================== */

.pricing-section {
  padding: 6rem 0;
  background: var(--gray-50);
}

.pricing-card {
  background: var(--white);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-main {
  padding: 2.5rem;
}

@media (min-width: 1024px) {
  .pricing-main {
    padding: 3rem;
  }
}

.pricing-header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  .pricing-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.pricing-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
}

.pricing-badge {
  padding: 0.25rem 0.75rem;
  background: rgba(26, 31, 54, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--navy);
}

.pricing-subtitle {
  color: var(--navy);
  opacity: 0.6;
  margin: 0;
}

.pricing-price {
  text-align: left;
}

@media (min-width: 1024px) {
  .pricing-price {
    text-align: right;
  }
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-currency {
  font-size: 1.5rem;
  color: var(--navy);
  opacity: 0.6;
}

.price-value {
  font-size: 4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.price-period {
  color: var(--navy);
  opacity: 0.6;
}

.price-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--navy);
  opacity: 0.6;
}

.tooltip-trigger {
  cursor: pointer;
}

.pricing-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .pricing-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-check {
  width: 20px;
  height: 20px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-check svg {
  width: 12px;
  height: 12px;
  color: #16a34a;
}

.pricing-feature span {
  font-size: 0.875rem;
  color: var(--navy);
  opacity: 0.8;
}

.pricing-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .pricing-cta {
    flex-direction: row;
    align-items: center;
  }
}

.pricing-guarantees {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--navy);
  opacity: 0.6;
}

.guarantee {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.guarantee svg {
  width: 16px;
  height: 16px;
}

/* Pricing Offer */
.pricing-offer {
  background: var(--navy);
  padding: 2.5rem;
}

@media (min-width: 1024px) {
  .pricing-offer {
    padding: 3rem;
  }
}

.offer-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.offer-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 107, 53, 0.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.offer-icon svg {
  width: 24px;
  height: 24px;
  color: var(--nextiva-orange);
}

.offer-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.offer-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.offer-pricing {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.offer-original-label {
  color: var(--white);
  font-weight: 500;
}

.offer-arrow {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.3);
}

.offer-new {
  color: var(--nextiva-orange);
  font-weight: 700;
  font-size: 1.25rem;
}

.offer-new-label {
  color: var(--white);
  font-weight: 500;
}

.offer-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .offer-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.offer-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.offer-feature svg {
  width: 16px;
  height: 16px;
  color: var(--nextiva-orange);
}

.offer-feature span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.offer-limited {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.offer-limited strong {
  color: var(--nextiva-orange);
}

.pricing-footer-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--navy);
  opacity: 0.5;
}

/* ========================================
   FAQ Section
   ======================================== */

.faq-section {
  padding: 6rem 0;
  background: var(--white);
}

.faq-list {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover,
.faq-item.active {
  border-color: rgba(26, 31, 54, 0.3);
}

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

.faq-question:hover {
  background: var(--gray-50);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--navy);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.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.25rem;
  color: var(--navy);
  opacity: 0.7;
  line-height: 1.6;
}

/* ========================================
   Footer
   ======================================== */

.site-footer {
  background: var(--navy);
  color: var(--white);
}

.footer-main {
  padding: 4rem 0;
}

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr repeat(4, 1fr);
  }
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon span {
  color: var(--nextiva-orange);
  font-weight: 700;
  font-size: 1.125rem;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact a,
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--nextiva-orange);
}

.footer-contact svg {
  width: 20px;
  height: 20px;
}

.footer-links h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--nextiva-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.footer-social a:hover {
  background: rgba(255, 107, 53, 0.2);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   Utility Classes
   ======================================== */

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

.hidden { display: none; }

@media (min-width: 640px) {
  .sm\:block { display: block; }
  .sm\:flex { display: flex; }
  .sm\:hidden { display: none; }
}

@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--nextiva-orange);
  outline-offset: 2px;
}

/* Selection */
::selection {
  background: rgba(255, 107, 53, 0.2);
  color: var(--navy);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--nextiva-orange);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--nextiva-orange-dark);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* WordPress Specific */
.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 0.875rem;
  color: var(--gray-600);
  text-align: center;
  margin-top: 0.5rem;
}

.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

/* Admin bar fix */
body.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}
