/*
Theme Name: PlanExpert
Theme URI: https://coral-tarsier-394564.hostingersite.com
Author: PlanExpert
Author URI: https://coral-tarsier-394564.hostingersite.com
Description: A modern, professional WordPress theme for the PlanExpert business plan writing service
Version: 1.0.0
License: GPL-2.0+
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: planexpert
Domain Path: /languages
Requires at least: 5.0
Requires PHP: 7.4
*/

:root {
  --primary: #1B2A4A;
  --accent: #B8860B;
  --text: #4A5568;
  --background: #F7F5F0;
  --white: #FFFFFF;
  --light-gray: #F3F4F6;
  --border: #E5E7EB;
  --success: #10B981;
  --warning: #F59E0B;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background-color: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #9a6f0b;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(184, 134, 11, 0.2);
}

.btn-secondary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: #0f1a2f;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(27, 42, 74, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

.btn-lg {
  padding: 1.125rem 3rem;
  font-size: 1.1rem;
}

/* Header & Navigation */
header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--primary);
}

.logo-area:hover {
  color: var(--accent);
}

.logo-svg {
  width: 40px;
  height: 40px;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  gap: 0.25rem;
}

.logo-text .plan {
  color: var(--primary);
}

.logo-text .expert {
  color: var(--accent);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
  margin: 0;
}

.nav-menu a {
  color: var(--text);
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.nav-menu a:hover {
  color: var(--accent);
}

.nav-menu li.current-menu-item > a {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}

.header-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
  padding: 0.5rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, rgba(27, 42, 74, 0.9) 100%);
  color: var(--white);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--white);
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero .cta-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Section Spacing */
section {
  padding: 5rem 0;
}

section.bg-light {
  background-color: var(--background);
}

section.bg-white {
  background-color: var(--white);
}

section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

section p {
  font-size: 1.1rem;
  color: var(--text);
}

/* Two Column Section */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-column-content h3 {
  margin-bottom: 1.5rem;
}

.two-column-content p {
  margin-bottom: 1.5rem;
}

.two-column-image {
  position: relative;
}

.two-column-image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Highlights/Key Figures */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.highlight-card {
  text-align: center;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.highlight-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.highlight-label {
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 600;
}

/* Problem/Solution Section */
.problem-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.problem-card, .solution-card {
  padding: 2.5rem;
  border-radius: 1rem;
  background-color: var(--white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.problem-card {
  border-top: 4px solid #EF4444;
}

.solution-card {
  border-top: 4px solid var(--success);
}

.problem-card h3, .solution-card h3 {
  margin-bottom: 1.5rem;
}

.problem-card ul, .solution-card ul {
  list-style: none;
}

.problem-card li, .solution-card li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
}

.problem-card li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #EF4444;
  font-weight: bold;
  font-size: 1.25rem;
}

.solution-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
  font-size: 1.25rem;
}

/* Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.pricing-card {
  border: 2px solid var(--border);
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: center;
  background-color: var(--white);
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  border-color: var(--accent);
  box-shadow: 0 20px 50px rgba(184, 134, 11, 0.15);
  transform: translateY(-10px);
}

.pricing-card.featured {
  border: 2px solid var(--accent);
  box-shadow: 0 20px 50px rgba(184, 134, 11, 0.2);
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
}

.pricing-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.pricing-currency {
  font-size: 1.5rem;
}

.pricing-period {
  color: var(--text);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.pricing-description {
  color: var(--text);
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-features li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  color: var(--text);
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

.pricing-card .btn {
  width: 100%;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  overflow: hidden;
}

.comparison-table thead {
  background-color: var(--primary);
  color: var(--white);
}

.comparison-table th {
  padding: 1.5rem;
  text-align: left;
  font-weight: 600;
}

.comparison-table td {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.comparison-table tbody tr:hover {
  background-color: var(--light-gray);
}

.comparison-table .feature-name {
  font-weight: 600;
  color: var(--primary);
}

.comparison-table .checkmark {
  color: var(--success);
  font-size: 1.5rem;
  text-align: center;
}

.comparison-table .cross {
  color: #EF4444;
  font-size: 1.5rem;
  text-align: center;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.step {
  text-align: center;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.step h3 {
  margin-bottom: 1rem;
}

.step p {
  color: var(--text);
}

.step-arrow {
  display: none;
  position: absolute;
  bottom: -3rem;
  right: -1.5rem;
  color: var(--accent);
  font-size: 2rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.testimonial {
  background-color: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--accent);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-quote {
  color: var(--text);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
}

.testimonial-info h4 {
  margin: 0;
  color: var(--primary);
  font-size: 1rem;
}

.testimonial-info .role {
  color: var(--text);
  font-size: 0.9rem;
}

/* Case Studies */
.case-study {
  background-color: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.case-study:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.case-study-image {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3rem;
}

.case-study-content {
  padding: 2rem;
}

.case-study-category {
  display: inline-block;
  background-color: var(--accent);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 600;
}

.case-study h3 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.case-study-challenge,
.case-study-solution,
.case-study-result {
  margin-bottom: 1.5rem;
}

.case-study-challenge h4,
.case-study-solution h4,
.case-study-result h4 {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 2rem auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
  background-color: var(--light-gray);
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(184, 134, 11, 0.1);
  color: var(--accent);
}

.faq-toggle {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 1.5rem;
  background-color: var(--white);
  color: var(--text);
  display: none;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 2rem auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

/* Motion Embed */
.motion-embed-container {
  margin: 2rem 0;
  padding: 2rem;
  background-color: var(--light-gray);
  border-radius: 1rem;
}

.motion-embed-container iframe {
  width: 100%;
  min-height: 600px;
  border: none;
  border-radius: 0.5rem;
}

/* Footer */
footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--accent);
  transform: translateY(-3px);
}

