/* ============================================
   MELODY TRAIL - ELEGANT CLASSIC DESIGN SYSTEM
   Timeless, Refined, Professional
   ============================================ */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Palatino', 'Times New Roman', serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2d2d2d;
  background-color: #f9f7f4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* TYPOGRAPHY - ELEGANT CLASSIC */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Garamond', 'Georgia', serif;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 16px;
}

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

h2 {
  font-size: 36px;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  color: #4a4a4a;
}

a {
  color: #2C5F7D;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #E8943F;
}

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

ul {
  list-style-position: inside;
}

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

/* HEADER */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e8e6e1;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo img {
  height: 48px;
  width: auto;
}

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

.main-nav a {
  font-family: 'Garamond', serif;
  font-size: 16px;
  color: #2d2d2d;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #E8943F;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #E8943F;
}

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

.header-cta {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 200;
  background-color: #2C5F7D;
  color: #ffffff;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #234a5f;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 300;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.2);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: #2d2d2d;
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #E8943F;
}

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

.mobile-nav a {
  font-family: 'Garamond', serif;
  font-size: 20px;
  color: #2d2d2d;
  padding: 12px 0;
  border-bottom: 1px solid #e8e6e1;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: #E8943F;
}

/* BUTTONS - ELEGANT CLASSIC */
.btn-primary,
.btn-secondary,
.btn-primary-large,
.btn-secondary-large {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Garamond', serif;
  font-size: 16px;
  text-align: center;
  border: 2px solid;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: #2C5F7D;
  color: #ffffff;
  border-color: #2C5F7D;
}

.btn-primary:hover {
  background-color: #234a5f;
  border-color: #234a5f;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 125, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #2C5F7D;
  border-color: #2C5F7D;
}

.btn-secondary:hover {
  background-color: #2C5F7D;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 125, 0.2);
}

.btn-primary-large,
.btn-secondary-large {
  padding: 18px 48px;
  font-size: 18px;
}

.btn-primary-large {
  background-color: #E8943F;
  color: #ffffff;
  border-color: #E8943F;
}

.btn-primary-large:hover {
  background-color: #d4802a;
  border-color: #d4802a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(232, 148, 63, 0.35);
}

.btn-secondary-large {
  background-color: transparent;
  color: #2C5F7D;
  border-color: #2C5F7D;
}

.btn-secondary-large:hover {
  background-color: #2C5F7D;
  color: #ffffff;
  transform: translateY(-2px);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(to bottom, #f9f7f4 0%, #ffffff 100%);
  padding: 80px 20px;
  border-bottom: 1px solid #e8e6e1;
  margin-bottom: 60px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 56px;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  color: #4a4a4a;
  margin-bottom: 32px;
  line-height: 1.6;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 24px 0;
  border-top: 1px solid #e8e6e1;
  border-bottom: 1px solid #e8e6e1;
}

.trust-indicators span {
  font-family: 'Garamond', serif;
  font-size: 16px;
  color: #2C5F7D;
  font-weight: 500;
}

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

/* HERO PAGE */
.hero-page {
  background-color: #f4f1ea;
  padding: 60px 20px;
  border-bottom: 1px solid #e8e6e1;
  margin-bottom: 60px;
  text-align: center;
}

.hero-page h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-page p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
}

.stats-inline,
.trust-line {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.stats-inline span,
.trust-line span {
  font-family: 'Garamond', serif;
  font-size: 16px;
  color: #2C5F7D;
  font-weight: 500;
}

/* SECTIONS */
.section,
.benefits,
.services-overview,
.testimonials,
.cta-conversion,
.story,
.values,
.achievements,
.team,
.services-detailed,
.guarantees,
.portfolio-featured,
.project-grid,
.results-metrics,
.process-overview,
.process-detailed,
.communication,
.contact-methods,
.contact-info,
.service-areas,
.response-times,
.consultation-process {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section h2,
.benefits h2,
.services-overview h2,
.testimonials h2,
.story h2,
.values h2,
.achievements h2,
.team h2,
.services-detailed h2,
.guarantees h2,
.portfolio-featured h2,
.project-grid h2,
.results-metrics h2,
.process-overview h2,
.communication h2,
.contact-methods h2,
.contact-info h2,
.service-areas h2,
.response-times h2,
.consultation-process h2 {
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #4a4a4a;
  max-width: 700px;
  margin: 0 auto 48px;
}

/* CARDS - FLEXBOX LAYOUTS */
.benefits-grid,
.services-grid,
.testimonials-grid,
.values-grid,
.stats-grid,
.team-categories,
.guarantees-grid,
.projects-grid,
.metrics-grid,
.methods-grid,
.info-grid,
.areas-grid,
.response-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.benefit-card,
.service-card,
.testimonial-card,
.value-card,
.stat-card,
.team-category,
.guarantee-card,
.project-card,
.metric-card,
.method-card,
.info-block,
.area-card,
.response-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 500px;
  background-color: #ffffff;
  border: 1px solid #e8e6e1;
  padding: 32px;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: relative;
}

.benefit-card:hover,
.service-card:hover,
.value-card:hover,
.guarantee-card:hover,
.project-card:hover,
.method-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #2C5F7D;
}

