/* BASIC css start */
/* ================================================
   팬시피아 회사소개 페이지 - about.css
   메이크샵 업로드용 (스킨관리 > 파일업로드 후
   <link rel="stylesheet" href="/design/파일명.css"> 로 불러오세요)
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Jua&family=Noto+Sans+KR:wght@400;500;700;900&display=swap');

/* ──────────────────────────────────────
   CSS 변수 (브랜드 컬러 시스템)
────────────────────────────────────── */
:root {
  --fp-coral:    #FF6B35;
  --fp-yellow:   #FFD23F;
  --fp-mint:     #06D6A0;
  --fp-sky:      #74C0FC;
  --fp-pink:     #FF9DC5;
  --fp-navy:     #1A1A2E;
  --fp-dark:     #2D2D44;
  --fp-gray:     #6B7280;
  --fp-light:    #FFF5F8;
  --fp-white:    #FFFFFF;
  --fp-cream:    #FFFAF4;

  --shadow-sm:   0 2px 8px rgba(26,26,46,0.08);
  --shadow-md:   0 8px 24px rgba(26,26,46,0.12);
  --shadow-lg:   0 20px 60px rgba(26,26,46,0.16);
  --radius-sm:   12px;
  --radius-md:   20px;
  --radius-lg:   32px;
  --radius-full: 999px;
}

/* ──────────────────────────────────────
   리셋 & 기본
────────────────────────────────────── */
.fp-about-wrap * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.fp-about-wrap {
  font-family: 'Noto Sans KR', sans-serif;
  color: var(--fp-dark);
  background: var(--fp-cream);
  overflow-x: hidden;
  line-height: 1.6;
}
.fp-about-wrap img { max-width: 100%; height: auto; }
.fp-about-wrap a { text-decoration: none; color: inherit; }

/* ──────────────────────────────────────
   섹션 공통
────────────────────────────────────── */
.fp-section {
  padding: 80px 20px;
}
.fp-container {
  max-width: 1100px;
  margin: 0 auto;
}
.fp-section-label {
  display: inline-block;
  font-family: 'Jua', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fp-coral);
  background: rgba(255,107,53,0.1);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.fp-section-title {
  font-family: 'Jua', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--fp-navy);
  line-height: 1.3;
  margin-bottom: 16px;
}
.fp-section-title em {
  color: var(--fp-coral);
  font-style: normal;
}
.fp-section-desc {
  font-size: 16px;
  color: var(--fp-gray);
  max-width: 600px;
  line-height: 1.8;
}

/* ──────────────────────────────────────
   01. 히어로 섹션
────────────────────────────────────── */
.fp-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #FFF0F5 0%, #FFFBEA 45%, #F0FFF8 100%);
  padding: 100px 20px;
}

/* 배경 도트 패턴 */
.fp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,107,53,0.12) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* 컬러 블롭 */
.fp-hero-blob1 {
  position: absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255,157,197,0.45) 0%, transparent 70%);
  top: -120px;
  right: -100px;
  border-radius: 50%;
  animation: fp-float1 8s ease-in-out infinite;
}
.fp-hero-blob2 {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255,210,63,0.4) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
  border-radius: 50%;
  animation: fp-float2 10s ease-in-out infinite;
}

@keyframes fp-float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 30px) scale(1.1); }
}
@keyframes fp-float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
}

.fp-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.fp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,53,0.12);
  border: 1px solid rgba(255,107,53,0.35);
  color: var(--fp-coral);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.fp-hero-badge::before {
  content: '★';
  font-size: 12px;
}

.fp-hero-title {
  font-family: 'Jua', sans-serif;
  font-size: clamp(32px, 5vw, 58px);
  color: var(--fp-navy);
  line-height: 1.25;
  margin-bottom: 24px;
  word-break: keep-all;
}
.fp-hero-title .fp-hl {
  color: var(--fp-coral);
  position: relative;
  display: inline-block;
}
.fp-hero-title .fp-hl::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--fp-yellow);
  border-radius: 3px;
  opacity: 0.6;
  z-index: -1;
}

.fp-hero-sub {
  font-size: 17px;
  color: #555568;
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 520px;
  word-break: keep-all;
}