.footer-contact {
  margin-bottom: 1.5rem;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: var(--accent);
  font-weight: 600;
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  margin-top: 2rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--accent);
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.blog-card {
  background-color: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-thumbnail {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3rem;
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--text);
}

.blog-category {
  display: inline-block;
  background-color: rgba(184, 134, 11, 0.1);
  color: var(--accent);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.blog-card h3 {
  margin-bottom: 0.75rem;
}

.blog-excerpt {
  color: var(--text);
  margin-bottom: 1rem;
}

.blog-read-more {
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-read-more:hover {
  color: var(--primary);
  gap: 0.75rem;
}

/* Single Post */
.single-post {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 2rem;
  border-radius: 1rem;
}

.post-header {
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--border);
  padding-bottom: 2rem;
}

.post-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text);
  font-size: 0.95rem;
}

.post-author, .post-date {
  display: flex;
  gap: 0.5rem;
}

.post-body {
  line-height: 1.9;
  color: var(--text);
}

.post-body h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.post-body h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.post-body p {
  margin-bottom: 1.5rem;
}

.post-body ul,
.post-body ol {
  margin-bottom: 1.5rem;
  margin-left: 2rem;
}

.post-body li {
  margin-bottom: 0.5rem;
}

.post-body img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}

/* 404 Page */
.error-404 {
  text-align: center;
  padding: 5rem 0;
}

.error-404-code {
  font-size: 6rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

.error-404-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.error-404-message {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 2rem;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 3rem 0;
}

.pagination a, .pagination span {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s ease;
}

.pagination a:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.pagination .current {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* Utilities */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.pt-5 { padding-top: 3rem; }
.pb-5 { padding-bottom: 3rem; }

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .container {
    padding: 0 1rem;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 1rem;
    background-color: var(--white);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 4rem 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero .cta-group {
    flex-direction: column;
    align-items: center;
  }

  .hero .btn {
    width: 100%;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .problem-solution {
    grid-template-columns: 1fr;
  }

  .highlights {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 3rem 0;
  }

  .comparison-table {
    font-size: 0.9rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: 1rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  .btn-lg {
    padding: 0.875rem 2rem;
  }

  .logo-text {
    font-size: 1.25rem;
  }

  .highlights {
    margin: 1.5rem 0;
  }

  .highlight-number {
    font-size: 2rem;
  }

  section {
    padding: 2rem 0;
  }
}


/* =====================================================
   MOBILE UX FIXES - Touch Targets & Accessibility
   ===================================================== */
@media (max-width: 768px) {
  /* Footer navigation links - minimum 44px touch target */
  footer a {
    display: inline-block;
    min-height: 44px;
    line-height: 44px;
    padding: 0 4px;
  }

  /* Footer navigation list items spacing */
  footer ul li {
    margin-bottom: 4px;
  }

  /* Social media icons - ensure 44px minimum */
  .social-links a,
  footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
  }

  /* Footer bottom links (Mentions Légales, etc.) */
  .footer-bottom a {
    display: inline-block;
    min-height: 44px;
    line-height: 44px;
    padding: 0 8px;
  }

  /* Hamburger menu button touch target */
  .mobile-menu-toggle,
  .menu-toggle {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
