/* =================================
   CSS Reset & Base Styles
   ================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #f9f7f4;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style-position: inside;
}

/* =================================
   Nature Organic Design System
   ================================= */

:root {
  --primary-color: #2C5F7F;
  --secondary-color: #5A9B8F;
  --accent-color: #F4E8D8;
  --earth-brown: #8B7355;
  --forest-green: #4A6B4F;
  --soft-cream: #FAF8F5;
  --warm-sand: #E8DCC7;
  --deep-ocean: #1a4d5f;
  --text-dark: #2c3e50;
  --text-light: #5a6c7d;
  --border-color: #d4cbb8;
  --shadow-sm: 0 2px 8px rgba(44, 95, 127, 0.08);
  --shadow-md: 0 4px 16px rgba(44, 95, 127, 0.12);
  --shadow-lg: 0 8px 32px rgba(44, 95, 127, 0.16);
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =================================
   Typography - Nature Inspired
   ================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary-color);
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: var(--text-dark);
}

/* =================================
   Container & Layout
   ================================= */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

/* =================================
   Header - Organic Design
   ================================= */

header {
  background: linear-gradient(135deg, var(--soft-cream) 0%, var(--warm-sand) 100%);
  border-bottom: 3px solid var(--secondary-color);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 16px;
  position: relative;
  padding: 8px 4px;
  transition: var(--transition);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 2px;
  transition: var(--transition);
}

.main-nav a:hover {
  color: var(--secondary-color);
}

.main-nav a:hover::after {
  width: 100%;
}

/* =================================
   Mobile Menu - Nature Theme
   ================================= */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: var(--secondary-color);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.mobile-menu-toggle:hover {
  background: var(--forest-green);
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, var(--soft-cream) 0%, var(--warm-sand) 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-color);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-menu-close:hover {
  background: var(--deep-ocean);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: var(--border-radius-sm);
  background: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.mobile-nav a:hover {
  background: white;
  color: var(--secondary-color);
  transform: translateX(8px);
  box-shadow: var(--shadow-sm);
}

/* =================================
   Buttons - Organic Shapes
   ================================= */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: var(--border-radius-lg);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--forest-green) 100%);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--secondary-color) 100%);
}

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

.btn-secondary:hover {
  background: var(--secondary-color);
  color: white;
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

/* =================================
   Hero Section - Nature Inspired
   ================================= */

.hero {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--warm-sand) 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 40px 40px;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(90, 155, 143, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.badge {
  background: white;
  padding: 12px 24px;
  border-radius: var(--border-radius-lg);
  font-weight: 600;
  color: var(--primary-color);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--secondary-color);
}

/* =================================
   Page Hero - Simple Header
   ================================= */

.page-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--deep-ocean) 100%);
  padding: 60px 20px;
  text-align: center;
  color: white;
  border-radius: 0 0 40px 40px;
  margin-bottom: 40px;
}

.page-hero h1 {
  color: white;
  font-size: 40px;
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  margin-bottom: 0;
}

.last-updated {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-style: italic;
}

/* =================================
   Service Cards - Organic Design
   ================================= */

.services-overview,
.benefits,
.testimonials {
  padding: 60px 20px;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 40px;
}

.services-grid,
.benefits-grid,
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.service-card,
.benefit-card {
  background: white;
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border-color);
  transition: var(--transition);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover,
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-color);
}

.service-card h3,
.benefit-card h3 {
  color: var(--primary-color);
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card p,
.benefit-card p {
  color: var(--text-light);
  flex-grow: 1;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 16px 0;
}

/* =================================
   Testimonials - Readable Design
   ================================= */

.testimonials {
  background: linear-gradient(135deg, var(--soft-cream) 0%, var(--warm-sand) 100%);
  padding: 60px 20px;
  border-radius: var(--border-radius-lg);
}

.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--secondary-color);
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card p {
  color: var(--text-dark);
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
}

.testimonial-author {
  color: var(--primary-color);
  font-style: normal;
  font-weight: 600;
  margin-top: 8px;
}

.testimonial-author strong {
  color: var(--primary-color);
  font-size: 16px;
}

/* =================================
   CTA Banner - Organic Call-to-Action
   ================================= */

.cta-banner {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--forest-green) 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: var(--border-radius-lg);
  color: white;
  margin: 60px 0;
}

.cta-banner h2 {
  color: white;
  font-size: 32px;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.95);
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-banner .btn-primary:hover {
  background: var(--soft-cream);
  transform: translateY(-2px) scale(1.05);
}

/* =================================
   Text Content Sections
   ================================= */

.text-section {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.text-section p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.intro-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-light);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

/* =================================
   Mission & Values - Flexbox Grid
   ================================= */

.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
  justify-content: center;
}