.fp-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.fp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--fp-coral);
  color: var(--fp-white);
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(255,107,53,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}
.fp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,107,53,0.5);
}
.fp-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--fp-white);
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 500;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
}
.fp-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

/* 히어로 우측 - 부유하는 아이콘 박스 */
.fp-hero-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  flex-shrink: 0;
}
.fp-icon-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,107,53,0.15);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(255,107,53,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.fp-icon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(255,107,53,0.14);
}
.fp-icon-card:nth-child(even) {
  margin-top: 24px;
}
.fp-icon-card .fp-ic-emoji {
  font-size: 32px;
  display: block;
  margin-bottom: 8px;
}
.fp-icon-card .fp-ic-label {
  font-size: 12px;
  color: var(--fp-dark);
  font-weight: 700;
}

/* ──────────────────────────────────────
   02. 브랜드 스토리 섹션
────────────────────────────────────── */
.fp-story {
  background: var(--fp-white);
}
.fp-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.fp-story-visual {
  position: relative;
}
.fp-story-card-main {
  background: linear-gradient(135deg, var(--fp-coral), #ff8c5a);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: white;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.fp-story-card-main::after {
  content: '🎪';
  position: absolute;
  font-size: 120px;
  right: -20px;
  bottom: -20px;
  opacity: 0.15;
  transform: rotate(10deg);
}
.fp-story-card-main .fp-big-text {
  font-family: 'Jua', sans-serif;
  font-size: 58px;
  line-height: 1;
  margin-bottom: 8px;
}
.fp-story-card-main .fp-small-text {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.8;
}

.fp-story-card-sub {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--fp-yellow);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.fp-story-card-sub .fp-sc-num {
  font-family: 'Jua', sans-serif;
  font-size: 28px;
  color: var(--fp-navy);
  line-height: 1;
}
.fp-story-card-sub .fp-sc-label {
  font-size: 12px;
  color: var(--fp-dark);
  font-weight: 700;
}

.fp-story-text .fp-story-quote {
  font-family: 'Jua', sans-serif;
  font-size: 22px;
  color: var(--fp-navy);
  line-height: 1.6;
  margin-bottom: 24px;
  padding-left: 20px;
  border-left: 4px solid var(--fp-coral);
  word-break: keep-all;
}
.fp-story-text p {
  font-size: 15px;
  color: var(--fp-gray);
  line-height: 1.9;
  margin-bottom: 16px;
  word-break: keep-all;
}

.fp-story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.fp-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
}
.fp-tag--coral  { background: rgba(255,107,53,0.1);  color: var(--fp-coral); }
.fp-tag--yellow { background: rgba(255,210,63,0.15); color: #B8860B; }
.fp-tag--mint   { background: rgba(6,214,160,0.1);   color: #038B6E; }
.fp-tag--sky    { background: rgba(116,192,252,0.15);color: #1E78C0; }

/* ──────────────────────────────────────
   03. 숫자로 보는 팬시피아 (stats)
────────────────────────────────────── */
.fp-stats {
  background: var(--fp-navy);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
.fp-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.fp-stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.fp-stat-item {
  padding: 48px 32px;
  text-align: center;
  position: relative;
}
.fp-stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}
.fp-stat-item:last-child::after { display: none; }

.fp-stat-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 16px;
  animation: fp-bounce 2s ease-in-out infinite;
}
.fp-stat-item:nth-child(2) .fp-stat-icon { animation-delay: 0.3s; }
.fp-stat-item:nth-child(3) .fp-stat-icon { animation-delay: 0.6s; }
.fp-stat-item:nth-child(4) .fp-stat-icon { animation-delay: 0.9s; }

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

.fp-stat-number {
  font-family: 'Jua', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  color: var(--fp-yellow);
  line-height: 1;
  margin-bottom: 8px;
}
.fp-stat-unit {
  font-family: 'Jua', sans-serif;
  font-size: 22px;
  color: var(--fp-coral);
}
.fp-stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  margin-bottom: 8px;
}
.fp-stat-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ──────────────────────────────────────
   04. 핵심 강점 (Features)
────────────────────────────────────── */
.fp-features {
  background: var(--fp-light);
}
.fp-features-header {
  text-align: center;
  margin-bottom: 60px;
}
.fp-features-header .fp-section-desc {
  margin: 0 auto;
}
.fp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fp-feature-card {
  background: var(--fp-white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.fp-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.fp-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.fp-feature-card--coral::before { background: var(--fp-coral); }
.fp-feature-card--yellow::before { background: var(--fp-yellow); }
.fp-feature-card--mint::before { background: var(--fp-mint); }
.fp-feature-card--sky::before { background: var(--fp-sky); }
.fp-feature-card--pink::before { background: var(--fp-pink); }
.fp-feature-card--navy::before { background: var(--fp-navy); }

.fp-feature-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 20px;
}
.fp-feature-card--coral  .fp-feature-icon-wrap { background: rgba(255,107,53,0.1); }
.fp-feature-card--yellow .fp-feature-icon-wrap { background: rgba(255,210,63,0.12); }
.fp-feature-card--mint   .fp-feature-icon-wrap { background: rgba(6,214,160,0.1); }
.fp-feature-card--sky    .fp-feature-icon-wrap { background: rgba(116,192,252,0.12); }
.fp-feature-card--pink   .fp-feature-icon-wrap { background: rgba(255,157,197,0.12); }
.fp-feature-card--navy   .fp-feature-icon-wrap { background: rgba(26,26,46,0.06); }

.fp-feature-title {
  font-family: 'Jua', sans-serif;
  font-size: 20px;
  color: var(--fp-navy);
  margin-bottom: 12px;
}
.fp-feature-text {
  font-size: 14px;
  color: var(--fp-gray);
  line-height: 1.8;
  word-break: keep-all;
}

/* ──────────────────────────────────────
   05. 이용 고객 유형
────────────────────────────────────── */
.fp-customers {
  background: var(--fp-white);
}
.fp-customers-header {
  text-align: center;
  margin-bottom: 60px;
}
.fp-customers-header .fp-section-desc {
  margin: 0 auto;
}
.fp-customers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.fp-customer-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 24px;
  border-radius: var(--radius-md);
  border: 1.5px solid #F0EDE8;
  background: var(--fp-cream);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.fp-customer-card:hover {
  border-color: var(--fp-coral);
  box-shadow: var(--shadow-sm);
}
.fp-customer-emoji {
  font-size: 40px;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: var(--fp-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.fp-customer-info h3 {
  font-family: 'Jua', sans-serif;
  font-size: 18px;
  color: var(--fp-navy);
  margin-bottom: 6px;
}
.fp-customer-info p {
  font-size: 13px;
  color: var(--fp-gray);
  line-height: 1.7;
  word-break: keep-all;
}
.fp-customer-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.fp-keyword {
  font-size: 11px;
  font-weight: 700;
  color: var(--fp-coral);
  background: rgba(255,107,53,0.08);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

/* ──────────────────────────────────────
   06. 구매 프로세스 (How to)
────────────────────────────────────── */
.fp-process {
  background: linear-gradient(135deg, #FFF0F8 0%, #FFFBEA 100%);
}
.fp-process-header {
  text-align: center;
  margin-bottom: 60px;
}
.fp-process-header .fp-section-desc {
  margin: 0 auto;
}
.fp-process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.fp-process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(to right, var(--fp-coral), var(--fp-yellow), var(--fp-mint));
  z-index: 0;
}
.fp-step {
  flex: 1;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.fp-step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s;
}
.fp-step:hover .fp-step-circle {
  transform: scale(1.1);
}
.fp-step:nth-child(1) .fp-step-circle { background: var(--fp-coral); }
.fp-step:nth-child(2) .fp-step-circle { background: var(--fp-yellow); }
.fp-step:nth-child(3) .fp-step-circle { background: var(--fp-mint); }
.fp-step:nth-child(4) .fp-step-circle { background: var(--fp-sky); }
.fp-step:nth-child(5) .fp-step-circle { background: var(--fp-pink); }

.fp-step-num {
  font-family: 'Jua', sans-serif;
  font-size: 11px;
  color: var(--fp-gray);
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.fp-step-title {
  font-family: 'Jua', sans-serif;
  font-size: 16px;
  color: var(--fp-navy);
  margin-bottom: 6px;
}
.fp-step-desc {
  font-size: 12px;
  color: var(--fp-gray);
  line-height: 1.6;
}

/* ──────────────────────────────────────
   07. 미션/비전/가치
────────────────────────────────────── */
.fp-values {
  background: var(--fp-white);
}
.fp-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.fp-value-item {
  text-align: center;
  padding: 48px 28px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.fp-value-item--mission {
  background: linear-gradient(135deg, var(--fp-navy), #2D2D60);
  color: white;
}
.fp-value-item--vision {
  background: linear-gradient(135deg, var(--fp-coral), #FF8C5A);
  color: white;
}
.fp-value-item--promise {
  background: linear-gradient(135deg, #FFD23F, #FFBD12);
  color: var(--fp-navy);
}
.fp-value-bg {
  position: absolute;
  font-size: 120px;
  opacity: 0.08;
  right: -20px;
  bottom: -20px;
  transform: rotate(-15deg);
  pointer-events: none;
}
.fp-value-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 20px;
}
.fp-value-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 12px;
  display: block;
}
.fp-value-title {
  font-family: 'Jua', sans-serif;
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 16px;
  word-break: keep-all;
}
.fp-value-text {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.8;
  word-break: keep-all;
}

/* ──────────────────────────────────────
   08. 고객센터 / 연락처 배너
────────────────────────────────────── */
.fp-contact-banner {
  background: linear-gradient(135deg, var(--fp-coral) 0%, #FF8C5A 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fp-contact-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 24px 24px;
}
.fp-contact-banner-inner {
  position: relative;
  z-index: 1;
}
.fp-contact-banner h2 {
  font-family: 'Jua', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--fp-white);
  margin-bottom: 16px;
  word-break: keep-all;
}
.fp-contact-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  line-height: 1.8;
}
.fp-contact-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.fp-contact-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  min-width: 200px;
  text-align: center;
  transition: background 0.2s;
}
.fp-contact-card:hover {
  background: rgba(255,255,255,0.25);
}
.fp-contact-card .fp-cc-icon { font-size: 28px; margin-bottom: 8px; }
.fp-contact-card .fp-cc-label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.fp-contact-card .fp-cc-value {
  font-family: 'Jua', sans-serif;
  font-size: 18px;
  color: var(--fp-white);
}

/* ──────────────────────────────────────
   스크롤 등장 애니메이션
────────────────────────────────────── */
.fp-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fp-reveal.fp-visible {
  opacity: 1;
  transform: translateY(0);
}
.fp-reveal-delay-1 { transition-delay: 0.1s; }
.fp-reveal-delay-2 { transition-delay: 0.2s; }
.fp-reveal-delay-3 { transition-delay: 0.3s; }
.fp-reveal-delay-4 { transition-delay: 0.4s; }
.fp-reveal-delay-5 { transition-delay: 0.5s; }

/* ──────────────────────────────────────
   반응형 (태블릿 / 모바일)
────────────────────────────────────── */
@media (max-width: 900px) {
  .fp-section { padding: 60px 20px; }
  .fp-hero-content { grid-template-columns: 1fr; }
  .fp-hero-icons { display: none; }
  .fp-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .fp-story-card-sub { position: static; margin-top: 16px; display: inline-block; }
  .fp-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .fp-stat-item::after { display: none; }
  .fp-features-grid { grid-template-columns: repeat(2, 1fr); }
  .fp-values-grid { grid-template-columns: 1fr; gap: 20px; }
  .fp-customers-grid { grid-template-columns: 1fr; }
  .fp-process-steps { flex-direction: column; align-items: center; gap: 24px; }
  .fp-process-steps::before { display: none; }
}

@media (max-width: 600px) {
  .fp-features-grid { grid-template-columns: 1fr; }
  .fp-stats-grid { grid-template-columns: 1fr 1fr; }
  .fp-hero-title { font-size: 30px; }
  .fp-contact-cards { flex-direction: column; align-items: center; }
}
/* BASIC css end */

