/* ============================================
   HOME PAGE STYLES
   ============================================ */

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--header-height) + var(--space-xl));
  padding-bottom: var(--space-xl);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 100%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  flex: 1;
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-container {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.hero-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  display: block;
  filter: grayscale(30%);
  transition: filter var(--transition-normal);
}

.hero-image-container:hover .hero-image {
  filter: grayscale(0%);
}

/* Floral Decorations */
.flower {
  position: absolute;
  pointer-events: none;
  z-index: 3;
}

.flower-1 {
  width: 120px;
  height: 120px;
  top: -30px;
  left: 10%;
  animation: float 5s ease-in-out infinite;
}

.flower-2 {
  width: 100px;
  height: 100px;
  bottom: 10%;
  left: 0;
  animation: float 6s ease-in-out infinite 0.5s;
}

.flower-3 {
  width: 80px;
  height: 80px;
  top: 20%;
  right: 5%;
  animation: float 4.5s ease-in-out infinite 1s;
}

.flower-4 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  right: 15%;
  animation: float 5.5s ease-in-out infinite 1.5s;
}

/* Gradient Orbs */
.orb {
  position: absolute;
  border-radius: var(--radius-full);
  filter: blur(60px);
  opacity: 0.4;
  pointer-events: none;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--color-accent-soft) 0%, var(--color-secondary) 100%);
  top: -50px;
  left: -50px;
}

.orb-2 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, var(--color-warm-soft) 0%, var(--color-primary) 100%);
  bottom: -30px;
  right: -30px;
}

/* Hero Content */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-accent);
  background: var(--color-accent-soft);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  width: fit-content;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.15;
  color: var(--color-text);
}

.hero-description {
  font-size: 1.125rem;
  max-width: 500px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin: var(--space-sm) 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.9375rem;
  color: var(--color-text-soft);
}

.trust-item svg {
  color: var(--color-accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

/* Scroll Indicator */
.scroll-indicator-wrapper {
  display: flex;
  justify-content: center;
  margin-top: var(--space-xl);
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-text-soft);
  font-size: 0.875rem;
  cursor: pointer;
  animation: bounce 2s infinite;
  transition: color var(--transition-fast);
}

.scroll-indicator:hover {
  color: var(--color-accent);
}

/* Section Styles */
.section-tag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-description {
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

/* Intro Section */
.intro-content {
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.value-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-normal);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-accent-soft) 0%, var(--color-section-soft) 100%);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.value-icon-warm {
  background: linear-gradient(135deg, var(--color-warm-soft) 0%, #FEF3E2 100%);
  color: var(--color-warm);
}

.value-icon-trust {
  background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
  color: var(--color-primary-dark);
}

.value-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.value-text {
  font-size: 0.9375rem;
}

/* Services Preview */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-normal);
  border: 1px solid var(--color-border);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--color-primary);
}

.service-image {
  margin-bottom: var(--space-md);
}

.service-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-accent-soft) 0%, var(--color-section-soft) 100%);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.service-icon-warm {
  background: linear-gradient(135deg, var(--color-warm-soft) 0%, #FEF3E2 100%);
  color: var(--color-warm);
}

.service-icon-accent {
  background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
  color: var(--color-primary-dark);
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.service-text {
  font-size: 0.9375rem;
}

.section-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

/* Process Preview */
.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.process-step {
  text-align: center;
  max-width: 180px;
}

.step-number-small {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-accent) 0%, #A78BFA 100%);
  color: white;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.step-title-small {
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
}

.step-text-small {
  font-size: 0.875rem;
}

.process-arrow {
  color: var(--color-accent);
  flex-shrink: 0;
}

/* CTA Section */
.cta-card {
  background: linear-gradient(135deg, var(--color-section-soft) 0%, var(--color-accent-soft) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.cta-title {
  margin-bottom: var(--space-md);
}

.cta-text {
  margin-bottom: var(--space-lg);
  font-size: 1.0625rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.cta-decoration {
  position: absolute;
  width: 300px;
  height: 300px;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.6;
  pointer-events: none;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* Story Section */
.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.story-content {
  max-width: 550px;
}

.story-text {
  margin-bottom: var(--space-md);
  font-size: 1.0625rem;
}

.story-values {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.story-value {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text);
  font-weight: 500;
}

.story-value svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

.story-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.story-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-medium);
  text-align: center;
  max-width: 280px;
  position: relative;
  z-index: 1;
}

.story-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-accent-soft) 0%, var(--color-section-soft) 100%);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.story-card-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.story-card-text {
  font-size: 0.9375rem;
}

.story-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  right: 0;
  bottom: -30px;
  opacity: 0.5;
  pointer-events: none;
}

/* Mission Section */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.mission-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-normal);
}

.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.mission-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-accent-soft) 0%, var(--color-section-soft) 100%);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.mission-icon-trust {
  background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
  color: var(--color-primary-dark);
}

.mission-icon-personal {
  background: linear-gradient(135deg, var(--color-warm-soft) 0%, #FEF3E2 100%);
  color: var(--color-warm);
}

.mission-icon-quality {
  background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
  color: #059669;
}

.mission-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.mission-text {
  font-size: 0.9375rem;
}

/* Why Section */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
  align-items: center;
}

.why-visual {
  display: flex;
  justify-content: center;
}

.why-card-stack {
  position: relative;
  width: 280px;
  height: 320px;
}

.why-card {
  position: absolute;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 500;
  color: var(--color-text);
}

.why-card svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

.why-card-1 {
  top: 0;
  left: 0;
  width: 220px;
}

