/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #4A4A4A;
  background-color: #fffdfa;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

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

/* Header */
#header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #fce9ca;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

.logo {
  color: #2C5F2D;
  font-size: 1.25rem;
  font-weight: 500;
}

.nav-desktop {
  display: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: #4A4A4A;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #2C5F2D;
}

.cta-desktop {
  display: none;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background-color: #2C5F2D;
  color: white;
  border-radius: 0.5rem;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #1F4620;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  color: #2C5F2D;
  padding: 0.5rem;
}

.close-icon {
  display: none;
}

.mobile-menu-btn.active .menu-icon {
  display: none;
}

.mobile-menu-btn.active .close-icon {
  display: block;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid #fce9ca;
}

.nav-mobile.active {
  display: flex;
}

.nav-link-mobile {
  color: #4A4A4A;
  transition: color 0.3s;
  padding: 0.5rem 0;
}

.nav-link-mobile:hover {
  color: #2C5F2D;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1rem;
  width: 100%;
}

.hero-max-width {
  max-width: 42rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: rgba(44, 95, 45, 0.9);
  color: white;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.hero-title {
  color: white;
  margin-bottom: 1.5rem;
}

.hero-title-main {
  font-size: 1.875rem;
  margin-bottom: 1rem;
  font-weight: 500;
  line-height: 1.3;
}

.hero-title-accent {
  font-size: 1.875rem;
  color: #B8C964;
  font-weight: 500;
  line-height: 1.3;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background-color: #2C5F2D;
  color: white;
  border-radius: 0.5rem;
  transition: background-color 0.3s;
  gap: 0.5rem;
  font-weight: 500;
}

.btn-hero-primary:hover {
  background-color: #1F4620;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  transition: background-color 0.3s;
  font-weight: 500;
}

.btn-hero-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.hero-wood-texture {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6rem;
  opacity: 0.1;
  background-image: url('https://images.unsplash.com/photo-1763392199096-6efd9d28d8cc?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w3Nzg4Nzd8MHwxfHNlYXJjaHwxfHxuYXR1cmFsJTIwd29vZCUyMGdyYWluJTIwdGV4dHVyZXxlbnwxfHx8fDE3NjM4ODYxMjJ8MA&ixlib=rb-4.1.0&q=80&w=1080');
  background-size: cover;
  background-position: center;
}

/* Section Styles */
.section-white {
  padding: 4rem 0;
  background-color: white;
}

.section-beige-pr {
  padding: 4rem 0;
  background-color: #fffdfa;
}

.section-beige {
  padding: 4rem 0;
  background-color: #fffdfa;
}

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

.section-title {
  color: #2C5F2D;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.section-subtitle {
  color: #4A4A4A;
  max-width: 42rem;
  margin: 0 auto;
}

.section-subtitle-long {
  color: #4A4A4A;
  max-width: 48rem;
  margin: 0 auto;
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.icon-warning {
  background-color: #fdefe0;
  color: #f39800;
}

/* Problems Section */
.problems-container {
  max-width: 64rem;
  margin: 0 auto;
}

.problems-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.problem-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background-color: #fffdfa;
  border: 1px solid #fce9ca;
  border-radius: 0.5rem;
  transition: box-shadow 0.3s;
}

.problem-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.problem-number {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #2C5F2D;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.problem-text {
  color: #4A4A4A;
  flex: 1;
}

.problems-cta {
  padding: 1.5rem;
  background-color: rgba(44, 95, 45, 0.05);
  border-left: 4px solid #2C5F2D;
  border-radius: 0 0.5rem 0.5rem 0;
}

.problems-cta-text {
  color: #2C5F2D;
  font-weight: 500;
}

/* Reasons Section */
.reasons-grid {
  display: grid;
  gap: 1.5rem;
}

.reason-card {
  background-color: white;
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid #fce9ca;
  transition: box-shadow 0.3s;
}

.reason-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.reason-content {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.reason-icon {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(44, 95, 45, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2C5F2D;
}

.reason-text {
  flex: 1;
}

.reason-title {
  color: #2C5F2D;
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
  font-weight: 500;
}

.reason-description {
  color: #4A4A4A;
}

/* Method Section */
.method-comparison {
  margin-bottom: 4rem;
}

.method-comparison-title {
  text-align: center;
  color: #2C5F2D;
  margin-bottom: 2rem;
  font-size: 1.25rem;
  font-weight: 500;
}

.table-container {
  max-width: 64rem;
  margin: 0 auto;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
}

.table-header {
  padding: 1rem;
  text-align: left;
  color: #4A4A4A;
  border: 1px solid #fce9ca;
  background-color: #fdefe0;
  font-weight: 500;
}

.table-header-conventional,
.table-header-method {
  text-align: center;
}

.table-header-method {
  color: #2C5F2D;
}

.table-header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.table-cell {
  padding: 1rem;
  border: 1px solid #fce9ca;
  color: #4A4A4A;
}

.table-cell-aspect {
  color: #2C5F2D;
  background-color: #fffdfa;
  font-weight: 500;
}

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

.table-cell-method {
  color: #2C5F2D;
  background-color: rgba(44, 95, 45, 0.05);
  font-weight: 500;
}

/* Flow */
.method-flow-title {
  text-align: center;
  color: #2C5F2D;
  margin-bottom: 2rem;
  font-size: 1.25rem;
  font-weight: 500;
}

.flow-container {
  max-width: 80rem;
  margin: 0 auto;
}

.flow-grid {
  display: grid;
  gap: 1.5rem;
}

.flow-step {
  position: relative;
}

.flow-connector {
  display: none;
}

.flow-card {
  position: relative;
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 2px solid #2C5F2D;
  text-align: center;
}

.flow-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: #2C5F2D;
  color: white;
  border-radius: 50%;
  margin-bottom: 1rem;
  font-weight: 500;
}

.flow-step-title {
  color: #2C5F2D;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
}

.flow-step-description {
  color: #4A4A4A;
  font-size: 0.875rem;
}

/* Pricing Section */
.pricing-grid {
  max-width: 64rem;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.pricing-card {
  background-color: white;
  padding: 2rem;
  border-radius: 0.5rem;
  border: 2px solid #f39800;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pricing-card-featured {
  border: 2px solid #2C5F2D;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.pricing-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  color: white;
  border-radius: 9999px;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.pricing-badge-title {
  width: 100%;
}


.pricing-badge-primary {
  background-color: #2C5F2D;
}

.pricing-badge-secondary {
  background-color: #f39800;
}

.pricing-price {
  font-size: 2.5rem;
  color: #2C5F2D;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

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

.pricing-note-primary {
  color: #4A4A4A;
  font-size: 0.875rem;
  text-align: left;
}

.pricing-note-secondary {
  color: #4A4A4A;
  font-size: 0.875rem;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.pricing-feature svg {
  flex-shrink: 0;
  color: #2C5F2D;
  margin-top: 0.25rem;
}

.pricing-feature span {
  color: #4A4A4A;
}

.pricing-info {
  margin-top: 2.5rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem;
  background-color: #fdefe0;
  border-radius: 0.5rem;
  text-align: center;
}

.pricing-info p {
  color: #4A4A4A;
}

/* Director Section */
.director-container {
  max-width: 80rem;
  margin: 0 auto;
}

.director-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.director-photo-wrapper {
  order: 2;
}

.director-photo {
  aspect-ratio: 3 / 4;
  background-color: #fdefe0;
  border-radius: 0.5rem;
  overflow: hidden;
}

.director-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.director-info {
  order: 1;
}

.director-header {
  margin-bottom: 1.5rem;
}

.director-name {
  color: #2C5F2D;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 500;
}

.director-role {
  color: #f39800;
}

.director-credentials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.credential-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(44, 95, 45, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2C5F2D;
}

.credential-text {
  flex: 1;
}

.credential-title {
  color: #2C5F2D;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.credential-description {
  color: #4A4A4A;
  font-size: 0.875rem;
}

.director-message {
  padding: 1.5rem;
  background-color: #fffdfa;
  border-left: 4px solid #2C5F2D;
  border-radius: 0 0.5rem 0.5rem 0;
}

.director-message p {
  color: #4A4A4A;
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

.testimonial-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #fce9ca;
  transition: box-shadow 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: #f39800;
}

.testimonial-quote {
  margin-bottom: 1rem;
}

.testimonial-quote svg {
  color: rgba(44, 95, 45, 0.2);
}

.testimonial-text {
  color: #4A4A4A;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  padding-top: 1rem;
  border-top: 1px solid #fce9ca;
}

.testimonial-name {
  color: #2C5F2D;
  font-weight: 500;
}

.testimonial-age {
  color: #4A4A4A;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.testimonial-condition {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.25rem 0.75rem;
  background-color: rgba(44, 95, 45, 0.1);
  color: #2C5F2D;
  font-size: 0.875rem;
  border-radius: 9999px;
}

.testimonials-disclaimer {
  margin-top: 2.5rem;
  text-align: center;
}

.testimonials-disclaimer p {
  color: #4A4A4A;
  font-size: 0.875rem;
}

/* Access Section */
.access-grid {
  display: grid;
  gap: 2rem;
}

.access-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.business-hours {
  background-color: #fffdfa;
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid #fce9ca;
}

.business-hours-title {
  color: #2C5F2D;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  font-weight: 500;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #fce9ca;
  color: #4A4A4A;
  text-align: right;
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-item-closed {
  color: #f39800;
    text-align: left;
}

.hours-note {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: rgba(44, 95, 45, 0.05);
  border-radius: 0.5rem;
}

.hours-note p {
  color: #2C5F2D;
  font-size: 0.875rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(44, 95, 45, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2C5F2D;
}

.contact-text {
  flex: 1;
}

.contact-label {
  color: #2C5F2D;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.contact-text p {
  color: #4A4A4A;
}

.contact-note {
  font-size: 0.875rem;
}

.access-map-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.access-map {
  aspect-ratio: 4 / 3;
  background-color: #fdefe0;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid #fce9ca;
}

.access-transport {
  padding: 1rem;
  background-color: #fdefe0;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #4A4A4A;
  font-size: 0.875rem;
}

.access-transport svg {
  color: #2C5F2D;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background-color: #2C5F2D;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url('https://images.unsplash.com/photo-1763392199096-6efd9d28d8cc?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w3Nzg4Nzd8MHwxfHNlYXJjaHwxfHxuYXR1cmFsJTIwd29vZCUyMGdyYWluJTIwdGV4dHVyZXxlbnwxfHx8fDE3NjM4ODYxMjJ8MA&ixlib=rb-4.1.0&q=80&w=1080');
  background-size: cover;
  background-position: center;
}

.cta-container {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

.cta-section-title {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.cta-section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  max-width: 42rem;
  margin: 0 auto;
}

.cta-cards {
  max-width: 64rem;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.cta-card {
  background-color: white;
  color: #4A4A4A;
  padding: 2rem;
  border-radius: 0.5rem;
}

.cta-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.cta-card-header svg {
  color: #2C5F2D;
}

.cta-card-title {
  color: #2C5F2D;
  font-size: 1.125rem;
  font-weight: 500;
}

.cta-card-description {
  text-align: center;
  margin-bottom: 1.5rem;
}

.btn-line {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: #06C755;
  color: white;
  border-radius: 0.5rem;
  transition: background-color 0.3s;
  gap: 0.5rem;
  font-weight: 500;
}

.btn-line:hover {
  background-color: #05B04D;
}

.btn-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: #2C5F2D;
  color: white;
  border-radius: 0.5rem;
  transition: background-color 0.3s;
  gap: 0.5rem;
  font-weight: 500;
}

.btn-phone:hover {
  background-color: #1F4620;
}

.cta-card-note {
  text-align: center;
  font-size: 0.875rem;
  margin-top: 1rem;
  color: rgba(74, 74, 74, 0.7);
}

.cta-footer {
  margin-top: 3rem;
  text-align: center;
}

.cta-footer-message {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 0.5rem;
}

.cta-footer-message p {
  color: rgba(255, 255, 255, 0.9);
}

.sm-break {
  display: none;
}

/* Footer */
.footer {
  background-color: #1F4620;
  color: white;
  padding: 3rem 0;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-links-title,
.footer-contact-title {
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.footer-link:hover {
  color: white;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

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

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

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: block;
}

.floating-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: #2C5F2D;
  color: white;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
  gap: 0.5rem;
  font-weight: 500;
}

/* Tablet Styles */
@media (min-width: 768px) {
  .header-content {
    height: 80px;
  }

  .logo {
    font-size: 1.5rem;
  }

  .nav-desktop {
    display: flex;
  }

  .cta-desktop {
    display: block;
  }

  .mobile-menu-btn {
    display: none;
  }

  .nav-mobile {
    display: none !important;
  }

  .floating-cta {
    display: none;
  }

  .hero-section {
    min-height: 700px;
  }

  .hero-content {
    padding: 8rem 1.5rem;
  }

  .hero-title-main,
  .hero-title-accent {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .hero-buttons {
    flex-direction: row;
  }

  .section-white {
    padding: 6rem 0;
  }

  .section-beige-pr {
    padding: 6rem 0;
  }

  .section-beige {
    padding: 6rem 0;
  }

  .section-reason {
    padding-top: 0;
  }

  .section-title {
    font-size: 1.875rem;
  }

  .container {
    padding: 0 1.5rem;
  }

  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .flow-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .flow-connector {
    display: block;
    position: absolute;
    top: 3rem;
    left: 60%;
    width: 100%;
    height: 2px;
    background-color: #fce9ca;
  }

  .flow-step:last-child .flow-connector {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .pricing-price {
    font-size: 3rem;
  }

  .director-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .director-photo-wrapper {
    order: 1;
  }

  .director-info {
    order: 2;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .access-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .cta-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-card:only-child {
    grid-column: 1 / -1;
    max-width: 80%;
    margin: 0 auto;
  }

  .sm-break {
    display: block;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .method-comparison-title,
  .method-flow-title {
    font-size: 1.5rem;
  }

    .sp-only {
    display: block;
  }
}

/* Mobile: cta-card 80% width */
@media (max-width: 1023px) {
  .cta-card {
    width: 80%;
    margin: 0 auto;
  }
}

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

  .hero-title-main,
  .hero-title-accent {
    font-size: 3.75rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-card:only-child {
    grid-column: 1 / -1;
    width: 80%;
    max-width: 80%;
    margin: 0 auto;
  }
}

/* ADD */
.price-row {
  display: flex;
  align-items: baseline; /* 文字の高さを自然に */
  gap: 16px;             /* 項目と金額の間隔 */
  margin-bottom: 4px;
}

.testimonial-condition_price {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.25rem 0.5rem;
  background-color: rgba(44, 95, 45, 0.1);
  color: #2C5F2D;
  font-size: 0.875rem;
  border-radius: 9999px;
}

.testimonial-condition_price {
  width: 10em; 
  font-size: 100%;
}

.testimonial-condition_price_sec {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.25rem 0.75rem;
  background-color: rgba(243, 152, 0, 0.12);
  color: #f39800;
  font-size: 0.875rem;
  border-radius: 9999px;
}

.testimonial-condition_price_sec {
  width: 10em;            /* ←ここがポイント */
  font-size: 100%;
}

.pricing-price {
  font-size: 2em;
  font-weight: 600;
  line-height: 1.2;
}
.price-block {
  display: flex;
  flex-direction: column;
  align-items: center;   /* ← 全体をセンター寄せ */
}
/* 写真 */
.access-photo {
  margin-bottom: 0px;
}

.access-photo img {
  width: 100%;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

/* Treatment Case (Before / After) */
.treatment-case {
  margin-top: 4rem;
}

.treatment-case-title {
  text-align: center;
  color: #2C5F2D;
  margin-bottom: 2rem;
  font-size: 1.25rem;
  font-weight: 500;
}

/* カード */
.case-card {
  max-width: 64rem;
  margin: 0 auto;
  padding: 2rem;
  background-color: #fffdfa;
  border: 1px solid #fce9ca;
  border-radius: 0.5rem;
}

/* 画像エリア */
.case-images {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.case-image {
  position: relative;
  background-color: #fdefe0;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid #fce9ca;
}

.case-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Before / After ラベル */
.case-label {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #2C5F2D;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 9999px;
}

/* テキスト */
.case-text {
  text-align: center;
  color: #4A4A4A;
  font-size: 0.95rem;
  line-height: 1.7;
}

.case-summary {
  margin-bottom: 0.75rem;
  color: #2C5F2D;
  font-weight: 500;
}

.case-description {
  margin-bottom: 0.75rem;
}

/* Tablet以上 */
@media (min-width: 768px) {
  .case-images {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-text {
    max-width: 42rem;
    margin: 0 auto;
  }
}

.pricing-tax {
  color: #2c5f2d;
  font-size: .875rem;
}

.price-row {
  position: relative;
}

.pricing-popular {
  position: absolute;
  top: -1.2rem;
  left: 0;
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
  background-color: rgba(44, 95, 45, 0.1);
  color: #2C5F2D;
  font-weight: 500;
  white-space: nowrap;
}

.pricing-note-box {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  background-color: rgba(243, 152, 0, 0.08); /* 薄オレンジ */
  border-radius: 0.5rem;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #4A4A4A;
}

.pricing-note-box small {
  font-size: 0.85rem;
}

.pricing-firsttime-note-secondary {
  margin: 0.5rem 0 0.3rem 0;
  text-align: center;
}

.pricing-firsttime-note-secondary .pricing-popular-secondary {
  display: inline-block;
    top: -1.2rem;
  left: 0;
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
  background-color: rgba(243, 152, 0, 0.1);
  color: #f39800;
  font-weight: 500;
}

.sp-only {
  display: none;
}

.logo img {
  height: 48px;   /* ヘッダー用サイズ */
  width: auto;
  display: block;
}

/* reason */
.section-reason {
  padding-top: 0;
}

.section-reason .section-header {
  background-image: url("img/doraku_inside.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 3.5rem 1rem;
  color: white;
  font: white !important;
  position: relative;

  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
}

.section-reason .section-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(44, 95, 45, 0.8);
}

.section-reason .section-header > * {
  position: relative;
  z-index: 1;
}
.section-reason .section-header {
  min-height: 220px;
}

.section-reason .section-header .section-title {
  color: #ffffff;
}

.section-reason .section-header .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.flow-image {
  width: 100%;
  aspect-ratio: 1 / 1;   /* ← 正方形 */
  overflow: hidden;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.flow-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* YouTube Section */
.youtube-section {
  background-color: #ffffff;
  padding: 3rem 0 1rem;
}

.youtube-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.youtube-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
