/* =====================================================================
   RE Trust 홈페이지 리뉴얼 — 디자인 토큰 + 신규 섹션 스타일
   - SecurityHero(RMF/TracerAI): 인디고→바이올렛 (로고 네이비와 연결)
   - InsuRE Trust(보험): 그린→옐로우
   - 모든 신규 클래스는 rn- 프리픽스로 스코프
   ===================================================================== */

:root {
  /* SecurityHero — 네이비→인디고→바이올렛 */
  --sh-navy: #1e2a78;
  --sh-primary: #4338ca;
  --sh-violet: #6d28d9;
  --sh-bg-tint: #f5f3ff;
  --sh-gradient: linear-gradient(135deg, #1e2a78 0%, #4338ca 55%, #6d28d9 100%);

  /* InsuRE Trust — 그린→옐로우 */
  --it-primary: #15a34a;
  --it-deep: #15803d;
  --it-accent: #facc15;
  --it-bg-tint: #f0fdf4;
  --it-gradient: linear-gradient(135deg, #15803d 0%, #22c55e 60%, #facc15 100%);

  /* 융합(보안+보험) */
  --fusion-gradient: linear-gradient(120deg, #4338ca 0%, #6d28d9 42%, #22c55e 100%);

  /* 뉴트럴 */
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e8eaf0;
  --bg-soft: #f8fafc;

  --radius: 20px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 16px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 14px 40px rgba(15, 23, 42, 0.1);
  --shadow-brand: 0 20px 50px rgba(67, 56, 202, 0.22);

  --maxw: 1200px;
}

/* 공통 컨테이너 */
.rn-wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.rn-eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.rn-section-title {
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.3;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  /* 한글 단어가 줄 끝에서 중간에 끊기지 않도록 */
  word-break: keep-all;
  overflow-wrap: break-word;
}

.rn-section-sub {
  margin-top: 16px;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  color: var(--muted);
}

/* =====================================================================
   1) HERO — 융합 그라데이션
   ===================================================================== */
.rn-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: radial-gradient(120% 120% at 80% 0%, #6d28d9 0%, #4338ca 38%, #1e2a78 72%, #0f1a4d 100%);
  color: #fff;
}
.rn-hero::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -40%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.35) 0%, rgba(34, 197, 94, 0) 60%);
  pointer-events: none;
}
.rn-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 120px 24px 110px;
}
.rn-hero .rn-eyebrow {
  color: #c4b5fd;
}
.rn-hero h1 {
  font-size: clamp(32px, 5.2vw, 60px);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: none;
  word-break: keep-all;
}
.rn-hero-en {
  margin-top: 14px;
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.01em;
}
/* 모든 요소에 일본어 폰트를 폴백으로 추가 (한자 누락 방지) */
* {
  font-family: "Noto Sans KR", "Noto Sans JP", sans-serif;
}
/* 일본어 버전: 모든 요소에 Noto Sans JP 우선 — 명시적 font-family(예: "Noto Sans")까지 강제 덮어쓰기 */
html[lang="ja"],
html[lang="ja"] body,
html[lang="ja"] *,
html[lang="ja"] *::before,
html[lang="ja"] *::after {
  font-family: "Noto Sans JP", "Noto Sans KR", sans-serif !important;
}
/* 일본어는 띄어쓰기가 없어 word-break:keep-all 시 줄바꿈이 안 됨(우측 넘침)
   → 일본어에서는 일반 줄바꿈 규칙을 사용 */
html[lang="ja"] .rn-section-title,
html[lang="ja"] .rn-hero h1,
html[lang="ja"] .web3-echo h2 {
  word-break: normal;
  overflow-wrap: anywhere;
}

/* 언어 선택 국기 아이콘 */
.lang-flag {
  width: 22px;
  height: 15px;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: block;
  flex: 0 0 auto;
}
.lang-option {
  gap: 8px;
}

