/* =================================
   SUNLIT QUEST - WARM & FRIENDLY CSS
   Warm colors, rounded corners, soft shadows
   ================================= */

/* 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', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #FFF8F0;
  overflow-x: hidden;
}

/* WARM & FRIENDLY DESIGN VARIABLES */
:root {
  --primary-color: #E67E22;
  --primary-dark: #D35400;
  --secondary-color: #F39C12;
  --accent-warm: #FFE5CC;
  --text-dark: #2C3E50;
  --text-light: #7F8C8D;
  --background-cream: #FFF8F0;
  --background-white: #FFFFFF;
  --border-light: #F0E6D8;
  --shadow-soft: rgba(230, 126, 34, 0.15);
  --shadow-medium: rgba(230, 126, 34, 0.25);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
}

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

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

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

ul {
  list-style: none;
}

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

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

/* BUTTONS - WARM & FRIENDLY STYLE */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 12px var(--shadow-soft);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-medium);
  color: white;
}

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

.btn-secondary:hover {
  background: var(--accent-warm);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-medium);
}

.text-link {
  color: var(--primary-color);
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.text-link:hover {
  color: var(--primary-dark);
  transform: translateX(5px);
}

/* HEADER */
header {
  background: white;
  padding: 20px 0;
  box-shadow: 0 2px 10px var(--shadow-soft);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--accent-warm);
}

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

header img {
  height: 50px;
  width: auto;
}

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

.main-nav a {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width 0.3s ease;
  border-radius: 2px;
}

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

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

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px var(--shadow-medium);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px var(--shadow-medium);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: white;
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px var(--shadow-medium);
  overflow-y: auto;
  padding: 80px 30px 30px;
  border-left: 5px solid var(--primary-color);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-warm);
  color: var(--primary-color);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px var(--shadow-soft);
}

.mobile-menu-close:hover {
  background: var(--primary-color);
  color: white;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: var(--text-dark);
  font-size: 20px;
  font-weight: 600;
  padding: 16px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: var(--background-cream);
}

.mobile-nav a:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  transform: translateX(10px);
  box-shadow: 0 4px 12px var(--shadow-soft);
}

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

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(243, 156, 18, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero h1 {
  font-size: 56px;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.2;
}

.subheadline {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.6;
}

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

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

.trust-indicators p {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 600;
  margin: 0;
}

/* SECTIONS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

section h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 48px;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 20px;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

/* VALUE PROPOSITION */
.value-proposition {
  background: white;
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 8px 30px var(--shadow-soft);
}

.stats-grid {
  display: flex;
  gap: 32px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 48px;
}

.stat-card {
  flex: 1;
  min-width: 250px;
  background: linear-gradient(135deg, var(--accent-warm), white);
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 15px var(--shadow-soft);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px var(--shadow-medium);
}

.stat-card h3 {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 8px;
  font-weight: 800;
}

.stat-card p {
  font-size: 16px;
  color: var(--text-dark);
  margin: 0;
}

/* SERVICES GRID */
.services-overview {
  background: white;
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 8px 30px var(--shadow-soft);
}

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

.service-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background: var(--background-cream);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px var(--shadow-soft);
  border: 3px solid transparent;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 35px var(--shadow-medium);
  border-color: var(--primary-color);
  background: white;
}

.service-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  padding: 16px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 12px var(--shadow-soft);
}