.benefit-card img,
.value-card img,
.method-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

.benefit-card h3,
.service-card h3,
.value-card h3,
.team-category h3,
.guarantee-card h3,
.project-card h3,
.method-card h3,
.info-block h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.benefit-card p,
.service-card p,
.value-card p,
.team-category p,
.guarantee-card p,
.project-card p,
.method-card p,
.info-block p {
  color: #4a4a4a;
  line-height: 1.6;
}

/* PRICING */
.price,
.price-range {
  font-family: 'Garamond', serif;
  font-size: 24px;
  color: #E8943F;
  font-weight: 600;
  margin: 16px 0;
}

/* TESTIMONIALS - READABLE TEXT */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid #e8e6e1;
  border-left: 3px solid #2C5F7D;
}

.testimonial-card p {
  font-size: 17px;
  font-style: italic;
  color: #2d2d2d;
  line-height: 1.7;
  margin-bottom: 0;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.testimonial-author strong {
  font-family: 'Garamond', serif;
  font-size: 18px;
  color: #1a1a1a;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 14px;
  color: #666;
}

.rating {
  color: #E8943F;
  font-size: 18px;
  letter-spacing: 2px;
}

/* STATS */
.stat-card {
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
}

.stat-number {
  font-family: 'Garamond', serif;
  font-size: 48px;
  color: #2C5F7D;
  font-weight: 600;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: #4a4a4a;
}

/* CTA SECTIONS */
.cta-conversion,
.cta-simple,
.cta-services,
.cta-portfolio,
.cta-process,
.cta-bottom {
  background-color: #f4f1ea;
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid #e8e6e1;
  border-bottom: 1px solid #e8e6e1;
  margin-bottom: 60px;
}

.cta-conversion h2,
.cta-simple h2,
.cta-services h2,
.cta-portfolio h2,
.cta-process h2,
.cta-bottom h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid #d8d6d1;
  border-bottom: 1px solid #d8d6d1;
}

.cta-features span {
  font-family: 'Garamond', serif;
  font-size: 16px;
  color: #2C5F7D;
  font-weight: 500;
}

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

.availability,
.trust-line {
  margin-top: 24px;
  font-size: 14px;
  color: #666;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* SERVICE BLOCKS */
.service-block {
  background-color: #ffffff;
  border: 1px solid #e8e6e1;
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 2px;
}

.service-block h2 {
  text-align: left;
  margin-bottom: 16px;
}

.service-includes {
  margin: 24px 0;
  padding-left: 20px;
}

.service-includes li {
  margin-bottom: 12px;
  color: #4a4a4a;
  line-height: 1.6;
}

.service-duration {
  font-style: italic;
  color: #666;
  margin: 20px 0;
}

/* PROCESS STEPS */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 48px;
}

.step-preview {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background-color: #ffffff;
  border: 1px solid #e8e6e1;
}

.step-number {
  display: inline-block;
  font-family: 'Garamond', serif;
  font-size: 32px;
  color: #E8943F;
  font-weight: 600;
  margin-bottom: 12px;
}

.process-step {
  background-color: #ffffff;
  border: 1px solid #e8e6e1;
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 2px;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.step-number-large {
  font-family: 'Garamond', serif;
  font-size: 64px;
  color: #E8943F;
  font-weight: 600;
  line-height: 1;
}

.step-header h2 {
  text-align: left;
  margin: 0;
  flex: 1;
}

.step-duration {
  font-size: 14px;
  color: #666;
  font-style: italic;
}

.step-outcome {
  background-color: #f9f7f4;
  padding: 20px;
  margin-top: 24px;
  border-left: 3px solid #2C5F7D;
}

/* PROJECT FEATURED */
.project-featured {
  background-color: #ffffff;
  border: 1px solid #e8e6e1;
  padding: 40px;
  margin-bottom: 40px;
  border-radius: 2px;
}

.project-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 20px 0;
  padding: 16px 0;
  border-top: 1px solid #e8e6e1;
  border-bottom: 1px solid #e8e6e1;
}