.mission-card {
  background: white;
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--secondary-color);
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  max-width: 550px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.value-card {
  background: white;
  padding: 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--secondary-color);
  flex: 1 1 calc(25% - 20px);
  min-width: 220px;
  max-width: 280px;
}

.value-card h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
}

/* =================================
   Team Section
   ================================= */

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.team-card {
  background: white;
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border-color);
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  max-width: 550px;
  text-align: center;
}

.team-role {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

/* =================================
   Stats Section
   ================================= */

.stats {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--deep-ocean) 100%);
  padding: 60px 20px;
  border-radius: var(--border-radius-lg);
  margin: 60px 0;
}

.stats h2 {
  color: white;
  text-align: center;
  margin-bottom: 40px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.stat-card {
  background: rgba(255,255,255,0.1);
  padding: 32px;
  border-radius: var(--border-radius);
  text-align: center;
  border: 2px solid rgba(255,255,255,0.2);
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  max-width: 260px;
  backdrop-filter: blur(10px);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.stat-label {
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  margin-bottom: 0;
}

/* =================================
   Service Detailed Pages
   ================================= */

.service-detailed {
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 40px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border-color);
}

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

.features-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: var(--text-dark);
  font-size: 16px;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 18px;
}

.price-display {
  font-size: 28px;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 24px 0;
}

/* =================================
   Pricing Tables
   ================================= */

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.pricing-card {
  background: white;
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border-color);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 360px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-color);
}

.pricing-card.recommended {
  border: 3px solid var(--secondary-color);
  transform: scale(1.05);
  position: relative;
}

.pricing-card.recommended::before {
  content: 'Népszerű';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary-color);
  color: white;
  padding: 6px 20px;
  border-radius: var(--border-radius-lg);
  font-size: 14px;
  font-weight: 600;
}

.pricing-card h3 {
  color: var(--primary-color);
  font-size: 20px;
  margin-bottom: 16px;
}

.pricing-card .price {
  font-size: 36px;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 20px 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.pricing-card .price span {
  font-size: 16px;
  color: var(--text-light);
}

.pricing-card .description {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  text-align: left;
}

.pricing-card ul li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--text-dark);
  font-size: 14px;
  border-bottom: 1px solid var(--border-color);
}

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

.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.pricing-card .btn {
  margin-top: 24px;
  width: 100%;
}

/* =================================
   Discount Cards
   ================================= */

.discount-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.discount-card {
  background: white;
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--secondary-color);
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  max-width: 280px;
  text-align: center;
}

.discount-amount {
  font-size: 36px;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 16px 0 0;
}

/* =================================
   Guarantee Section
   ================================= */

.guarantee {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--warm-sand) 100%);
  padding: 60px 20px;
  border-radius: var(--border-radius-lg);
  text-align: center;
}

.guarantee-features {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 32px auto 0;
}

.guarantee-features li {
  padding: 16px 0 16px 40px;
  position: relative;
  color: var(--text-dark);
  font-size: 16px;
  text-align: left;
}

.guarantee-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 24px;
}

/* =================================
   Contact Page Elements
   ================================= */

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.contact-card {
  background: white;
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border-color);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  max-width: 360px;
  text-align: center;
}

.contact-card h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

.additional {
  color: var(--text-light);
  font-size: 14px;
  margin-top: 12px;
}

/* =================================
   Form Elements - Nature Inspired
   ================================= */

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-color);
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 14px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  font-size: 16px;
  font-family: inherit;
  transition: var(--transition);
  background: var(--soft-cream);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  background: white;
  box-shadow: 0 0 0 3px rgba(90, 155, 143, 0.1);
}

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

.form-note {
  font-size: 13px;
  color: var(--text-light);
  margin: 16px 0 24px;
  text-align: center;
}

.form-wrapper .btn-primary {
  width: 100%;
  font-size: 18px;
  padding: 16px;
}

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

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  padding: 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--secondary-color);
  margin-bottom: 20px;
}

.faq-item h3 {
  color: var(--primary-color);
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  color: var(--text-dark);
  margin-bottom: 0;
}

/* =================================
   Legal Content Pages
   ================================= */

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.legal-section {
  background: white;
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--secondary-color);
  margin-bottom: 32px;
}

.legal-section h2 {
  color: var(--primary-color);
  font-size: 24px;
  margin-bottom: 16px;
}

.legal-section p {
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* =================================
   Thank You Page
   ================================= */

.thank-you-hero {
  text-align: center;
  padding: 80px 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--secondary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-md);
}

.timeline {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.timeline-step {
  background: white;
  padding: 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--secondary-color);
  position: relative;
}

.timeframe {
  display: inline-block;
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 4px 12px;
  border-radius: var(--border-radius-sm);
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
}