.service-card h3 {
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.service-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.price {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  background: white;
  padding: 10px 24px;
  border-radius: 25px;
  box-shadow: 0 2px 8px var(--shadow-soft);
  margin-top: 16px;
}

/* HOW IT WORKS */
.how-it-works {
  background: linear-gradient(135deg, var(--accent-warm) 0%, white 100%);
  border-radius: 30px;
  padding: 60px 40px;
}

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

.step {
  flex: 1;
  min-width: 240px;
  text-align: center;
  padding: 24px;
  position: relative;
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px var(--shadow-medium);
}

.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.step p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

/* BENEFITS GRID */
.benefits {
  background: white;
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 8px 30px var(--shadow-soft);
}

.benefits-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.benefit-card {
  flex: 1;
  min-width: 260px;
  background: var(--background-cream);
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px var(--shadow-soft);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px var(--shadow-medium);
  background: white;
}

.benefit-card img {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  padding: 14px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 12px var(--shadow-soft);
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

/* TESTIMONIALS - WARM COLORS WITH GOOD CONTRAST */
.social-proof {
  background: var(--accent-warm);
  border-radius: 30px;
  padding: 60px 40px;
}

.testimonials {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.testimonial-card {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--shadow-soft);
  border-left: 5px solid var(--primary-color);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px var(--shadow-medium);
}

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

.testimonial-card .author {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  font-style: normal;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  text-align: center;
  padding: 80px 40px;
  border-radius: 30px;
  box-shadow: 0 8px 30px var(--shadow-medium);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

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

.cta-banner h2::after {
  background: white;
}

.cta-banner p {
  font-size: 18px;
  color: white;
  margin-bottom: 32px;
  opacity: 0.95;
}

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

.cta-banner .btn-primary:hover {
  background: var(--accent-warm);
  color: var(--primary-dark);
}

.cta-banner .btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

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

/* SERVICES PAGE SPECIFIC */
.services-intro {
  background: white;
  border-radius: 30px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 8px 30px var(--shadow-soft);
}

.service-detail {
  background: white;
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 8px 30px var(--shadow-soft);
}

.service-detail.alt-bg {
  background: var(--accent-warm);
}

.service-content h2 {
  text-align: left;
  font-size: 36px;
  margin-bottom: 24px;
}

.service-content h2::after {
  left: 0;
  transform: none;
}

.service-content h3 {
  font-size: 24px;
  color: var(--text-dark);
  margin-top: 32px;
  margin-bottom: 16px;
}

.service-content ul {
  list-style: none;
  margin: 24px 0;
}

.service-content ul li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.6;
}

.service-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 18px;
}

.pricing, .timeline {
  font-size: 18px;
  margin: 24px 0;
  padding: 16px 24px;
  background: var(--accent-warm);
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

/* FAQ */
.faq {
  background: white;
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 8px 30px var(--shadow-soft);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background: var(--background-cream);
  padding: 24px;
  border-radius: 16px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: white;
  box-shadow: 0 4px 15px var(--shadow-soft);
  transform: translateX(5px);
}

.faq-item h3 {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.faq-item p {
  font-size: 15px;
  color: var(--text-light);
  margin: 0;
}

/* ABOUT PAGE */
.mission, .story, .philosophy, .commitment {
  background: white;
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 8px 30px var(--shadow-soft);
}

.values, .principles {
  margin-top: 40px;
}

.values h3, .principles h3 {
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.values ul, .principles ul, .commitment ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.values ul li, .commitment ul li {
  padding: 16px 20px;
  background: var(--accent-warm);
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  font-size: 16px;
  line-height: 1.6;
}

.values ul li strong {
  color: var(--primary-color);
  font-size: 18px;
}

.expertise-grid, .industries-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}

.expertise-card, .industry-card {
  flex: 1;
  min-width: 240px;
  background: var(--background-cream);
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 15px var(--shadow-soft);
  transition: all 0.3s ease;
}

.expertise-card:hover, .industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px var(--shadow-medium);
  background: white;
}

.expertise-card img, .industry-card img {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  padding: 14px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 12px var(--shadow-soft);
}

.principles {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.principle-card {
  background: var(--background-cream);
  padding: 24px;
  border-radius: 16px;
  border-left: 4px solid var(--secondary-color);
  transition: all 0.3s ease;
}

.principle-card:hover {
  background: white;
  box-shadow: 0 4px 15px var(--shadow-soft);
  transform: translateX(5px);
}

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

/* RESOURCES PAGE */
.featured-resources {
  background: white;
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 8px 30px var(--shadow-soft);
}

.resources-grid, .templates-grid, .blog-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.resource-card, .template-card, .blog-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background: var(--background-cream);
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 15px var(--shadow-soft);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.resource-card:hover, .template-card:hover, .blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px var(--shadow-medium);
  background: white;
}

.resource-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  padding: 16px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 12px var(--shadow-soft);
}

.resource-type, .date {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-color);
  background: white;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.guides, .blog {
  background: var(--accent-warm);
  border-radius: 30px;
  padding: 60px 40px;
}

.guide-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.guide-item {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 15px var(--shadow-soft);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.guide-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px var(--shadow-medium);
}

.read-time {
  display: inline-block;
  font-size: 14px;
  color: var(--text-light);
  margin-top: 12px;
  font-style: italic;
}

.templates {
  background: white;
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 8px 30px var(--shadow-soft);
}

.newsletter {
  background: linear-gradient(135deg, var(--accent-warm), white);
  border-radius: 30px;
  padding: 60px 40px;
  text-align: center;
}

.newsletter-form {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 32px auto 16px;
}

.email-input {
  flex: 1;
  min-width: 250px;
  padding: 16px 24px;
  font-size: 16px;
  border: 2px solid var(--border-light);
  border-radius: 30px;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
}

.email-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--shadow-soft);
}

.privacy-note {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 16px;
}