.project-meta span {
  font-family: 'Garamond', serif;
  color: #2C5F7D;
  font-weight: 500;
}

.project-services {
  margin: 24px 0;
  padding-left: 20px;
}

.project-services li {
  margin-bottom: 12px;
  color: #4a4a4a;
}

.project-testimonial {
  background-color: #f9f7f4;
  padding: 24px;
  margin-top: 32px;
  border-left: 3px solid #E8943F;
}

.project-testimonial p {
  font-style: italic;
  margin-bottom: 12px;
}

.project-results {
  background-color: #f4f1ea;
  padding: 20px;
  margin-top: 24px;
  border-radius: 2px;
}

/* COMMUNICATION GRID */
.communication-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.communication-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  max-width: 400px;
  background-color: #ffffff;
  border: 1px solid #e8e6e1;
  padding: 32px;
  text-align: center;
}

.commitment {
  text-align: center;
  margin-top: 40px;
  padding: 24px;
  background-color: #f4f1ea;
  font-weight: 500;
  color: #2C5F7D;
}

/* CONTACT METHODS */
.method-note {
  font-size: 14px;
  color: #E8943F;
  font-weight: 500;
  margin-top: 12px;
}

.contact-quick {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
  margin: 24px auto;
}

.contact-item {
  padding: 16px;
  background-color: #ffffff;
  border: 1px solid #e8e6e1;
  text-align: center;
}

.hours {
  text-align: center;
  margin-top: 24px;
  color: #666;
}

.area-note {
  text-align: center;
  margin-top: 32px;
  color: #666;
}

/* CONSULTATION STEPS */
.consultation-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.consultation-step {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background-color: #ffffff;
  border: 1px solid #e8e6e1;
}

.step-num {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  background-color: #2C5F7D;
  color: #ffffff;
  border-radius: 50%;
  font-family: 'Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.no-obligation {
  text-align: center;
  margin-top: 40px;
  font-size: 18px;
  color: #2C5F7D;
  font-weight: 500;
}

/* PRIVACY NOTE */
.privacy-note {
  background-color: #f9f7f4;
  padding: 40px 20px;
  text-align: center;
  margin-bottom: 60px;
}

/* THANK YOU PAGE */
.thank-you-hero,
.thank-you-page {
  background-color: #f4f1ea;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.checkmark-icon,
.success-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  background-color: #2C5F7D;
  color: #ffffff;
  border-radius: 50%;
  font-size: 48px;
  margin: 0 auto 32px;
}

.lead {
  font-size: 20px;
  margin-bottom: 24px;
}

.next-steps,
.helpful-resources,
.preparation-tips,
.email-confirmation,
.cta-alternative,
.back-navigation {
  margin-bottom: 60px;
  padding: 40px 20px;
}

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

.step-card,
.resource-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  max-width: 400px;
  background-color: #ffffff;
  border: 1px solid #e8e6e1;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.resource-card {
  text-decoration: none;
  color: inherit;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #2C5F7D;
}

.step-icon {
  width: 64px;
  height: 64px;
  line-height: 64px;
  background-color: #f4f1ea;
  color: #2C5F7D;
  border-radius: 50%;
  font-size: 32px;
  margin: 0 auto 20px;
}

.timeline-note {
  text-align: center;
  margin-top: 40px;
  color: #666;
  font-style: italic;
}

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