/* 영문 버전에서는 영문 타이틀과 중복되는 서브라인 숨김 */
html[lang="en"] .rn-hero-en {
  display: none;
}
/* 영문은 라틴 문자라 더 넓은 폭이 필요 — 의도한 줄 수 유지 */
html[lang="en"] .rn-hero-desc {
  max-width: 58ch;
}
html[lang="en"] .rn-why-head {
  max-width: 1120px;
}
.rn-hero-desc {
  margin-top: 24px;
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
  max-width: 46ch;
}
.rn-hero-cta {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.rn-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  text-decoration: none;
}
.rn-btn-primary {
  background: #fff;
  color: var(--sh-primary);
}
.rn-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}
.rn-btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.rn-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}
.rn-hero-trust {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 28px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}
.rn-hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.rn-hero-trust span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
}

/* =====================================================================
   2) WHY — 문제 정의 (순화된 B2B 톤)
   ===================================================================== */
.rn-why {
  width: 100%;
  background: var(--bg-soft);
  padding: 96px 0;
}
.rn-why .rn-eyebrow {
  color: var(--sh-primary);
}
.rn-why-head {
  max-width: 940px;
}
.rn-stats {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rn-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}
.rn-stat-num {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--sh-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rn-stat-label {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 600;
}
.rn-stat-src {
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
}

/* =====================================================================
   3) STEPS — 사전예방 → 사후케어 → 보험보상
   ===================================================================== */
.rn-steps {
  width: 100%;
  padding: 96px 0;
}
.rn-steps .rn-eyebrow {
  color: var(--sh-primary);
}
.rn-steps-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
/* 연결형 스테퍼 (카드 X — 연결선 + 노드 + 고스트 넘버) */
.rn-flow {
  position: relative;
  margin-top: 76px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.rn-flow-rail {
  position: absolute;
  top: 46px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, var(--sh-primary) 0%, var(--sh-violet) 55%, #cbd5e1 88%);
  z-index: 0;
}
.rn-flow-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 10px;
}
.rn-flow-top {
  position: relative;
  height: 92px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
/* 큰 고스트 넘버 (배경) */
.rn-flow-num {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: Inter, Arial, sans-serif;
  font-size: 104px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  z-index: 0;
  background: var(--fusion-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.1;
  user-select: none;
}
/* 원형 노드 (레일 위) */
.rn-flow-node {
  position: relative;
  z-index: 1;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 34px rgba(67, 56, 202, 0.28);
  border: 5px solid #fff;
}
.rn-flow-node svg {
  width: 38px;
  height: 38px;
  stroke: #fff;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.is-prevent .rn-flow-node { background: var(--sh-gradient); }
.is-care .rn-flow-node { background: linear-gradient(135deg, #6d28d9, #4338ca); }
.is-claim .rn-flow-node {
  background: var(--it-gradient);
  box-shadow: 0 16px 34px rgba(21, 163, 74, 0.28);
}
/* 준비중(미구현) 스텝 — 회색 처리 */
.is-soon .rn-flow-node {
  background: linear-gradient(135deg, #94a3b8, #cbd5e1) !important;
  box-shadow: 0 12px 26px rgba(100, 116, 139, 0.25) !important;
}
.is-soon .rn-flow-num {
  background: linear-gradient(135deg, #94a3b8, #cbd5e1) !important;
  -webkit-background-clip: text;
  background-clip: text;
}
.is-soon .rn-flow-tag { color: #94a3b8 !important; }
.is-soon h3 { color: #94a3b8 !important; }
.is-soon p { color: #aab4c2 !important; }
.rn-flow-soon {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(40px);
  z-index: 2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  background: #94a3b8;
  padding: 4px 9px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(100, 116, 139, 0.3);
}
.rn-flow-tag {
  display: inline-block;
  margin-top: 22px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.is-prevent .rn-flow-tag,
.is-care .rn-flow-tag { color: var(--sh-primary); }
.is-claim .rn-flow-tag { color: var(--it-deep); }
.rn-flow-step h3 {
  margin-top: 6px;
  font-size: 21px;
  font-weight: 800;
  color: var(--ink);
}
.rn-flow-step p {
  margin: 12px auto 0;
  max-width: 300px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted);
}

/* =====================================================================
   4) PRODUCTS — RMF / TracerAI / InsuRE Trust
   ===================================================================== */
.rn-products {
  width: 100%;
  padding: 40px 0 96px;
}
.rn-products-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.rn-products-head .rn-eyebrow { color: var(--sh-primary); }

.rn-product {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
}
.rn-product + .rn-product {
  border-top: 1px solid var(--line);
}
.rn-product.is-reverse .rn-product-media {
  order: -1;
}
.rn-product-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.rn-product-brand img.rn-brand-logo {
  height: 30px;
  width: auto;
}
.rn-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.rn-chip.sh { background: var(--sh-gradient); }
.rn-chip.it { background: var(--it-gradient); color: #14532d; }
.rn-product h3 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.25;
}
.rn-product-tagline {
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 600;
}
.rn-product-desc {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}
.rn-features {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.rn-feature {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink);
}
.rn-feature .rn-check {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
  margin-top: 1px;
}
.is-sh .rn-feature .rn-check { background: var(--sh-primary); }
.is-it .rn-feature .rn-check { background: var(--it-primary); }
.rn-badges {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.rn-badge {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--muted);
}
.rn-product-cta {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.rn-btn-sh {
  background: var(--sh-gradient);
  color: #fff;
}
.rn-btn-sh:hover { transform: translateY(-2px); box-shadow: var(--shadow-brand); }
.rn-btn-it {
  background: var(--it-gradient);
  color: #14532d;
}
.rn-btn-it:hover { transform: translateY(-2px); box-shadow: 0 20px 50px rgba(21, 163, 74, 0.25); }
.rn-btn-outline {
  background: #fff;
  border: 1.5px solid var(--line);
  color: var(--ink);
}
.rn-btn-outline:hover { border-color: var(--sh-primary); color: var(--sh-primary); }
.rn-btn-soft {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--muted);
  cursor: default;
}

/* 제품 미디어(스크린샷 목업) */
.rn-product-media {
  position: relative;
}
.rn-mockup {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow-md);
}
.rn-mockup.sh {
  background: var(--sh-gradient);
}
.rn-mockup.it {
  background: var(--it-gradient);
}
.rn-mockup img {
  width: 100%;
  display: block;
  border-radius: 14px;
  background: #fff;
}
.rn-mockup-thumbs {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.rn-mockup-thumbs img {
  width: 100%;
  border-radius: 12px;
  display: block;
  border: 3px solid rgba(255, 255, 255, 0.6);
}
/* InsuRE Trust 로고 */
.rn-it-logo {
  height: 34px;
  width: auto;
}
/* 취급 상품 태그 */
.rn-tags {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.rn-tag {
  font-size: 13px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--it-deep);
  background: var(--it-bg-tint);
  border: 1px solid rgba(21, 163, 74, 0.25);
}

/* InsuRE Trust: 실제 기기(iPhone·Galaxy) 합성 쇼케이스 */
.rn-devices {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 44px 24px 0;
  background: var(--it-gradient);
  box-shadow: var(--shadow-md);
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.rn-devices::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 50% 0%, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0) 58%);
  pointer-events: none;
}
.rn-device {
  position: relative;
  z-index: 1;
  display: block;
  filter: drop-shadow(0 24px 40px rgba(15, 23, 42, 0.3));
}
.rn-device.galaxy {
  width: 52%;
  max-width: 236px;
  z-index: 2;
  transform: rotate(3deg) translateY(6px);
}
.rn-device.iphone {
  width: 44%;
  max-width: 198px;
  margin-right: -12%;
  transform: rotate(-6deg) translateY(46px);
  z-index: 1;
}

/* ===== 리트러스트 솔루션 그리드 (리디자인 — 기존 클래스 유지) ===== */
.all-view {
  width: 100% !important;
  max-width: var(--maxw) !important;
  margin: 0 auto !important;
  padding: 24px 24px 64px !important;
}
.all-view h2 {
  font-size: clamp(28px, 4vw, 40px) !important;
  font-weight: 800 !important;
  color: var(--ink) !important;
  text-align: center !important;
  padding-bottom: 40px !important;
  letter-spacing: -0.02em;
}
.view-grid-box {
  width: 100% !important;
  grid-template-columns: repeat(4, 1fr) !important;
  grid-template-rows: none !important;
  gap: 20px !important;
}
.view-grid-item {
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04) !important;
  border: 1px solid var(--line) !important;
  border-radius: 22px !important;
  background: #fff !important;
  padding: 28px 26px !important;
  min-height: 0 !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  text-align: center !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
}
/* 상단 그라데이션 액센트 (호버 시 확장) */
.view-grid-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--sh-gradient);
  transition: width 0.35s ease;
}
.view-grid-item:hover::before { width: 100%; }
.view-grid-item:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 22px 48px rgba(67, 56, 202, 0.16) !important;
  border-color: transparent !important;
}
/* 클릭 유도 화살표 */
.view-grid-item::after {
  content: "↗";
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 18px;
  font-weight: 700;
  color: var(--line);
  transition: color 0.25s ease, transform 0.25s ease;
}
.view-grid-item:hover::after {
  color: var(--sh-primary);
  transform: translate(2px, -2px);
}
.view-grid-item-title { text-align: center; width: 100%; }
/* 아이콘(위) + 제목(아래) 세로 중앙정렬 — 그라데이션 칩 + 화이트 아이콘 */
.vg-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.vg-chip {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--sh-gradient);
  box-shadow: 0 8px 18px rgba(67, 56, 202, 0.25);
}
.vg-icon {
  width: 24px !important;
  height: 24px !important;
  /* 어두운 라인 아이콘을 화이트로 */
  filter: brightness(0) invert(1);
}
.view-grid-item-title span {
  font-size: 17px !important;
  font-weight: 800 !important;
  color: var(--ink) !important;
  line-height: 1.3;
}
.view-grid-item-title p {
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: var(--muted) !important;
}

/* =====================================================================
   반응형
   ===================================================================== */
@media (max-width: 1024px) {
  .rn-product {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .rn-product.is-reverse .rn-product-media { order: 0; }
  .rn-product-media { max-width: 640px; margin: 0 auto; width: 100%; }
  .view-grid-box { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
  .rn-hero-inner { padding: 88px 24px 72px; }
  .rn-why, .rn-steps { padding: 64px 0; }
  .rn-products { padding: 24px 0 64px; }
  .rn-stats { grid-template-columns: 1fr; }
  .rn-flow { grid-template-columns: 1fr; gap: 12px; margin-top: 56px; }
  .rn-flow-rail { display: none; }
  .rn-flow-step { padding-bottom: 28px; }
  .rn-flow-num { top: -24px; font-size: 84px; }
  .rn-products-head { margin-bottom: 40px; }
  .rn-product { padding: 40px 0; }
  .rn-features { grid-template-columns: 1fr; }
  .rn-hero-cta .rn-btn,
  .rn-product-cta .rn-btn { flex: 1 1 auto; justify-content: center; }
}

/* ===== Web3 → 스테이블코인 시대 섹션 ===== */
.web3-echo h2 {
  font-size: clamp(28px, 4.4vw, 52px) !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  letter-spacing: -0.02em !important;
  color: var(--ink) !important;
  text-align: center;
  max-width: 18ch;
  margin: 0 auto;
  word-break: keep-all;
}
.web3-echo-sub {
  max-width: 820px;
  margin: 18px auto 0;
  text-align: center;
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.7;
  color: var(--muted);
}
.web3-echo .web3-echo-image-wrap {
  width: 100% !important;
  max-width: 900px !important;
  margin: 44px auto 0 !important;
  padding: 0 24px;
}
.web3-echo .web3-echo-image-wrap img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 30px 60px rgba(49, 27, 107, 0.28);
}

/* ===== 푸터 정리 (3줄, 두 주소) ===== */
.footer-info {
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 14px !important;
}
.footer-info-list ul {
  gap: 6px !important;
}
.footer-info-list ul li {
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: #8b94a3 !important;
}
.footer .copyright {
  text-align: right !important;
  font-size: 13px !important;
}
@media (max-width: 768px) {
  .footer-info-list ul li { font-size: 12.5px !important; }
  .footer .copyright { text-align: left !important; }
}

@media (max-width: 600px) {
  .view-grid-box { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
  .rn-wrap, .rn-hero-inner { padding-left: 18px; padding-right: 18px; }
  .rn-stat, .rn-step { padding: 26px 22px; }
  .rn-devices { min-height: 360px; padding: 32px 12px 0; }
  .rn-device.galaxy { max-width: 200px; }
  .rn-device.iphone { max-width: 160px; }
}