/* CASE STUDIES PAGE */
.results-summary {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

.results-summary .stat {
  text-align: center;
}

.results-summary .stat h3 {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.results-summary .stat p {
  font-size: 16px;
  color: var(--text-dark);
  margin: 0;
}

.featured-case-study {
  background: white;
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 8px 30px var(--shadow-soft);
}

.case-study-content {
  max-width: 900px;
  margin: 0 auto;
}

.industry {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 8px 20px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.challenge, .solution {
  margin: 24px 0;
  font-size: 16px;
  line-height: 1.7;
}

.results {
  background: var(--accent-warm);
  padding: 32px;
  border-radius: 16px;
  margin: 32px 0;
}

.results h3 {
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.results ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.results ul li {
  padding-left: 32px;
  position: relative;
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.6;
}

.results ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 20px;
}

blockquote {
  background: white;
  padding: 32px;
  border-left: 5px solid var(--primary-color);
  border-radius: 12px;
  margin: 32px 0;
  font-style: italic;
  font-size: 18px;
  color: var(--text-dark);
  line-height: 1.7;
  box-shadow: 0 4px 15px var(--shadow-soft);
}

blockquote strong {
  display: block;
  margin-top: 16px;
  font-style: normal;
  color: var(--primary-color);
  font-size: 16px;
}

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

.case-study-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 15px var(--shadow-soft);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.case-study-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px var(--shadow-medium);
}

.challenge-summary, .result-highlight {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 16px 0;
}

.result-highlight {
  background: var(--accent-warm);
  padding: 16px;
  border-radius: 12px;
  color: var(--text-dark);
  margin-top: 20px;
}

.detailed-case-study {
  background: var(--accent-warm);
  border-radius: 30px;
  padding: 60px 40px;
}

.case-study-details {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 15px var(--shadow-soft);
}

.case-study-details h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-top: 32px;
  margin-bottom: 16px;
}

.industries {
  background: white;
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 8px 30px var(--shadow-soft);
}

/* CONTACT PAGE */
.contact-options {
  background: white;
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 8px 30px var(--shadow-soft);
}

.contact-methods {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}

.contact-card {
  flex: 1;
  min-width: 260px;
  background: var(--background-cream);
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 15px var(--shadow-soft);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px var(--shadow-medium);
  background: white;
}

.contact-card img {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  padding: 14px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 12px var(--shadow-soft);
}

.contact-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.contact-card .note {
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 8px;
}

.contact-form-section {
  background: var(--accent-warm);
  border-radius: 30px;
  padding: 60px 40px;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--shadow-soft);
}

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

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

.input-field, .textarea-field {
  width: 100%;
  padding: 14px 20px;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  border: 2px solid var(--border-light);
  border-radius: 12px;
  transition: all 0.3s ease;
  background: var(--background-cream);
}

.input-field:focus, .textarea-field:focus {
  outline: none;
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 0 0 3px var(--shadow-soft);
}

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

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-field input[type="checkbox"] {
  margin-top: 4px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.checkbox-field label {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  cursor: pointer;
}

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

.consultation {
  background: white;
  border-radius: 30px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 8px 30px var(--shadow-soft);
}

.benefits-list {
  max-width: 700px;
  margin: 32px auto;
  text-align: left;
}

.benefits-list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefits-list ul li {
  padding: 16px 20px 16px 40px;
  background: var(--accent-warm);
  border-radius: 12px;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
}

.benefits-list ul li::before {
  content: '✓';
  position: absolute;
  left: 16px;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 18px;
}

.availability-note {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 16px;
  font-style: italic;
}

.location {
  background: var(--accent-warm);
  border-radius: 30px;
  padding: 60px 40px;
}

.location-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.location-details {
  flex: 1;
  min-width: 300px;
}

.response-promise {
  background: white;
  border-radius: 30px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 8px 30px var(--shadow-soft);
}

.expectations {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 40px 0;
}

.expectation-item {
  flex: 1;
  min-width: 240px;
  background: var(--background-cream);
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px var(--shadow-soft);
}

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

.commitment {
  max-width: 800px;
  margin: 32px auto 0;
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
}

/* LEGAL PAGES */
.legal-hero {
  background: linear-gradient(135deg, var(--accent-warm), white);
  padding: 60px 20px;
}

.legal-hero h1 {
  font-size: 48px;
  text-align: center;
}

.last-updated {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
}

.legal-content {
  background: white;
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 8px 30px var(--shadow-soft);
}

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

.content-wrapper h2 {
  text-align: left;
  font-size: 32px;
  margin-top: 48px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.content-wrapper h2::after {
  left: 0;
  transform: none;
}

.content-wrapper h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-top: 32px;
  margin-bottom: 16px;
}

.content-wrapper ul {
  list-style: none;
  margin: 20px 0;
}

.content-wrapper ul li {
  padding: 8px 0 8px 32px;
  position: relative;
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.7;
}

.content-wrapper ul li::before {
  content: '•';
  position: absolute;
  left: 12px;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 20px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, var(--accent-warm), white);
  padding: 100px 20px;
}