.tips-list li {
  padding: 12px 0;
  border-bottom: 1px solid #e8e6e1;
  color: #4a4a4a;
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.back-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* LEGAL PAGES */
.legal-page {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  border: 1px solid #e8e6e1;
  padding: 48px;
}

.last-updated,
.subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

.legal-content h2 {
  text-align: left;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-top: 32px;
  border-top: 1px solid #e8e6e1;
}

.legal-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content ul {
  margin: 16px 0 16px 24px;
}

.legal-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.rights-list h3 {
  color: #2C5F7D;
  margin-top: 24px;
}

/* TEXT SECTIONS */
.text-section {
  max-width: 800px;
  margin: 0 auto;
}

.text-section p {
  margin-bottom: 24px;
  font-size: 17px;
  line-height: 1.8;
}

/* FOOTER */
footer {
  background-color: #2C5F7D;
  color: #ffffff;
  padding: 60px 20px 32px;
  margin-top: 80px;
}

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

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

.footer-logo {
  height: 48px;
  margin-bottom: 20px;
}

.footer-column h4 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-column p {
  color: #d4dce2;
  font-size: 14px;
  line-height: 1.6;
}

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

.footer-nav a,
.footer-legal a {
  color: #d4dce2;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: #E8943F;
}

.footer-column a {
  color: #d4dce2;
}

.footer-column a:hover {
  color: #E8943F;
}

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

.footer-bottom p {
  color: #d4dce2;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C5F7D;
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
  z-index: 500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.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 400px;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-buttons button {
  padding: 10px 24px;
  border: 2px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
  font-family: 'Garamond', serif;
  font-size: 14px;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.cookie-buttons button:hover {
  background-color: #ffffff;
  color: #2C5F7D;
}

.cookie-buttons button.accept {
  background-color: #E8943F;
  border-color: #E8943F;
}

.cookie-buttons button.accept:hover {
  background-color: #d4802a;
  border-color: #d4802a;
  color: #ffffff;
}

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

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

.cookie-modal-content {
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border-radius: 2px;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal-content h2 {
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px 0;
  border-bottom: 1px solid #e8e6e1;
}

.cookie-category:last-of-type {
  border-bottom: none;
}

.cookie-category h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background-color: #ddd;
  border-radius: 13px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle.active {
  background-color: #2C5F7D;
}

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

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

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

.cookie-modal-buttons button {
  flex: 1;
  padding: 12px 24px;
  border: 2px solid #2C5F7D;
  background-color: transparent;
  color: #2C5F7D;
  font-family: 'Garamond', serif;
  font-size: 16px;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.cookie-modal-buttons button:hover {
  background-color: #2C5F7D;
  color: #ffffff;
}

.cookie-modal-buttons button.save {
  background-color: #E8943F;
  border-color: #E8943F;
  color: #ffffff;
}

.cookie-modal-buttons button.save:hover {
  background-color: #d4802a;
  border-color: #d4802a;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-page h1 {
    font-size: 32px;
  }
  
  /* Navigation */
  .main-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Grids */
  .benefits-grid,
  .services-grid,
  .testimonials-grid,
  .values-grid,
  .stats-grid,
  .guarantees-grid,
  .projects-grid,
  .metrics-grid,
  .methods-grid,
  .info-grid,
  .areas-grid,
  .response-grid,
  .communication-grid,
  .process-steps,
  .steps-grid,
  .resources-grid {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .testimonial-card,
  .value-card,
  .stat-card,
  .team-category,
  .guarantee-card,
  .project-card,
  .metric-card,
  .method-card,
  .info-block,
  .area-card,
  .response-card,
  .communication-card,
  .step-preview,
  .step-card,
  .resource-card,
  .consultation-step {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Buttons */
  .hero-cta,
  .cta-buttons,
  .header-cta,
  .action-buttons,
  .back-links {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary,
  .btn-primary-large,
  .btn-secondary-large {
    width: 100%;
    text-align: center;
  }
  
  /* Sections */
  .hero,
  .hero-page,
  .section,
  .benefits,
  .services-overview,
  .testimonials,
  .cta-conversion,
  .cta-simple,
  .cta-services,
  .cta-portfolio,
  .cta-process,
  .cta-bottom {
    padding: 40px 16px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  /* Trust indicators */
  .trust-indicators,
  .stats-inline,
  .trust-line,
  .cta-features {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Process */
  .step-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .step-number-large {
    font-size: 48px;
  }
  
  /* Legal */
  .legal-content {
    padding: 24px;
  }
  
  /* Project meta */
  .project-meta {
    flex-direction: column;
    gap: 12px;
  }
}

/* TABLETS */
@media (min-width: 769px) and (max-width: 1024px) {
  .benefit-card,
  .service-card,
  .value-card,
  .guarantee-card,
  .project-card,
  .method-card,
  .communication-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .stat-card {
    flex: 1 1 calc(50% - 24px);
  }
}

/* LARGE SCREENS */
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
  
  h1 {
    font-size: 56px;
  }
  
  h2 {
    font-size: 42px;
  }
  
  .hero h1 {
    font-size: 64px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer,
  .cta-conversion,
  .cta-simple,
  .cta-services,
  .cta-portfolio,
  .cta-process,
  .cta-bottom {
    display: none;
  }
  
  body {
    background-color: #ffffff;
  }
}

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

/* FOCUS STYLES */
a:focus,
button:focus {
  outline: 2px solid #E8943F;
  outline-offset: 2px;
}

/* SMOOTH ANIMATIONS */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}