  :root {
	--hero-h: 100vh;
  }

  * {
	box-sizing: border-box;
  }

  body {
	margin: 0;
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	color: #fff;
	background: #000;
  }

  /* ===== 섹션 1 ===== */
  .scrolly {
	position: relative;
  }

  .sticky-wrap {
	position: sticky;
	top: 0;
	height: var(--hero-h);
	overflow: hidden;
	background: #000;
  }

  .bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	user-select: none;
	pointer-events: none;
  }

  .Overlay {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 0 6vw;
  }

  .Overlay::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: -1;
  }

  .headline {
	position: relative;
	z-index: 2;
	margin: 0;
	text-align: center;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
	line-height: 1.25;
  }

  .headline .big {
	display: block;
	font-weight: 800;
	font-size: clamp(2.8rem, 7.8vw, 5.4rem);
  }

  .headline .small {
	display: block;
	margin-top: 0.5rem;
	font-weight: 500;
	font-size: clamp(1rem, 2.8vw, 1.55rem);
  }

  .swap {
	animation: swapIn 0.6s ease-out both;
  }

  @keyframes swapIn {
	from {
	  opacity: 0;
	  transform: translate3d(0, 1rem, 0);
	}
	to {
	  opacity: 1;
	  transform: none;
	}
  }

  .step {
	height: 60vh;
  }

  .m-headline {
	display: none;
  }
  .m-headline-wrap,
  .m-step,
  .m-tail {
	display: none;
  }

  @media (max-width: 900px) {
	.step { display: none; }
	.headline {
	  display: none;
	}
	.m-headline-wrap {
	  display: block;
	}
	.m-step,
	.m-tail {
	  display: block;
	}
  }

  @media (max-width: 900px) {
	.headline {
	  display: none;
	}
	.m-headline {
	  display: block;
	  text-align: center;
	}
	.m-headline .mline {
	  display: block;
	  opacity: 0;
	  transform: translate3d(0, 10px, 0);
	  transition: opacity 0.5s ease, transform 0.5s ease;
	  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
	}
	.m-headline .mline.big {
	  font-weight: 800;
	  font-size: clamp(24px, 8.6vw, 40px);
	  line-height: 1.2;
	  margin-bottom: 8px;
	}
	.m-headline .mline.sub {
	  font-weight: 700;
	  font-size: clamp(14px, 4.4vw, 18px);
	  line-height: 1.3;
	}
	.m-headline .mline.on {
	  opacity: 1;
	  transform: none;
	}

	.mline {
	  display: block;
	  text-align: center;
	  line-height: 1.4;
	  opacity: 0;
	  transform: translateY(20px);
	  transition: opacity 0.6s ease, transform 0.6s ease;
	}
	.mline.big {
	  font-size: clamp(1.6rem, 15vw, 4.2rem);
	  font-weight: 800;
	  margin-bottom: 30px;
	}
	.mline.sub {
	  font-size: clamp(1rem, 4.5vw, 1.4rem);
	  font-weight: 500;
	}
	.mline.on {
	  opacity: 1;
	  transform: translateY(0);
	}
	.mline.always {
	  opacity: 1 !important;
	  transform: none !important;
	}
	.m-step {
	  height: 30vh;
	}
	.m-tail {
	  height: 20vh;
	}
  }

  /* ===== 섹션 2 ===== */
  .hero2 {
	position: relative;
	background: #000;
	--r: clamp(90px, 19vw, 280px);
  }

  .sticky2 {
	position: sticky;
	top: 0;
	height: var(--hero-h);
	overflow: hidden;
  }

  .bg2 {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	user-select: none;
	pointer-events: none;
  }

  .overlay2 {
	position: absolute;
	inset: 0;
	transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .stone {
	position: absolute;
	left: 50%;
	top: 50%;
	width: clamp(90px, 16vw, 220px);
	height: auto;
	transform: translate(-50%, -50%) translate3d(0, 18px, 0);
	opacity: 0;
	filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.45));
	pointer-events: none;
	will-change: opacity, transform;
	transition: opacity 0.9s ease-out, transform 0.9s ease-out;
  }

  .hero2.show .stone {
	opacity: 1;
	transform: translate(-50%, -50%) translate3d(0, 0, 0);
  }

  .note {
	position: absolute;
	width: clamp(120px, 22vw, 320px);
	height: auto;
	left: 50%;
	top: 50%;
	transform:
	  translate(-50%, -50%)
	  rotate(var(--ang, 0deg)) translate(var(--rad, var(--r)))
	  rotate(calc(-1 * var(--ang, 0deg)))
	  translate3d(0, 16px, 0) scale(0.98);
	opacity: 0;
	filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.45));
	pointer-events: none;
	will-change: opacity, transform;
	transition: opacity 0.85s ease-out, transform 0.85s ease-out;
  }

  .note.tl { --ang: -150deg; }
  .note.tr { --ang: -30deg; }
  .note.br { --ang: 30deg; }
  .note.bl { --ang: 150deg; }

  .note.on {
	opacity: 1;
	transform:
	  translate(-50%, -50%)
	  rotate(var(--ang)) translate(var(--rad, var(--r)))
	  rotate(calc(-1 * var(--ang)))
	  translate3d(0, 0, 0) scale(1);
  }

  .note-step {
	height: 75vh;
  }

  .metrics-gate {
	height: 100vh;
  }

  .handoff-pad {
	height: clamp(40vh, 60vh, 80vh);
	background: transparent;
  }

  .yearWrap {
	position: absolute;
	inset: 0;
	padding: min(15vw, 215px) 6vw;
	display: grid;
	place-items: center;
	gap: 12px;
	opacity: 0;
	transform: translate3d(0, 14px, 0);
	transition: opacity 0.6s ease, transform 0.6s ease;
	pointer-events: none;
  }

  .year-cards {
	display: flex;
	align-items: flex-start;
	gap: clamp(12px, 3.2vw, 28px);
	max-height: clamp(180px, 40vh, 320px);
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .year-card {
	position: relative;
	width: min(300px, 26vw);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
	isolation: isolate;
  }

  .year-card img.bg {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
	transform: none;
  }

  .year-card::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 45%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
	z-index: 1;
  }

  .year-text {
	position: absolute;
	z-index: 2;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	color: #fff;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
	pointer-events: none;
  }

  .year-text.num {
	bottom: 60px;
	font-size: clamp(28px, 4.5vw, 75px);
	font-weight: 900;
	line-height: 1.1;
  }

  .year-text.desc {
	bottom: 14px;
	font-size: clamp(14px, 2vw, 18px);
	font-weight: 500;
	opacity: 0.9;
  }

  .yearHead {
	text-align: center;
	margin: 0 0 12px;
	position: relative;
  }

  .kicker {
	margin: 0 0 6px;
	position: relative;
	display: inline-block;
	padding: 10px 0;
  }

  .kicker::before,
  .kicker::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.45), transparent);
  }

  .kicker::before {
	top: 0;
  }

  .kicker::after {
	bottom: 0;
  }

  .kicker em {
	font-style: normal;
  }

  .kicker > span {
	display: inline;
	font-weight: 800;
	font-size: clamp(12px, 1.9vw, 14px);
	letter-spacing: 0.02em;
	line-height: 1.1;
	background: linear-gradient(90deg, #cfd8ff 0%, #fff 60%, #e2eaff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  }

  .headline-lg {
	margin: 2px 0 0;
	font-weight: 900;
	font-size: clamp(36px, 7.5vw, 72px);
	letter-spacing: -0.02em;
	text-shadow: 0 3px 14px rgba(0, 0, 0, 0.55);
  }

  .hero2.metrics .overlay2 {
	opacity: 0;
	transform: scale(0.985);
  }

  .hero2.metrics .yearWrap {
	opacity: 1;
	transform: none;
  }

  .hero2.metrics .year-cards {
	opacity: 1;
	transform: none;
  }

  @media (max-width: 900px) {
	:root {
	  --hero-h: 100svh;
	}
	.year-cards {
	  gap: 16px;
	}
	.year-card {
	  width: 30vw;
	  min-width: 180px;
	}
	.hero2 {
	  --r: clamp(70px, 22vw, 180px);
	}
	.stone {
	  width: 85%;
	}
	.note {
	  width: clamp(110px, 36vw, 220px);
	}
  }

  @media (prefers-reduced-motion: reduce) {
	.swap,
	.stone,
	.note,
	.yearWrap,
	.year-cards,
	.overlay2,
	.feature-img,
	.desc-img {
	  transition: none !important;
	  animation: none !important;
	}
  }

  @media (max-width: 900px) {
	.overlay2 {
	  position: relative;
	  width: 100%;
	  height: 100%;
	}
	.overlay2 .note {
	  position: absolute !important;
	  width: auto;
	  max-width: 35vw;
	  height: auto;
	  transform: none !important;
	}
	#note1 {
	  left: 49%;
	  top: 5%;
	  transform: translateX(-50%);
	  max-width: 35vw;
	}
	#note2 {
	  left: 20%;
	  top: 10%;
	  width: 31vw;
	}
	#note3 {
	  left: 20%;
	  top: 83%;
	  width: 31vw;
	}
	#note4 {
	  left: 49%;
	  top: 73%;
	  transform: translateX(-50%);
	  max-width: 35vw;
	}
  }

  /* ===== 섹션 3 ===== */
  .hero3 {
	position: relative;
	background: #000;
  }

  .sticky3 {
	position: sticky;
	top: 0;
	height: var(--hero-h);
	overflow: visible;
  }

  .bg3 {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	user-select: none;
	pointer-events: none;
	display: block;
	z-index: 1;
  }

  .overlay3 {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 0 6vw;
	z-index: 2;
	transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .feature-img {
	max-width: min(820px, 78vw);
	width: 100%;
	height: auto;
	opacity: 0;
	transform: translate3d(0, 18px, 0) scale(0.975);
	filter: drop-shadow(0 14px 40px rgba(0, 0, 0, 0.45));
	transition: opacity 0.9s ease, transform 0.9s ease;
	pointer-events: none;
	will-change: opacity, transform;
  }

  .hero3.show .feature-img {
	opacity: 1;
	transform: none;
  }

  .desc-img {
	position: absolute;
	left: 24%;
	top: 48%;
	transform: translate(0, 16px);
	opacity: 0;
	max-width: min(420px, 16vw);
	width: auto;
	height: auto;
	transition: opacity 0.8s ease, transform 0.8s ease;
	pointer-events: none;
	filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.4));
	z-index: 3;
  }

  .desc-img.on {
	opacity: 1;
	transform: translate(0, 0);
  }

  .desc-1 { left: 29.3%; top: 34%; }
  .desc-2 { left: 29.3%; top: 47%; }
  .desc-3 { left: 29.3%; top: 60%; }

  @media (min-width: 901px){
	.overlay3 {	display:grid; place-items:center; padding:0 6vw; position:absolute; inset:0; z-index:2; }
	.feature-box{
		position: relative;
		width: min(820px, 78vw);
		--guide-x: 10%;
	}
	.feature-box::before{
		content:"";
		position:absolute;
		left: var(--guide-x);
		top: 8%;
		bottom: 10%;
		filter: drop-shadow(0 0 6px rgba(0,0,0,.35));
		pointer-events:none;
		z-index: 3;
	}
	
	.feature-box .feature-img{
		display:block;
		width:100%;
		height:auto;
	}
	.feature-box .desc-img{
		position:absolute;
		left: var(--guide-x);
		transform: translateX(12px);
		max-width: min(420px, 16vw);
		width:auto; height:auto;
		z-index: 4;
		opacity:0; transition: opacity .8s ease, transform .8s ease;
		margin-top: 5%;
	}
	.feature-box .desc-img.on{
		opacity:1;
		transform: translateX(12px) translateY(0);
	}
	.feature-box .desc-1{ top: 33%; }
	.feature-box .desc-2{ top: 49%; }
	.feature-box .desc-3{ top: 65%; }
  }

  @media (max-width: 900px) {
	.desc-img {
	  left: 50%;
	  transform: translate(-50%, 16px);
	  max-width: min(420px, 53vw);
	}
	.desc-img.on {
	  transform: translate(-50%, 0);
	}
	.desc-1 { left: 52%; top: 14%; }
	.desc-2 { left: 52%; top: 24%; }
	.desc-3 { left: 52%; top: 35%; }
  }

  .desc-step {
	height: 70vh;
  }

  .desc-tail {
	height: 70vh;
  }

  @media (max-width: 900px) {
	.sticky3 {
	  height: 900px;
	}
	.year-cards {
	  flex-direction: column;
	  align-items: center;
	  gap: 18px;
	  max-height: none;
	}
	.year-card {
	  width: 75vw;
	  max-width: 300px;
	  height: 120px;
	  border-radius: 12px;
	  overflow: hidden;
	}
	.year-card img.bg {
	  width: 100%;
	  height: 100%;
	  object-fit: cover;
	}
	.year-text.num {
	  bottom: 40px;
	  font-size: clamp(20px, 15vw, 57px);
	}
	.year-text.desc {
	  bottom: 12px;
	  font-size: clamp(12px, 3.5vw, 14px);
	}
  }

  /* ===== 섹션 4 ===== */
  .hero4 {
	position: relative;
	background: #000;
  }

  .bg4 {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	user-select: none;
	pointer-events: none;
  }

  .overlay4 {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	z-index: 2;
  }

  .feature4-img {
	width: 100%;
	height: 100%;
	opacity: 0;
	transform: translate3d(0, 30px, 0) scale(0.975);
	filter: drop-shadow(0 14px 40px rgba(0, 0, 0, 0.45));
	transition: opacity 1s ease, transform 1s ease;
	pointer-events: none;
  }

  .hero4.show .feature4-img {
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1);
  }

  .badgeCloud {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	z-index: 3;
	pointer-events: none;
  }

  .badge {
	position: absolute;
	left: 50%;
	top: 20%;
	width: clamp(56px, 9vw, 120px);
	opacity: 0;
	transform: translate(-50%, 0) translateY(30px) scale(0.95);
	filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.35));
	transition: opacity 1s ease, transform 1s ease;
	transition-delay: var(--delay, 0ms);
  }

  .hero4.show .badge {
	opacity: 1;
	transform: translate(-50%, 0) translateY(0) scale(1);
  }

  .hub-img {
	position: absolute;
	left: 50%;
	bottom: 25%;
	transform: translateX(-50%) translateY(30px) scale(0.95);
	width: clamp(120px, 24vw, 365px);
	height: auto;
	opacity: 0;
	filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.45));
	transition: opacity 1s ease, transform 1s ease;
	transition-delay: var(--hub-delay, 0ms);
  }

  .hero4.show .hub-img {
	opacity: 1;
	transform: translateX(-50%) translateY(0) scale(1);
  }

  @media (max-width: 900px) {
	.hub-img {
	  bottom: 32%;
      width: clamp(120px, 50vw, 210px);
	}
	.badge {
	  top: 16%;
	  width: clamp(56px, 16vw, 100px);
	}
	.overlay4 .badge:nth-of-type(1) { left: 38%; top: 14%; }
	.overlay4 .badge:nth-of-type(2) { left: 60%; top: 16%; }
	.overlay4 .badge:nth-of-type(3) { left: 56%; top: 26%; }
	.overlay4 .badge:nth-of-type(4) { left: 20%; top: 28%; }
	.overlay4 .badge:nth-of-type(5) { left: 44%; top: 22%; }
	.overlay4 .badge:nth-of-type(6) { left: 80%; top: 28%; }
  }

  /* ===== 섹션 5 ===== */
  .hero5 {
	position: relative;
	background: #000;
  }

  .sticky5 {
	position: sticky;
	top: 0;
	height: var(--hero-h);
	overflow: hidden;
  }

  .bg5 {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	user-select: none;
	pointer-events: none;
	display: block;
	z-index: 1;
  }

  .overlay5 {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 0 6vw;
	z-index: 2;
	bottom: 9vh;
  }

  /* 로켓 */
  .feature5-img {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%) translateY(30px);
	max-width: min(300px, 28vw);
	height: auto;
	opacity: 0;
	filter: drop-shadow(0 14px 40px rgba(0, 0, 0, 0.45));
	transition: opacity 1s ease, transform 1s ease;
	pointer-events: none;
	z-index: 3;
  }

  .hero5.show .feature5-img {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
	animation: rocketBounce 1.2s ease-in-out infinite;
  }

  @keyframes rocketBounce {
	0%,
	100% { transform: translateX(-50%) translateY(0); }
	50% { transform: translateX(-50%) translateY(-18px); }
  }

  /* 상담 폼 */
  .contact5-wrap {
	position: absolute;
	inset: 0;
	display: grid;
	align-items: center;
	justify-items: end;
	padding: 0 8vw;
	z-index: 4;
  }

  .contact5-card {
	width: min(360px, 92vw);
	background: #fff;
	color: #222;
	border-radius: 22px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
	padding: 22px 22px 18px;
  }

  .contact5-header {
	text-align: center;
	margin-bottom: 14px;
  }

  .contact5-bell-img {
	width: 22px;
	height: 22px;
	display: block;
	margin: 0 auto 8px;
  }

  .contact5-title {
	margin: 0;
	font-size: 20px;
	font-weight: 800;
	letter-spacing: -0.2px;
  }

  .contact5-field {
	display: block;
	width: 100%;
	height: 44px;
	border: 1px solid #e6e7eb;
	border-radius: 10px;
	padding: 0 12px;
	font-size: 15px;
	background: #fff;
	outline: none;
	transition: border-color 0.2s, box-shadow 0.2s;
	margin-bottom: 10px;
  }

  .contact5-field::placeholder {
	color: #9aa1a9;
  }

  .contact5-field:focus {
	border-color: #38bdf8;
	box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.14);
  }

  .contact5-select {
	appearance: none;
	background: #fff right 10px center no-repeat;
  }

  .contact5-textarea {
	height: 96px;
	resize: vertical;
	padding: 10px 12px;
  }

  .contact5-submit {
	width: 100%;
	height: 46px;
	border: 0;
	border-radius: 12px;
	font-weight: 800;
	font-size: 15px;
	background: linear-gradient(180deg, #46c7ff, #10a6e6);
	color: #fff;
	cursor: pointer;
	box-shadow: 0 10px 24px rgba(16, 166, 230, 0.35);
	transition: transform 0.05s ease, filter 0.15s ease;
	margin-top: 6px;
  }

  .contact5-submit:active {
	transform: translateY(1px);
  }

  .contact5-hint {
	margin: 8px 2px 0;
	font-size: 12px;
	color: #6b7280;
  }

  .contact5-privacy {
	  margin-top: 10px;
	  margin-bottom: 10px;
	  font-size: 14px;
	  color: #333;
	  display: flex;
	  align-items: center;
	}

	.contact5-privacy input[type="checkbox"] {
	  margin-right: 6px;
	}

	.contact5-privacy a {
	  color: #007aff;
	  text-decoration: underline;
	}

  /* 퀵 버튼 */
  .contact-float-btn {
	position: fixed;
	right: 22px;
	top: 50%;
	transform: translateY(-50%);
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: linear-gradient(180deg, #46c7ff, #10a6e6);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
	cursor: pointer;
	z-index: 999;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .contact-float-btn:hover {
	transform: translateY(-50%) scale(1.05);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  }

  .contact-float-btn img {
	width: 100%;
	height: auto;
	object-fit: contain;
	pointer-events: none;
  }

  /* 로켓용용가링ㅇ */
  @keyframes rocketLaunch {
	0% {
	  transform: translateX(-50%) translateY(0);
	  opacity: 1;
	}
	60% {
	  transform: translateX(-50%) translateY(-80vh);
	  opacity: 1;
	}
	100% {
	  transform: translateX(-50%) translateY(-100vh);
	  opacity: 0;
	}
  }

  .hero5.show .feature5-img.launch {
	animation: rocketLaunch 1s ease-in forwards !important;
  }

  /* 모바일 최적화 */
  @media (max-width: 900px) {
	.bg,
	.bg2,
	.bg3,
	.bg4,
	.bg5 {
	  height: auto;
	}
	.note {
	  width: auto;
	  max-width: 60vw;
	  height: auto;
	}
	.sticky-wrap,
	.sticky2,
	.sticky3,
	.sticky5 {
	  height: var(--hero-h);
	}
	.headline .big {
	  font-size: clamp(24px, 8vw, 34px);
	}
	.headline .small {
	  font-size: clamp(13px, 3.6vw, 16px);
	}
	.feature5-img {
	  max-width: min(220px, 25vw);
	  bottom: 2%;
	}
	.contact5-wrap {
	  padding: 0 4vw;
	  align-items: end;
	  justify-items: center;
	}
	.contact5-card {
	  width: 100%;
	  margin-bottom: max(40vh, 120px);
	  padding: 18px 16px 16px;
	}
	.contact5-title {
	  font-size: 18px;
	}
	.contact5-field {
	  height: 42px;
	  font-size: 14px;
	}
	.contact5-textarea {
	  height: 90px;
	}
	.contact5-submit {
	  height: 44px;
	  font-size: 14px;
	}
	.contact-float-btn {
	  right: 14px;
	  bottom: 14%;
	  top: auto;
	  transform: none;
	  width: 64px;
	  height: 64px;
	}
	.contact-float-btn:hover {
	  transform: none;
	}
  }

  .sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
  }

  @supports (-webkit-touch-callout: none) {
    @media (pointer: coarse) {
  	  .contact5-field,
  	  .contact5-textarea,
  	  .contact5-select {
  	    font-size: 16px !important;
  	    line-height: 1.4;
  	    height: 46px;
  	  }
    }
  }

  @supports (height: 100dvh) {
    .contact5-wrap { padding-bottom: calc(env(safe-area-inset-bottom) + var(--bottom-ui, 0px)); }
    .contact-float-btn {
      bottom: calc(14% + var(--bottom-ui, 0px));
    }
}