.why-card-2 {
  top: 100px;
  right: 0;
  width: 200px;
  background: linear-gradient(135deg, var(--color-warm-soft) 0%, var(--color-surface) 100%);
}

.why-card-2 svg {
  color: var(--color-warm);
}

.why-card-3 {
  bottom: 0;
  left: 20px;
  width: 240px;
  background: linear-gradient(135deg, var(--color-accent-soft) 0%, var(--color-surface) 100%);
}

.why-content {
  max-width: 550px;
}

.why-text {
  font-size: 1.0625rem;
  margin-bottom: var(--space-lg);
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.why-list svg {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

/* Notice Card */
.notice-card {
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-bg) 100%);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  box-shadow: var(--shadow-soft);
}

.notice-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notice-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
  color: var(--color-primary-dark);
}

.notice-text {
  font-size: 1rem;
  margin: 0;
}

/* Service Detail Cards */
.service-detail-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
  transition: all var(--transition-normal);
}

.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--color-primary);
}

.service-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-accent-soft) 0%, var(--color-section-soft) 100%);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon-warm {
  background: linear-gradient(135deg, var(--color-warm-soft) 0%, #FEF3E2 100%);
  color: var(--color-warm);
}

.service-icon-accent {
  background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
  color: var(--color-primary-dark);
}

.service-icon-green {
  background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
  color: #059669;
}

.service-name {
  font-size: 1.375rem;
  margin: 0;
}

.service-description {
  margin-bottom: var(--space-md);
  font-size: 1rem;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.service-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text-soft);
  font-size: 0.9375rem;
}

.service-features svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

/* How It Works */
.how-it-works {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.work-step {
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.work-number {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-accent) 0%, #A78BFA 100%);
  color: white;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.work-title {
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
}

.work-text {
  font-size: 0.9375rem;
  margin: 0;
}

/* ============================================
   PROCESS PAGE STYLES
   ============================================ */

/* Process Timeline */
.process-timeline {
  max-width: 900px;
  margin: 0 auto;
}

.timeline-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-lg);
  position: relative;
}

.timeline-step:not(:last-child) {
  margin-bottom: var(--space-xl);
}

.step-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-accent) 0%, #A78BFA 100%);
  color: white;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(139, 95, 191, 0.3);
}

.step-line {
  width: 3px;
  flex: 1;
  background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-accent-soft) 100%);
  margin-top: var(--space-md);
  border-radius: var(--radius-full);
}

.step-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
}

.step-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-accent-soft) 0%, var(--color-section-soft) 100%);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.step-icon-warm {
  background: linear-gradient(135deg, var(--color-warm-soft) 0%, #FEF3E2 100%);
  color: var(--color-warm);
}

.step-icon-accent {
  background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
  color: var(--color-primary-dark);
}

.step-icon-green {
  background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
  color: #059669;
}

.step-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.step-description {
  margin-bottom: var(--space-lg);
  font-size: 1rem;
}

.step-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.detail-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text-soft);
  font-size: 0.9375rem;
}

.detail-item svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.feature-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-accent-soft) 0%, var(--color-section-soft) 100%);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.feature-title {
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
}

.feature-text {
  font-size: 0.9375rem;
  margin: 0;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

/* Form Card */
.form-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-soft);
}

.form-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
}

.form-subtitle {
  color: var(--color-text-soft);
  margin-bottom: var(--space-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
}

/* Info Card */
.info-card {
  background: linear-gradient(135deg, var(--color-accent) 0%, #A78BFA 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  color: white;
  margin-bottom: var(--space-lg);
}

.info-title {
  font-size: 1.375rem;
  margin-bottom: var(--space-sm);
  color: white;
}

.info-text {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-lg);
}

.info-cta {
  background: white;
  color: var(--color-accent);
  width: 100%;
}

.info-cta:hover {
  background: var(--color-bg);
  color: var(--color-accent);
}

/* Contact Methods */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-soft);
}

.method-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-accent-soft) 0%, var(--color-section-soft) 100%);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.method-title {
  font-size: 0.875rem;
  color: var(--color-text-soft);
  margin-bottom: var(--space-xs);
}

.method-value {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.method-note {
  font-size: 0.875rem;
  color: var(--color-text-soft);
  margin: 0;
}

/* Trust Card */
.trust-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-soft);
}

.trust-title {
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
}

.trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text-soft);
  font-size: 0.9375rem;
}

.trust-list svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image-wrapper {
    order: -1;
  }

  .hero-image {
    max-width: 350px;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .flower {
    display: none;
  }

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

  .process-steps {
    flex-direction: column;
  }

  .process-arrow {
    transform: rotate(90deg);
  }

  .story-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .story-visual,
  .why-visual {
    order: -1;
  }

  .services-grid {
    grid-template-columns: 1fr !important;
  }

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

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

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .values-grid,
  .services-grid,
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .how-it-works {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .timeline-step {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .step-visual {
    flex-direction: row;
    gap: var(--space-md);
  }

  .step-line {
    width: auto;
    height: 3px;
    flex: 1;
    margin-top: 0;
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-soft) 100%);
  }

  .why-card-stack {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }

  .why-card {
    position: static;
    width: 100% !important;
  }

  .cta-decoration {
    display: none;
  }

  .cta-card {
    padding: var(--space-xl);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-card,
  .info-card {
    padding: var(--space-xl);
  }

  .contact-method {
    flex-direction: column;
    text-align: center;
  }

  .method-icon {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .notice-card {
    flex-direction: column;
    text-align: center;
  }

  .notice-icon {
    margin: 0 auto;
  }

  .service-header {
    flex-direction: column;
    text-align: center;
  }
}