.action-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.action-card {
  background: white;
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border-color);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  max-width: 360px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* =================================
   Value Props & Lists
   ================================= */

.value-props {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 32px auto;
}

.value-props li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: var(--text-dark);
  font-size: 16px;
}

.value-props li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 18px;
}

/* =================================
   Benefits Detailed
   ================================= */

.benefits-detailed {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.benefit-detailed {
  background: white;
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--secondary-color);
}

.benefit-detailed h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

.benefit-detailed ul {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}

.benefit-detailed ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text-dark);
}

.benefit-detailed ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

/* =================================
   Stories & Large Stats
   ================================= */

.stories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.story-card {
  background: white;
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border-color);
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  max-width: 550px;
}

.profession {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

.stats-grid-large {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.stat-large {
  background: white;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--secondary-color);
  flex: 1 1 calc(33.333% - 32px);
  min-width: 240px;
  max-width: 360px;
  text-align: center;
}

.stat-large .number {
  font-size: 56px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.stat-large .label {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.stat-large .description {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 0;
}

/* =================================
   Footer - Organic Design
   ================================= */

footer {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--deep-ocean) 100%);
  color: white;
  padding: 60px 20px 20px;
  margin-top: 80px;
  border-radius: 40px 40px 0 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 calc(25% - 40px);
  min-width: 220px;
}

.footer-section h3,
.footer-section h4 {
  color: white;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-section p {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: white;
  padding-left: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  margin: 0;
}

/* =================================
   Cookie Consent Banner
   ================================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--deep-ocean) 100%);
  color: white;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 300px;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: var(--border-radius-lg);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

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

.cookie-accept:hover {
  background: var(--forest-green);
  transform: translateY(-2px);
}

.cookie-reject {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cookie-reject:hover {
  background: rgba(255,255,255,0.1);
}

.cookie-settings {
  background: rgba(255,255,255,0.2);
  color: white;
}

.cookie-settings:hover {
  background: rgba(255,255,255,0.3);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.cookie-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal-content {
  background: white;
  padding: 40px;
  border-radius: var(--border-radius);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.cookie-modal h3 {
  color: var(--primary-color);
  margin-bottom: 24px;
}

.cookie-category {
  padding: 16px;
  background: var(--soft-cream);
  border-radius: var(--border-radius-sm);
  margin-bottom: 16px;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 26px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background-color: var(--secondary-color);
}

input:checked + .cookie-slider:before {
  transform: translateX(24px);
}

input:disabled + .cookie-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 8px;
  margin-bottom: 0;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.cookie-modal-buttons button {
  flex: 1;
  min-width: 120px;
}

/* =================================
   Responsive Design - Mobile First
   ================================= */

@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  /* Section padding */
  .section {
    padding: 40px 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .page-hero {
    padding: 40px 20px;
  }
  
  /* Cards full width on mobile */
  .service-card,
  .benefit-card,
  .testimonial-card,
  .pricing-card,
  .mission-card,
  .value-card,
  .team-card,
  .stat-card,
  .contact-card,
  .discount-card,
  .action-card,
  .story-card,
  .stat-large {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Hero CTA buttons stack */
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Trust badges stack */
  .trust-badges {
    flex-direction: column;
  }
  
  /* Footer sections stack */
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie banner stack */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Form adjustments */
  .form-wrapper {
    padding: 24px;
  }
  
  /* Stats grid */
  .stats-grid {
    gap: 16px;
  }
  
  /* Pricing recommended card no scale */
  .pricing-card.recommended {
    transform: none;
  }
  
  /* Timeline */
  .timeline {
    gap: 16px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .service-card,
  .benefit-card,
  .pricing-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .value-card,
  .stat-card {
    flex: 1 1 calc(50% - 20px);
  }
}

/* =================================
   Print Styles
   ================================= */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .container {
    max-width: 100%;
  }
}

/* =================================
   Accessibility Enhancements
   ================================= */

/* Focus visible for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--secondary-color);
  outline-offset: 2px;
}

/* High contrast for links */
a {
  position: relative;
}

/* Skip to main content link */
.skip-to-main {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--primary-color);
  color: white;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  z-index: 3000;
  transition: top 0.3s ease;
}

.skip-to-main:focus {
  top: 20px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

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

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* 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-width: 0;
}

/* =================================
   Animation Keyframes
   ================================= */

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

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Apply animations to elements */
.hero-content {
  animation: fadeIn 0.8s ease-out;
}

.service-card,
.benefit-card {
  animation: fadeIn 0.6s ease-out;
}

/* =================================
   END OF STYLESHEET
   ================================= */

/* Total CSS created: Professional nature-organic design
   with full responsive support, mobile menu, cookie banner,
   and comprehensive styling for all HTML elements. */
