/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE — Premium Modern Design
   Clean, minimal, Notion/Stripe-inspired
   ═══════════════════════════════════════════════════════════ */

/* ── Shared label ── */
.about-section-label {
  display: inline-block;
  font-family: 'Montserrat', var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #113721;
  background: rgba(17, 55, 33, 0.06);
  padding: 6px 14px;
  border-radius: 6px;
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.about-hero {
  position: relative;
  padding: 180px 0 120px;
  background: linear-gradient(155deg, #04321C 0%, #0A5233 50%, #113721 100%);
  overflow: hidden;
  text-align: center;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(10, 82, 51, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 80%, rgba(4, 50, 28, 0.3) 0%, transparent 50%);
}

.about-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.about-hero-label {
  display: inline-block;
  font-family: 'Montserrat', var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.about-hero h1 {
  font-family: 'Montserrat', var(--font-heading);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.3px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.about-hero p {
  font-family: 'Montserrat', var(--font-body);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.about-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-about-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #ffffff;
  color: #113721;
  font-family: 'Montserrat', var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-about-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-about-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Montserrat', var(--font-body);
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-about-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.about-hero-curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 3;
  line-height: 0;
}

.about-hero-curve svg {
  width: 100%;
  height: 60px;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 2: WHO WE ARE
   ═══════════════════════════════════════════════════════════ */
.about-who {
  padding: 100px 0;
  background: #ffffff;
}

.about-who-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-who-text h2 {
  font-family: 'Montserrat', var(--font-heading);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.3px;
  margin-bottom: 20px;
}

.about-who-text p {
  font-family: 'Montserrat', var(--font-body);
  font-size: 15px;
  color: #666;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-who-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid #eee;
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-stat-number {
  font-family: 'Montserrat', var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  color: #113721;
}

.about-stat-label {
  font-family: 'Montserrat', var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: #999;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.about-who-img-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.about-who-img-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-who-img-wrapper:hover img {
  transform: scale(1.03);
}

/* ═══════════════════════════════════════════════════════════
   SECTION 3: CURVED PROCESS — S-Path Flow
   ═══════════════════════════════════════════════════════════ */
.curved-process {
  padding: 100px 0 120px;
  background: #F8F7F4;
  position: relative;
  overflow: hidden;
}

.curved-process::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(17, 55, 33, 0.015) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.cp-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 72px;
  position: relative;
  z-index: 2;
}

.cp-header h2 {
  font-family: 'Montserrat', var(--font-heading);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
}

.cp-header p {
  font-family: 'Montserrat', var(--font-body);
  font-size: 15px;
  color: #888;
  line-height: 1.7;
}

.cp-wrapper {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  min-height: 1200px;
  padding: 100px 0;
}

.cp-svg-path {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.cp-path-fill {
  transition: stroke-dashoffset 0.05s linear;
  filter: drop-shadow(0 2px 4px rgba(17, 55, 33, 0.15));
}

.cp-path-dots {
  animation: dotsFlow 60s linear infinite;
}

@keyframes dotsFlow {
  from { stroke-dashoffset: 1000; }
  to { stroke-dashoffset: 0; }
}

.cp-travel-dot {
  opacity: 0;
  transition: opacity 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(17, 55, 33, 0.35));
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { r: 6; opacity: 0.8; }
  50% { r: 7; opacity: 1; }
}

/* ── Directional arrows animation ── */
.cp-arrow {
  animation: arrowFade 5s ease-in-out infinite;
}

@keyframes arrowFade {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.6; }
}

/* ── Visual Anchors (Farm & Shelf) ── */
.cp-anchor {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 3;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.cp-anchor.reveal {
  opacity: 1;
  transform: translateY(0);
}

.cp-anchor-start {
  top: -80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
}

.cp-anchor-start.reveal {
  transform: translateX(-50%) translateY(0);
}

.cp-anchor-end {
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
}

.cp-anchor-end.reveal {
  transform: translateX(-50%) translateY(0);
}

.cp-anchor-visual {
  position: relative;
  width: 110px;
  height: 110px;
  background: #ffffff;
  border-radius: 24px;
  padding: 12px;
  box-shadow: 
    0 12px 32px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(17, 55, 33, 0.06);
  border: 1px solid rgba(17, 55, 33, 0.08);
  animation: anchorFloat 4s ease-in-out infinite;
  transition: all 0.3s ease;
}

.cp-anchor-visual:hover {
  transform: scale(1.05);
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.12),
    0 6px 16px rgba(17, 55, 33, 0.1);
}

.cp-anchor-end .cp-anchor-visual {
  animation-delay: 2s;
}

.cp-anchor-visual svg {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.cp-anchor-glow {
  position: absolute;
  inset: -15px;
  background: radial-gradient(circle, rgba(17, 55, 33, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.5;
  animation: anchorGlow 4s ease-in-out infinite;
}

.cp-anchor-label {
  font-family: 'Montserrat', var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: #113721;
  letter-spacing: 0.5px;
  white-space: nowrap;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8);
}

@keyframes anchorFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes anchorGlow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.15); }
}

.cp-deco {
  position: absolute;
  font-size: 28px;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
  animation: decoFloat 6s ease-in-out infinite;
}

.cp-deco-1 { 
  top: 5%; 
  right: 8%; 
  font-size: 32px;
  animation-delay: 0s;
}

.cp-deco-2 { 
  top: 55%; 
  left: 4%; 
  font-size: 26px;
  animation-delay: 2s;
}

.cp-deco-3 { 
  bottom: 10%; 
  right: 12%; 
  font-size: 18px; 
  color: #113721; 
  opacity: 0.12;
  animation-delay: 4s;
}

@keyframes decoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.08; }
  50% { transform: translateY(-15px) rotate(5deg); opacity: 0.15; }
}

.cp-step {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.cp-step:last-child { margin-bottom: 0; }

.cp-step.cp-visible {
  opacity: 1;
  transform: translateY(0);
}

.cp-step[data-step="1"] { transition-delay: 0.1s; }
.cp-step[data-step="2"] { transition-delay: 0.2s; }
.cp-step[data-step="3"] { transition-delay: 0.3s; }
.cp-step[data-step="4"] { transition-delay: 0.4s; }
.cp-step[data-step="5"] { transition-delay: 0.5s; }

.cp-step-left {
  display: flex;
  justify-content: flex-start;
  padding-right: 52%;
}

.cp-step-right {
  display: flex;
  justify-content: flex-end;
  padding-left: 52%;
}

.cp-step-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
  position: relative;
  width: 100%;
  max-width: 380px;
}

.cp-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  border-color: rgba(17, 55, 33, 0.1);
}