.success-icon {
  display: inline-block;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 50%;
  font-size: 60px;
  line-height: 100px;
  text-align: center;
  margin-bottom: 32px;
  box-shadow: 0 8px 30px var(--shadow-medium);
  animation: successPulse 2s ease-in-out infinite;
}

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

.next-steps {
  background: white;
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 8px 30px var(--shadow-soft);
}

.steps-list {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 32px;
}

.step-item {
  flex: 1;
  min-width: 260px;
  background: var(--background-cream);
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 12px var(--shadow-soft);
}

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

.timeline {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 32px;
}

.resources-while-waiting {
  background: var(--accent-warm);
  border-radius: 30px;
  padding: 60px 40px;
}

.testimonial-section {
  background: white;
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 8px 30px var(--shadow-soft);
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, var(--text-dark), #1a252f);
  color: white;
  padding: 60px 20px 20px;
  margin-top: 80px;
  border-radius: 50px 50px 0 0;
}

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

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column img {
  height: 40px;
  margin-bottom: 16px;
}

.footer-column h4 {
  font-size: 18px;
  color: var(--secondary-color);
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}

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

.footer-column nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-column nav a:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

.footer-column a {
  color: var(--secondary-color);
}

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

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

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 24px;
  box-shadow: 0 -4px 20px var(--shadow-medium);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 4px solid var(--primary-color);
}

.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;
  min-width: 300px;
}

.cookie-text p {
  font-size: 14px;
  color: var(--text-dark);
  margin: 0 0 8px 0;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--primary-color);
  font-weight: 600;
}

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

.cookie-buttons button {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.cookie-accept {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--shadow-medium);
}

.cookie-reject {
  background: var(--accent-warm);
  color: var(--primary-color);
}

.cookie-reject:hover {
  background: var(--border-light);
}

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

.cookie-settings:hover {
  background: var(--accent-warm);
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.cookie-modal.show {
  display: flex;
}

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

.cookie-modal-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s ease;
}

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

.cookie-modal h2 {
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 24px;
  text-align: center;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: var(--background-cream);
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.cookie-category h3 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

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

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

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

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background: var(--primary-color);
}

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

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cookie-modal-buttons button {
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.cookie-save {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

.cookie-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--shadow-medium);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .subheadline {
    font-size: 16px;
  }
  
  /* Layout adjustments */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  .stats-grid, .services-grid, .process-steps, .benefits-grid,
  .expertise-grid, .industries-grid, .resources-grid, .templates-grid,
  .blog-grid, .contact-methods, .expectations, .steps-list {
    flex-direction: column;
  }
  
  .stat-card, .service-card, .benefit-card, .expertise-card,
  .industry-card, .resource-card, .template-card, .blog-card,
  .contact-card, .expectation-item, .step-item, .case-study-card {
    min-width: 100%;
    max-width: 100%;
  }
  
  /* Section padding */
  section {
    padding: 30px 15px;
    margin-bottom: 40px;
  }
  
  .hero {
    padding: 60px 20px;
    border-radius: 0 0 30px 30px;
  }
  
  /* Form adjustments */
  .newsletter-form {
    flex-direction: column;
  }
  
  .email-input {
    min-width: 100%;
  }
  
  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    min-width: 100%;
  }
  
  /* Cookie banner mobile */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Text-image sections */
  .text-image-section {
    flex-direction: column;
  }
  
  /* Location content */
  .location-content {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .btn-primary, .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  section {
    padding: 20px 10px;
  }
  
  .service-card, .stat-card, .benefit-card {
    padding: 24px;
  }
  
  .form-wrapper {
    padding: 24px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

/* SMOOTH SCROLLING & ANIMATIONS */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
  
  .service-card, .benefit-card, .stat-card, .expertise-card,
  .testimonial-card, .resource-card, .template-card, .blog-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .service-card:nth-child(1), .benefit-card:nth-child(1) { animation-delay: 0.1s; }
  .service-card:nth-child(2), .benefit-card:nth-child(2) { animation-delay: 0.2s; }
  .service-card:nth-child(3), .benefit-card:nth-child(3) { animation-delay: 0.3s; }
  .service-card:nth-child(4), .benefit-card:nth-child(4) { animation-delay: 0.4s; }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle, .mobile-menu, .cookie-banner, .cookie-modal {
    display: none !important;
  }
  
  header {
    position: static;
  }
  
  .hero {
    border-radius: 0;
  }
  
  section {
    page-break-inside: avoid;
  }
}