.cp-step-num {
  font-family: 'Montserrat', var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: rgba(17, 55, 33, 0.2);
  letter-spacing: 1px;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.cp-step.cp-visible .cp-step-num {
  color: #6e412c;
}

.cp-step-icon {
  width: 50px;
  height: 50px;
  background: rgba(17, 55, 33, 0.06);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #113721;
  transition: all 0.25s ease;
}

.cp-step-card:hover .cp-step-icon {
  background: #113721;
  color: #ffffff;
}

.cp-step-card h3 {
  font-family: 'Montserrat', var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  letter-spacing: 0;
}

.cp-step-card p {
  font-family: 'Montserrat', var(--font-body);
  font-size: 14px;
  color: #888;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 4: WHY CHOOSE US
   ═══════════════════════════════════════════════════════════ */
.about-why {
  padding: 50px 0 40px;
  background: #ffffff;
}

.about-why-header {
  text-align: center;
  margin-bottom: 24px;
}

.about-why-header h2 {
  font-family: 'Montserrat', var(--font-heading);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.3px;
}

.about-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.about-why-card {
  text-align: center;
  padding: 28px 20px 24px;
  border-radius: 14px;
  background: #F8F7F4;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.about-why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 55, 33, 0.1);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.about-why-icon {
  width: 48px;
  height: 48px;
  background: rgba(17, 55, 33, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: #113721;
  transition: all 0.2s ease;
}

.about-why-card:hover .about-why-icon {
  background: #113721;
  color: #fff;
  transform: scale(1.1);
}

.about-why-card h3 {
  font-family: 'Montserrat', var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.about-why-card p {
  font-family: 'Montserrat', var(--font-body);
  font-size: 13px;
  color: #888;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 5: CTA
   ═══════════════════════════════════════════════════════════ */
.about-cta {
  padding: 30px 0 0;
  background: #ffffff;
}

.about-cta-inner {
  background: linear-gradient(155deg, #04321C 0%, #113721 50%, #0A5233 100%);
  border-radius: 18px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-cta-inner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.about-cta-inner::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  border-radius: 50%;
}

.about-cta-inner h2 {
  font-family: 'Montserrat', var(--font-heading);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.3px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.about-cta-inner p {
  font-family: 'Montserrat', var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}

.about-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER TAGLINE
   ═══════════════════════════════════════════════════════════ */
.about-tagline {
  padding: 24px 0;
  background: #ffffff;
  text-align: center;
}

.about-tagline-text {
  font-family: 'Montserrat', var(--font-heading);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  font-style: italic;
  color: rgba(17, 55, 33, 0.2);
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

/* ── Tablet (768px - 1023px) ── */
@media (max-width: 1023px) and (min-width: 768px) {
  .curved-process {
    padding: 80px 0 100px;
  }

  .cp-wrapper {
    max-width: 800px;
    padding: 80px 0;
  }

  .cp-anchor-visual {
    width: 95px;
    height: 95px;
  }

  .cp-anchor-start {
    top: -70px;
  }

  .cp-anchor-end {
    bottom: -70px;
  }

  .cp-step-card {
    max-width: 340px;
    padding: 28px 24px;
  }

  .cp-step-left {
    padding-right: 50%;
  }

  .cp-step-right {
    padding-left: 50%;
  }

  .cp-deco {
    font-size: 24px;
  }
}

@media (max-width: 1024px) {
  .about-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 120px 0 80px;
  }

  .about-hero h1 {
    font-size: clamp(28px, 6vw, 40px);
  }

  .about-hero p {
    font-size: 15px;
  }

  .about-hero-curve svg {
    height: 36px;
  }

  .about-who {
    padding: 60px 0;
  }

  .about-who-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-who-text h2 {
    font-size: clamp(24px, 5vw, 32px);
  }

  .about-who-stats {
    gap: 20px;
  }

  .about-who-img-wrapper img {
    height: 280px;
  }

  .about-why {
    padding: 40px 0 30px;
  }

  .about-why-header {
    margin-bottom: 20px;
  }

  .about-why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .about-why-card {
    padding: 28px 16px;
  }

  .about-why-card h3 {
    font-size: 14px;
  }

  .about-why-card p {
    font-size: 12px;
  }

  /* Curved process → vertical timeline */
  .curved-process {
    padding: 60px 0 80px;
  }

  .cp-header {
    margin-bottom: 48px;
  }

  .cp-header h2 {
    font-size: clamp(24px, 5vw, 32px);
  }

  .cp-svg-path {
    display: none;
  }

  .cp-wrapper {
    min-height: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  /* Vertical line for mobile */
  .cp-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 120px;
    bottom: 120px;
    width: 2px;
    background: rgba(17, 55, 33, 0.12);
    z-index: 1;
  }

  .cp-wrapper::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 120px;
    width: 2px;
    height: var(--cp-mobile-fill, 0%);
    background: linear-gradient(to bottom, #113721, rgba(17, 55, 33, 0.6));
    z-index: 2;
    transition: height 0.1s linear;
    box-shadow: 0 0 8px rgba(17, 55, 33, 0.3);
  }

  /* Animated dots moving down the line */
  .cp-wrapper::before {
    background: 
      linear-gradient(to bottom, 
        rgba(17, 55, 33, 0.12) 0%, 
        rgba(17, 55, 33, 0.12) 50%, 
        transparent 50%, 
        transparent 100%
      );
    background-size: 2px 20px;
    animation: mobileDotsFlow 2s linear infinite;
  }

  @keyframes mobileDotsFlow {
    from { background-position: 0 0; }
    to { background-position: 0 20px; }
  }

  .cp-step-left,
  .cp-step-right {
    padding-left: 0;
    padding-right: 0;
    justify-content: center;
    width: 100%;
  }

  .cp-step {
    margin-bottom: 32px;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .cp-step-card {
    max-width: 360px;
    width: 100%;
    padding: 24px 20px;
  }

  /* Connection dots on the vertical line */
  .cp-step::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 32px;
    width: 14px;
    height: 14px;
    background: #fff;
    border: 3px solid rgba(17, 55, 33, 0.2);
    border-radius: 50%;
    z-index: 3;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .cp-step.cp-visible::before {
    background: #113721;
    border-color: #113721;
    box-shadow: 
      0 0 0 6px rgba(17, 55, 33, 0.15),
      0 2px 12px rgba(17, 55, 33, 0.3);
    animation: dotPop 0.5s ease-out;
  }

  @keyframes dotPop {
    0% { transform: translateX(-50%) scale(0); }
    50% { transform: translateX(-50%) scale(1.3); }
    100% { transform: translateX(-50%) scale(1); }
  }

  /* Farm anchor at top */
  .cp-anchor {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    transform: none;
    margin-bottom: 48px;
    order: -1;
  }

  .cp-anchor-start {
    transform: none;
  }

  .cp-anchor-start.reveal {
    transform: none;
  }

  .cp-anchor-visual {
    width: 90px;
    height: 90px;
    padding: 10px;
  }

  /* Shelf anchor at bottom */
  .cp-anchor-end {
    margin-top: 48px;
    margin-bottom: 0;
    order: 999;
    transform: none;
  }

  .cp-anchor-end.reveal {
    transform: none;
  }

  .cp-anchor-label {
    font-size: 12px;
  }

  .cp-deco {
    display: none;
  }

  /* Reduce glow intensity on mobile */
  .cp-anchor-glow {
    opacity: 0.3;
  }

  @keyframes anchorFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }

  .about-cta {
    padding: 24px 0 0;
  }

  .about-cta-inner {
    padding: 32px 20px;
    border-radius: 14px;
  }

  .about-cta-inner h2 {
    font-size: clamp(22px, 5vw, 30px);
  }

  .about-tagline {
    padding: 20px 0;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding: 100px 0 60px;
  }

  .about-hero h1 {
    font-size: 26px;
  }

  .about-hero p {
    font-size: 14px;
  }

  .about-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-about-primary,
  .btn-about-secondary {
    justify-content: center;
    min-height: 48px; /* Touch-friendly */
  }

  .about-who-stats {
    flex-direction: column;
    gap: 16px;
  }

  .about-who-img-wrapper img {
    height: 220px;
  }

  .about-why-grid {
    grid-template-columns: 1fr;
  }

  .about-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  /* Curved Process Mobile Refinements */
  .curved-process {
    padding: 50px 0 60px;
  }

  .cp-header {
    margin-bottom: 40px;
    padding: 0 16px;
  }

  .cp-wrapper {
    padding: 0 16px;
  }

  .cp-anchor-visual {
    width: 75px;
    height: 75px;
    padding: 8px;
    border-radius: 18px;
  }

  .cp-anchor {
    margin-bottom: 36px;
  }

  .cp-anchor-end {
    margin-top: 36px;
  }

  .cp-anchor-label {
    font-size: 11px;
  }

  .cp-step {
    margin-bottom: 28px;
  }

  .cp-step-card {
    max-width: 100%;
    padding: 20px 18px;
    min-height: 48px; /* Touch-friendly */
  }

  .cp-step-card h3 {
    font-size: 16px;
  }

  .cp-step-card p {
    font-size: 13px;
    line-height: 1.65;
  }

  .cp-step-icon {
    width: 44px;
    height: 44px;
  }

  .cp-step-num {
    font-size: 12px;
  }

  /* Adjust vertical line for smaller screens */
  .cp-wrapper::before,
  .cp-wrapper::after {
    top: 100px;
    bottom: 100px;
  }
}
