@charset "UTF-8";

:root {
	--tn-blue: #215a78;
	--tn-blue-strong: #174c68;
	--tn-navy: #16384d;
	--tn-navy-dark: #0d2b3d;
	--tn-green: #3c8d83;
	--tn-orange: #e38a43;
	--tn-text: #24343d;
	--tn-text-sub: #5d6b72;
	--tn-white: #fff;
	--tn-bg-soft: #f5f8fa;
	--tn-bg-blue: #edf5f8;
	--tn-line: #dbe5ea;
	--tn-line-strong: #c8d8e0;
	--tn-header-height: 78px;
	--tn-container: 1180px;
	--tn-font: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

body.tn-site {
	background: #fff;
	color: var(--tn-text);
	font-family: var(--tn-font);
	font-size: 16px;
	line-height: 1.85;
	letter-spacing: .02em;
}

body.tn-site.tn-menu-open {
	overflow: hidden;
}

.tn-site .tn-container {
	width: min(calc(100% - 48px), var(--tn-container));
	margin-inline: auto;
}

.tn-site .tn-main {
	padding-top: var(--tn-header-height);
	overflow: clip;
}

.tn-site .tn-section {
	padding-block: clamp(4.75rem, 8vw, 7.25rem);
}

.tn-site h1,
.tn-site h2,
.tn-site h3 {
	color: var(--tn-navy);
	font-weight: 760;
	letter-spacing: .025em;
}

.tn-site h2 {
	font-size: clamp(1.75rem, 3.1vw, 2.65rem);
	line-height: 1.5;
}

.tn-site h3 {
	font-size: clamp(1.08rem, 1.7vw, 1.35rem);
	line-height: 1.5;
}

.tn-site .tn-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: .82rem 1.35rem;
	border: 1px solid var(--tn-navy);
	border-radius: 3px;
	background: var(--tn-navy);
	color: #fff;
	font-weight: 760;
	text-decoration: none;
	gap: .55rem;
	transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.tn-site .tn-button:hover {
	border-color: var(--tn-blue);
	background: var(--tn-blue);
	color: #fff;
	transform: translateY(-1px);
}

.tn-site .tn-button--outline {
	border-color: var(--tn-navy);
	background: #fff;
	color: var(--tn-navy);
}

.tn-site .tn-button--outline:hover {
	background: var(--tn-navy);
	color: #fff;
}

.tn-site .tn-button--white {
	border-color: #fff;
	background: #fff;
	color: var(--tn-navy);
}

.tn-site .tn-button--white:hover {
	background: transparent;
	color: #fff;
}

.tn-site .tn-text-link {
	display: inline-flex;
	align-items: center;
	color: var(--tn-blue);
	font-weight: 760;
	text-decoration: none;
	gap: .35rem;
}

.tn-site .tn-text-link:hover {
	color: var(--tn-navy);
}

.tn-site .tn-image-placeholder {
	display: grid;
	min-height: 160px;
	place-content: center;
	padding: 1.25rem;
	border: 1px dashed #9eb9c7;
	background: #fff;
	color: var(--tn-blue);
	text-align: center;
}

/* =========================================================
   Header
========================================================= */
.tn-site .tn-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 1000;
	height: var(--tn-header-height);
	border-bottom: 1px solid rgba(22, 56, 77, .1);
	background: rgba(255, 255, 255, .98);
	box-shadow: none;
	transition: height .2s ease, box-shadow .2s ease;
}

.tn-site .tn-header.is-scrolled {
	height: 66px;
	box-shadow: 0 10px 30px rgba(15, 45, 62, .08);
}

.tn-site .tn-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(calc(100% - 40px), 1320px);
	height: 100%;
	margin-inline: auto;
	gap: 2rem;
}

.tn-site .tn-logo {
	display: inline-flex;
	align-items: center;
	color: var(--tn-navy);
	text-decoration: none;
}

.tn-site .tn-logo img {
	width: auto;
	max-width: 250px;
	height: 48px;
	object-fit: contain;
}

.tn-site .tn-header.is-scrolled .tn-logo img {
	height: 42px;
}

.tn-site .tn-desktop-nav > ul {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
	gap: clamp(.85rem, 2vw, 1.8rem);
}

.tn-site .tn-desktop-nav > ul > li {
	position: relative;
}

.tn-site .tn-desktop-nav > ul > li > a {
	display: flex;
	align-items: center;
	min-height: 46px;
	border-bottom: 2px solid transparent;
	color: var(--tn-navy);
	font-size: .88rem;
	font-weight: 720;
	text-decoration: none;
}

.tn-site .tn-desktop-nav > ul > li > a:hover,
.tn-site .tn-desktop-nav > ul > li > a[aria-current="page"] {
	border-color: var(--tn-blue);
	color: var(--tn-blue);
}

.tn-site .tn-desktop-nav .tn-nav-contact {
	min-height: 44px;
	padding: .72rem 1.1rem;
	border: 1px solid var(--tn-navy);
	border-radius: 3px;
	background: var(--tn-navy);
	color: #fff;
}

.tn-site .tn-desktop-nav .tn-nav-contact:hover {
	border-color: var(--tn-blue);
	background: var(--tn-blue);
	color: #fff;
}

.tn-site .tn-nav-services {
	display: flex;
	align-items: center;
}

.tn-site .tn-nav-services__toggle {
	width: 30px;
	height: 30px;
	margin-left: -.35rem;
	border: 0;
	background: transparent;
}

.tn-site .tn-nav-services__toggle::before {
	content: "";
	display: block;
	width: 7px;
	height: 7px;
	margin: auto;
	border-right: 1.5px solid var(--tn-navy);
	border-bottom: 1.5px solid var(--tn-navy);
	transform: rotate(45deg) translate(-2px, -2px);
}

.tn-site .tn-service-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	width: 510px;
	padding: .85rem;
	border: 1px solid var(--tn-line);
	border-radius: 4px;
	background: #fff;
	box-shadow: 0 22px 54px rgba(15, 45, 62, .14);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

.tn-site .tn-nav-services:hover .tn-service-menu,
.tn-site .tn-nav-services:focus-within .tn-service-menu,
.tn-site .tn-nav-services.is-open .tn-service-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.tn-site .tn-service-menu ul {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tn-site .tn-service-menu a {
	display: block;
	padding: .72rem .85rem;
	border-bottom: 1px solid var(--tn-line);
	color: var(--tn-text);
	font-size: .84rem;
	text-decoration: none;
}

.tn-site .tn-service-menu a:hover {
	background: var(--tn-bg-soft);
	color: var(--tn-blue);
}

.tn-site .tn-menu-button,
.tn-site .tn-mobile-menu {
	display: none;
}

/* =========================================================
   Home hero
========================================================= */
.tn-front-page .tn-home-hero {
	position: relative;
	min-height: 675px;
	padding: clamp(3.25rem, 5.7vw, 5.2rem) 0 clamp(3.5rem, 6vw, 5rem);
	background:
		linear-gradient(90deg, #fff 0%, #fff 57%, #f6fafc 57%, #eef5f8 100%);
}

.tn-front-page .tn-home-hero::before {
	content: "";
	position: absolute;
	right: -4%;
	top: 6%;
	width: 49%;
	height: 86%;
	background:
		repeating-linear-gradient(125deg, transparent 0 34px, rgba(33, 90, 120, .035) 34px 35px);
	clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
	pointer-events: none;
}

.tn-front-page .tn-home-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(420px, .88fr);
	align-items: center;
	gap: clamp(2.5rem, 5vw, 5.5rem);
}

.tn-front-page .tn-home-hero__content {
	position: relative;
	z-index: 2;
}

.tn-front-page .tn-home-hero__label {
	display: inline-flex;
	align-items: center;
	margin: 0 0 1.25rem;
	padding: .55rem .75rem;
	border: 1px solid #b7d0dc;
	border-radius: 3px;
	background: rgba(255, 255, 255, .94);
	color: var(--tn-blue);
	font-size: .82rem;
	font-weight: 760;
	gap: .4rem;
}

.tn-front-page .tn-home-hero__label .tn-icon {
	width: 1.15rem;
	height: 1.15rem;
}

.tn-front-page .tn-home-hero h1 {
	max-width: 720px;
	margin: 0 0 1.2rem;
	font-size: clamp(2.3rem, 3.15vw, 3.15rem);
	line-height: 1.36;
	letter-spacing: .015em;
}

.tn-front-page .tn-home-hero h1 span {
	display: block;
	white-space: nowrap;
}

.tn-front-page .tn-home-hero__lead {
	max-width: 650px;
	margin: 0 0 1.5rem;
	color: var(--tn-text-sub);
	font-size: clamp(.98rem, 1.35vw, 1.08rem);
}

.tn-front-page .tn-home-hero__features {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 1.75rem;
	padding: 0;
	list-style: none;
	gap: .55rem;
}

.tn-front-page .tn-home-hero__features li {
	display: inline-flex;
	align-items: center;
	padding: .5rem .65rem;
	border: 1px solid #e2ebef;
	border-radius: 3px;
	background: #f7fafb;
	color: var(--tn-navy);
	font-size: .76rem;
	font-weight: 720;
	gap: .35rem;
}

.tn-front-page .tn-home-hero__features .tn-icon {
	width: 1.05rem;
	height: 1.05rem;
	color: var(--tn-blue);
}

.tn-front-page .tn-home-hero__contact {
	display: grid;
	gap: 1rem;
}

.tn-front-page .tn-home-hero__phone {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	color: var(--tn-navy);
	text-decoration: none;
	gap: .75rem;
}

.tn-front-page .tn-home-hero__phone > .tn-icon {
	width: 2.55rem;
	height: 2.55rem;
	color: var(--tn-blue);
}

.tn-front-page .tn-home-hero__phone span {
	display: grid;
	line-height: 1.18;
}

.tn-front-page .tn-home-hero__phone strong {
	font-size: clamp(1.85rem, 2.85vw, 2.35rem);
	letter-spacing: .035em;
}

.tn-front-page .tn-home-hero__phone small {
	color: var(--tn-text-sub);
	font-size: .7rem;
}

.tn-front-page .tn-home-hero__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: .7rem;
}

.tn-front-page .tn-home-hero__visual {
	position: relative;
	z-index: 1;
	display: grid;
	min-height: 515px;
	place-items: center;
	padding: clamp(1.5rem, 3vw, 2.5rem);
}

.tn-front-page .tn-home-hero__visual::after {
	content: "";
	position: absolute;
	inset: 7% -3% 5% 5%;
	border: 1px solid rgba(33, 90, 120, .1);
	border-radius: 48% 52% 46% 54%;
	transform: rotate(-5deg);
}

.tn-front-page .tn-home-hero__support-panel {
	position: relative;
	z-index: 2;
	width: min(100%, 475px);
	padding: clamp(1.6rem, 3vw, 2.35rem);
	border: 1px solid rgba(33, 90, 120, .18);
	border-radius: 8px;
	background: rgba(255, 255, 255, .94);
	box-shadow: 0 28px 70px rgba(22, 56, 77, .13);
	backdrop-filter: blur(8px);
}

.tn-front-page .tn-home-hero__support-panel::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 4px;
	border-radius: 8px 8px 0 0;
	background: linear-gradient(90deg, var(--tn-green) 0 68%, var(--tn-orange) 68% 82%, var(--tn-blue) 82%);
}

.tn-front-page .tn-home-hero__support-brand {
	display: flex;
	align-items: center;
	margin-bottom: 1.7rem;
	gap: .75rem;
}

.tn-front-page .tn-home-hero__support-mark {
	display: grid;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--tn-navy);
	color: #fff;
	font-size: .72rem;
	font-weight: 850;
	letter-spacing: .08em;
	place-items: center;
}

.tn-front-page .tn-home-hero__support-brand p {
	display: grid;
	margin: 0;
	line-height: 1.15;
}

.tn-front-page .tn-home-hero__support-brand small {
	color: var(--tn-text-sub);
	font-size: .64rem;
	font-weight: 750;
	letter-spacing: .16em;
}

.tn-front-page .tn-home-hero__support-brand strong {
	color: var(--tn-navy);
	font-size: .86rem;
	letter-spacing: .09em;
}

.tn-front-page .tn-home-hero__support-eyebrow {
	margin: 0 0 .45rem;
	color: var(--tn-green);
	font-size: .7rem;
	font-weight: 800;
	letter-spacing: .14em;
}

.tn-front-page .tn-home-hero__support-panel h2 {
	max-width: 350px;
	margin: 0 0 1.5rem;
	color: var(--tn-navy);
	font-size: clamp(1.55rem, 2vw, 1.85rem);
	line-height: 1.4;
	letter-spacing: .025em;
}

.tn-front-page .tn-home-hero__support-panel h2 span {
	display: block;
	white-space: nowrap;
}

.tn-front-page .tn-home-hero__support-services {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin: 0;
	padding: 0;
	list-style: none;
	gap: .65rem;
}

.tn-front-page .tn-home-hero__support-services li {
	display: flex;
	align-items: center;
	min-height: 74px;
	padding: .8rem;
	border: 1px solid var(--tn-line);
	border-radius: 4px;
	background: #f8fbfc;
	gap: .65rem;
}

.tn-front-page .tn-home-hero__support-services .tn-icon {
	flex: 0 0 auto;
	width: 1.65rem;
	height: 1.65rem;
	color: var(--tn-blue);
}

.tn-front-page .tn-home-hero__support-services span {
	display: grid;
	line-height: 1.25;
}

.tn-front-page .tn-home-hero__support-services small {
	color: var(--tn-text-sub);
	font-size: .56rem;
	font-weight: 750;
	letter-spacing: .08em;
}

.tn-front-page .tn-home-hero__support-services strong {
	color: var(--tn-navy);
	font-size: .78rem;
}

.tn-front-page .tn-home-hero__support-flow {
	display: grid;
	grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
	align-items: center;
	margin-top: 1.2rem;
	padding-top: 1rem;
	border-top: 1px solid var(--tn-line);
	color: var(--tn-text-sub);
	font-size: .68rem;
	font-weight: 750;
}

.tn-front-page .tn-home-hero__support-flow i {
	display: block;
	height: 1px;
	margin-inline: .5rem;
	background: linear-gradient(90deg, var(--tn-line), var(--tn-green));
}

/* =========================================================
   Home headings
========================================================= */
.tn-front-page .tn-home-heading {
	max-width: 790px;
	margin-bottom: clamp(2rem, 4.5vw, 3.5rem);
}

.tn-front-page .tn-home-heading--compact {
	margin-bottom: 2rem;
}

.tn-front-page .tn-home-heading--center {
	margin-inline: auto;
	text-align: center;
}

.tn-front-page .tn-home-heading__label {
	margin: 0 0 .6rem;
	color: var(--tn-blue);
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: .12em;
}

.tn-front-page .tn-home-heading h2,
.tn-front-page .tn-home-heading--light h2 {
	margin-bottom: .85rem;
}

.tn-front-page .tn-home-heading > p:last-child {
	margin-bottom: 0;
	color: var(--tn-text-sub);
}

/* =========================================================
   Main services
========================================================= */
.tn-front-page .tn-home-main-services {
	position: relative;
	background: #f6f9fb;
}

.tn-front-page .tn-home-main-services::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--tn-line-strong), transparent);
}

.tn-front-page .tn-home-service-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
}

.tn-front-page .tn-home-service-card {
	display: grid;
	grid-template-columns: minmax(180px, .72fr) minmax(0, 1.28fr);
	min-height: 285px;
	border: 1px solid var(--tn-line);
	border-radius: 4px;
	background: #fff;
	color: var(--tn-text);
	text-decoration: none;
	overflow: hidden;
	transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.tn-front-page .tn-home-service-card:hover {
	border-color: #aac7d5;
	color: var(--tn-text);
	box-shadow: 0 16px 40px rgba(22, 56, 77, .08);
	transform: translateY(-3px);
}

.tn-front-page .tn-home-service-card__media {
	position: relative;
	display: grid;
	min-width: 0;
	padding: 2rem 1rem 1.5rem;
	place-items: center;
	background: linear-gradient(145deg, #eef5f8, #fff 72%);
	overflow: hidden;
}

.tn-front-page .tn-home-service-card__media::after {
	content: "";
	position: absolute;
	right: -38px;
	bottom: -54px;
	width: 150px;
	height: 150px;
	border: 1px solid rgba(33, 90, 120, .12);
	border-radius: 50%;
}

.tn-front-page .tn-home-service-card__media img {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	max-height: 210px;
	object-fit: contain;
}

.tn-front-page .tn-home-service-card__number {
	position: absolute;
	top: .75rem;
	left: .85rem;
	z-index: 2;
	color: rgba(22, 56, 77, .24);
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .13em;
}

.tn-front-page .tn-home-service-card__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: clamp(1.35rem, 2.4vw, 2rem);
}

.tn-front-page .tn-home-service-card__body > p {
	margin: 0 0 .45rem;
	color: var(--tn-blue);
	font-size: .69rem;
	font-weight: 780;
	letter-spacing: .08em;
}

.tn-front-page .tn-home-service-card__body h3 {
	margin: 0 0 .7rem;
}

.tn-front-page .tn-home-service-card__body > span {
	color: var(--tn-text-sub);
	font-size: .88rem;
}

.tn-front-page .tn-home-service-card__body > strong {
	display: inline-flex;
	align-items: center;
	margin-top: auto;
	padding-top: 1rem;
	color: var(--tn-blue);
	font-size: .84rem;
	gap: .35rem;
}

.tn-front-page .tn-home-service-card--cybersecurity .tn-home-service-card__media {
	background: linear-gradient(145deg, #edf5f6, #fff 72%);
}

.tn-front-page .tn-home-service-card--data-server .tn-home-service-card__media {
	background: linear-gradient(145deg, #f0f4f7, #fff 72%);
}

/* =========================================================
   Problems
========================================================= */
.tn-front-page .tn-home-problems {
	background: #fff;
}

.tn-front-page .tn-home-problems__grid {
	display: grid;
	grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
	border: 1px solid var(--tn-line);
	background: #fff;
}

.tn-front-page .tn-home-problems__intro {
	padding: clamp(2rem, 4vw, 3.5rem);
	background: linear-gradient(150deg, var(--tn-navy) 0%, #1b506b 100%);
	color: rgba(255, 255, 255, .82);
}

.tn-front-page .tn-home-problems__intro .tn-home-heading__label,
.tn-front-page .tn-home-problems__intro h2,
.tn-front-page .tn-home-problems__intro .tn-text-link {
	color: #fff;
}

.tn-front-page .tn-home-problems__intro h2 {
	font-size: clamp(1.5rem, 2.5vw, 2.15rem);
}

.tn-front-page .tn-home-problems__intro p:not(.tn-home-heading__label) {
	color: rgba(255, 255, 255, .72);
}

.tn-front-page .tn-home-problems__links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-content: start;
	padding: 1.1rem 1.5rem;
}

.tn-front-page .tn-home-problems__links a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 68px;
	padding: .85rem 1rem;
	border-bottom: 1px solid var(--tn-line);
	color: var(--tn-text);
	font-size: .86rem;
	text-decoration: none;
	gap: .8rem;
}

.tn-front-page .tn-home-problems__links a:nth-child(odd) {
	border-right: 1px solid var(--tn-line);
}

.tn-front-page .tn-home-problems__links a:hover {
	background: var(--tn-bg-soft);
	color: var(--tn-blue);
}

.tn-front-page .tn-home-problems__links a > span {
	display: flex;
	align-items: flex-start;
	gap: .5rem;
}

.tn-front-page .tn-home-problems__links a > span .tn-icon {
	margin-top: .25rem;
	color: var(--tn-green);
}

/* =========================================================
   Support services
========================================================= */
.tn-front-page .tn-home-support {
	border-block: 1px solid var(--tn-line);
	background: #fbfcfd;
}

.tn-front-page .tn-home-support__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.tn-front-page .tn-home-support__grid > a {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) auto;
	align-items: center;
	min-height: 178px;
	padding: 1.45rem 1.5rem;
	border: 1px solid var(--tn-line);
	border-top: 3px solid var(--tn-blue);
	border-radius: 4px;
	background: #fff;
	color: var(--tn-text);
	text-decoration: none;
	gap: 1rem;
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.tn-front-page .tn-home-support__grid > a:hover {
	border-color: #aac7d5;
	box-shadow: 0 12px 30px rgb(17 65 89 / 8%);
	color: var(--tn-blue);
	transform: translateY(-2px);
}

.tn-front-page .tn-home-support__number {
	align-self: start;
	padding-top: .08rem;
	color: #9fb8c5;
	font-family: var(--tn-font-en);
	font-size: .82rem;
	font-weight: 800;
	letter-spacing: .12em;
}

.tn-front-page .tn-home-support__grid > a > span {
	display: grid;
}

.tn-front-page .tn-home-support__grid small {
	color: var(--tn-blue);
	font-size: .66rem;
	font-weight: 780;
}

.tn-front-page .tn-home-support__grid strong {
	margin: .25rem 0 .4rem;
	color: var(--tn-navy);
	font-size: 1.04rem;
}

.tn-front-page .tn-home-support__grid em {
	color: var(--tn-text-sub);
	font-size: .78rem;
	font-style: normal;
}

/* =========================================================
   Reasons
========================================================= */
.tn-front-page .tn-home-reasons {
	background: #fff;
}

.tn-front-page .tn-home-reasons__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid var(--tn-line);
	border-bottom: 1px solid var(--tn-line);
}

.tn-front-page .tn-home-reasons__grid article {
	position: relative;
	padding: clamp(1.75rem, 3.2vw, 3rem);
	border-right: 1px solid var(--tn-line);
}

.tn-front-page .tn-home-reasons__grid article:last-child {
	border-right: 0;
}

.tn-front-page .tn-home-reasons__grid article > span {
	display: grid;
	width: 50px;
	height: 50px;
	margin-bottom: 1.25rem;
	place-items: center;
	border: 1px solid #c7dbe4;
	color: var(--tn-blue);
}

.tn-front-page .tn-home-reasons__grid article > p:first-of-type {
	position: absolute;
	top: 1.25rem;
	right: 1.4rem;
	color: #c5d6de;
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .16em;
}

.tn-front-page .tn-home-reasons__grid article > p:last-child {
	margin-bottom: 0;
	color: var(--tn-text-sub);
	font-size: .88rem;
}

/* =========================================================
   Flow
========================================================= */
.tn-front-page .tn-home-flow {
	position: relative;
	background: var(--tn-navy-dark);
	color: rgba(255, 255, 255, .76);
}

.tn-front-page .tn-home-flow::after {
	content: "";
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(135deg, transparent 0 44px, rgba(255,255,255,.018) 44px 45px);
	pointer-events: none;
}

.tn-front-page .tn-home-flow .tn-container {
	position: relative;
	z-index: 1;
}

.tn-front-page .tn-home-heading--light .tn-home-heading__label {
	color: #83bacf;
}

.tn-front-page .tn-home-heading--light h2 {
	color: #fff;
}

.tn-front-page .tn-home-flow__list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid rgba(255,255,255,.18);
	border-bottom: 1px solid rgba(255,255,255,.18);
}

.tn-front-page .tn-home-flow__list li {
	position: relative;
	padding: 2rem 1.35rem 2.25rem;
	border-right: 1px solid rgba(255,255,255,.18);
}

.tn-front-page .tn-home-flow__list li:last-child {
	border-right: 0;
}

.tn-front-page .tn-home-flow__list li > span {
	display: inline-flex;
	margin-bottom: 1rem;
	color: #72adc4;
	font-size: .76rem;
	font-weight: 800;
	letter-spacing: .14em;
}

.tn-front-page .tn-home-flow__list h3 {
	margin: 0 0 .65rem;
	color: #fff;
}

.tn-front-page .tn-home-flow__list p {
	margin: 0;
	color: rgba(255,255,255,.68);
	font-size: .84rem;
}

/* =========================================================
   Area
========================================================= */
.tn-front-page .tn-home-area {
	background: #f7fafb;
}

.tn-front-page .tn-home-area__grid {
	display: grid;
	grid-template-columns: minmax(0, .92fr) minmax(430px, 1.08fr);
	align-items: center;
	gap: clamp(2.5rem, 6vw, 5rem);
}

.tn-front-page .tn-home-area__content > h2 {
	margin-bottom: .85rem;
}

.tn-front-page .tn-home-area__content > p:not(.tn-home-heading__label):not(.tn-home-area__note) {
	color: var(--tn-text-sub);
}

.tn-front-page .tn-home-area__lists {
	display: grid;
	grid-template-columns: 1.45fr .75fr;
	margin-top: 1.75rem;
	gap: 1.5rem;
}

.tn-front-page .tn-home-area__lists h3 {
	margin: 0 0 .75rem;
	padding-bottom: .55rem;
	border-bottom: 1px solid var(--tn-line-strong);
	font-size: .95rem;
}

.tn-front-page .tn-home-area__lists ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	list-style: none;
	gap: .45rem;
}

.tn-front-page .tn-home-area__lists li {
	padding: .35rem .55rem;
	border: 1px solid var(--tn-line);
	border-radius: 2px;
	background: #fff;
	font-size: .75rem;
}

.tn-front-page .tn-home-area__note {
	margin: 1.2rem 0 0;
	padding-left: .8rem;
	border-left: 3px solid var(--tn-orange);
	color: var(--tn-text-sub);
	font-size: .74rem;
}

.tn-front-page .tn-home-area__map {
	padding: 1rem 1rem .75rem;
	border: 1px solid var(--tn-line);
	background: #fff;
}

.tn-front-page .tn-home-area__map svg {
	display: block;
	width: 100%;
	height: auto;
}

.tn-front-page .tn-map-sea {
	fill: #eef6f9;
}

.tn-front-page .tn-map-eastmikawa {
	fill: #b9d6d0;
	stroke: #8bbeb5;
	stroke-width: 2;
}

.tn-front-page .tn-map-west {
	fill: #9dc8dc;
	stroke: #7ab1ca;
	stroke-width: 2;
}

.tn-front-page .tn-map-central {
	fill: #c7dce7;
	stroke: #a8c9d8;
	stroke-width: 2;
}

.tn-front-page .tn-map-border {
	fill: none;
	stroke: rgba(255,255,255,.9);
	stroke-width: 3;
}

.tn-front-page .tn-map-base-dot {
	fill: var(--tn-orange);
}

.tn-front-page .tn-map-base-ring {
	fill: none;
	stroke: rgba(227, 138, 67, .42);
	stroke-width: 4;
}

.tn-front-page .tn-home-area__map text {
	fill: var(--tn-navy);
	font-family: var(--tn-font);
	font-size: 21px;
	font-weight: 760;
}

.tn-front-page .tn-home-area__map .tn-map-base-label {
	fill: #7a3d12;
	font-size: 17px;
}

.tn-front-page .tn-home-area__legend {
	display: flex;
	justify-content: flex-end;
	margin-top: .4rem;
	color: var(--tn-text-sub);
	font-size: .7rem;
	gap: 1rem;
}

.tn-front-page .tn-home-area__legend span {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
}

.tn-front-page .tn-home-area__legend i {
	display: inline-block;
	width: 18px;
	height: 8px;
}

.tn-front-page .tn-legend-eastmikawa {
	background: #b9d6d0;
}

.tn-front-page .tn-legend-shizuoka {
	background: #9dc8dc;
}

/* =========================================================
   FAQ and news
========================================================= */
.tn-front-page .tn-home-faq {
	background: #fff;
}

.tn-front-page .tn-home-faq__grid {
	display: grid;
	grid-template-columns: minmax(250px, .68fr) minmax(0, 1.32fr);
	gap: clamp(2.25rem, 6vw, 5rem);
}

.tn-front-page .tn-home-faq__intro h2 {
	font-size: clamp(1.65rem, 2.6vw, 2.25rem);
}

.tn-front-page .tn-home-faq__intro > p:last-child {
	color: var(--tn-text-sub);
}

.tn-front-page .tn-faq-list details {
	border: 0;
	border-bottom: 1px solid var(--tn-line);
	background: transparent;
}

.tn-front-page .tn-faq-list details:first-child {
	border-top: 1px solid var(--tn-line);
}

.tn-front-page .tn-faq-list summary {
	min-height: 66px;
	padding: 1rem .25rem;
	font-size: .9rem;
}

.tn-front-page .tn-faq-answer {
	padding: 0 .25rem 1.25rem;
}

.tn-front-page .tn-home-news {
	padding-block: 3.5rem;
	border-top: 1px solid var(--tn-line);
	background: #f7fafb;
}

.tn-front-page .tn-home-news__grid {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	align-items: start;
	gap: 3rem;
}

.tn-front-page .tn-home-news__grid h2 {
	font-size: 1.55rem;
}

.tn-front-page .tn-home-news .tn-news-list {
	border-top: 1px solid var(--tn-line-strong);
}

.tn-front-page .tn-home-news .tn-news-list a {
	border-bottom: 1px solid var(--tn-line);
}

.tn-front-page .tn-home-news__more {
	justify-content: flex-end;
	color: var(--tn-blue) !important;
	font-weight: 760;
}

/* =========================================================
   Shared CTA
========================================================= */
.tn-site .tn-contact-cta {
	padding-block: 0;
	background: #fff;
}

.tn-site .tn-contact-cta__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	width: min(calc(100% - 48px), var(--tn-container));
	margin-inline: auto;
	padding: clamp(2.25rem, 4.5vw, 3.7rem);
	background: linear-gradient(120deg, var(--tn-navy-dark), #174d69);
	color: rgba(255,255,255,.78);
	gap: 3rem;
}

.tn-site .tn-contact-cta h2 {
	margin-bottom: .65rem;
	color: #fff;
	font-size: clamp(1.55rem, 2.6vw, 2.2rem);
}

.tn-site .tn-contact-cta__inner > div:first-child > p:last-child {
	margin-bottom: 0;
	color: rgba(255,255,255,.7);
	font-size: .88rem;
}

.tn-site .tn-contact-cta__actions {
	display: grid;
	min-width: 310px;
	gap: .65rem;
}

.tn-site .tn-phone-link {
	display: flex;
	align-items: center;
	min-width: 310px;
	color: #fff;
	text-decoration: none;
	gap: .7rem;
}

.tn-site .tn-phone-link > .tn-icon {
	width: 2.25rem;
	height: 2.25rem;
}

.tn-site .tn-phone-link span {
	display: grid;
	line-height: 1.2;
}

.tn-site .tn-phone-link strong {
	font-size: 1.75rem;
}

.tn-site .tn-phone-link small {
	color: rgba(255,255,255,.65);
	font-size: .68rem;
}

/* =========================================================
   Footer
========================================================= */
.tn-site .tn-footer {
	padding: 0;
	background: #102d3f;
	color: rgba(255,255,255,.7);
}

.tn-site .tn-footer__grid {
	display: grid;
	grid-template-columns: minmax(260px, 1.35fr) minmax(160px, .8fr) minmax(160px, .8fr) minmax(230px, 1fr);
	padding-block: 4rem 3.25rem;
	gap: clamp(1.8rem, 4vw, 4rem);
}

.tn-site .tn-footer__brand {
	display: inline-block;
	margin-bottom: .8rem;
	color: #fff;
	font-size: 1.2rem;
	font-weight: 800;
	text-decoration: none;
}

.tn-site .tn-footer__company > p {
	font-size: .82rem;
}

.tn-site .tn-footer__company dl {
	margin: 1.25rem 0;
	font-size: .78rem;
}

.tn-site .tn-footer__company dl > div {
	display: grid;
	grid-template-columns: 58px 1fr;
	margin-bottom: .4rem;
}

.tn-site .tn-footer__company dt {
	color: #fff;
	font-weight: 720;
}

.tn-site .tn-footer__company dd {
	margin: 0;
}

.tn-site .tn-footer__notice {
	color: rgba(255,255,255,.5);
	font-size: .69rem !important;
}

.tn-site .tn-footer h2 {
	margin: 0 0 .85rem;
	color: #fff;
	font-size: .9rem;
}

.tn-site .tn-footer__links ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.tn-site .tn-footer__links li {
	margin-bottom: .45rem;
}

.tn-site .tn-footer__links a {
	color: rgba(255,255,255,.68);
	font-size: .77rem;
	text-decoration: none;
}

.tn-site .tn-footer__links a:hover {
	color: #fff;
	text-decoration: underline;
}

.tn-site .tn-footer__contact {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.tn-site .tn-footer__contact > p {
	margin-bottom: .25rem;
	font-size: .7rem;
}

.tn-site .tn-footer__contact > a:not(.tn-button) {
	display: inline-flex;
	align-items: center;
	color: #fff;
	text-decoration: none;
	gap: .45rem;
}

.tn-site .tn-footer__contact strong {
	font-size: 1.45rem;
}

.tn-site .tn-footer__contact small {
	margin: .2rem 0 .9rem;
	font-size: .7rem;
}

.tn-site .tn-footer__contact .tn-button {
	width: 100%;
	min-height: 48px;
}

.tn-site .tn-footer__bottom {
	padding-block: 1rem;
	border-top: 1px solid rgba(255,255,255,.12);
	text-align: right;
}

.tn-site .tn-footer__bottom small {
	font-size: .68rem;
}

/* =========================================================
   Mobile fixed CTA
========================================================= */
.tn-site .tn-mobile-cta {
	display: none;
}

/* =========================================================
   Responsive
========================================================= */
@media (max-width: 1080px) {
	:root {
		--tn-header-height: 70px;
	}

	.tn-site .tn-desktop-nav {
		display: none;
	}

	.tn-site .tn-menu-button {
		display: grid;
		width: 44px;
		height: 44px;
		place-content: center;
		border: 0;
		background: transparent;
		gap: 5px;
	}

	.tn-site .tn-menu-button > span:not(.screen-reader-text) {
		display: block;
		width: 24px;
		height: 2px;
		background: var(--tn-navy);
		transition: transform .2s ease, opacity .2s ease;
	}

	.tn-site .tn-menu-button[aria-expanded="true"] > span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.tn-site .tn-menu-button[aria-expanded="true"] > span:nth-child(2) {
		opacity: 0;
	}

	.tn-site .tn-menu-button[aria-expanded="true"] > span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.tn-site .tn-mobile-menu {
		position: fixed;
		inset: var(--tn-header-height) 0 auto;
		display: block;
		max-height: calc(100dvh - var(--tn-header-height));
		padding-bottom: 1rem;
		background: #fff;
		box-shadow: 0 20px 30px rgba(22,56,77,.12);
		overflow-y: auto;
	}

	.tn-site .tn-mobile-menu[hidden] {
		display: none;
	}

	.tn-site .tn-mobile-menu__inner {
		width: min(calc(100% - 40px), 760px);
		margin-inline: auto;
	}

	.tn-site .tn-mobile-menu__inner > a,
	.tn-site .tn-mobile-services-toggle {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		min-height: 54px;
		padding: .75rem 0;
		border: 0;
		border-bottom: 1px solid var(--tn-line);
		background: #fff;
		color: var(--tn-navy);
		font-weight: 720;
		text-decoration: none;
	}

	.tn-site .tn-mobile-services {
		padding: .35rem 1rem;
		background: var(--tn-bg-soft);
	}

	.tn-site .tn-mobile-services[hidden] {
		display: none;
	}

	.tn-site .tn-mobile-services a {
		display: block;
		padding: .62rem 0;
		border-bottom: 1px solid var(--tn-line);
		color: var(--tn-text);
		font-size: .82rem;
		text-decoration: none;
	}

	.tn-site .tn-mobile-menu__contact {
		justify-content: center !important;
		margin-top: 1rem;
		padding: .8rem 1rem !important;
		border: 0 !important;
		background: var(--tn-navy) !important;
		color: #fff !important;
	}

	.tn-front-page .tn-home-hero__grid {
		grid-template-columns: minmax(0, 1fr) minmax(360px, .84fr);
		gap: 2rem;
	}

	.tn-front-page .tn-home-hero h1 {
		font-size: clamp(2.1rem, 4.3vw, 2.75rem);
	}

	.tn-front-page .tn-home-hero__visual {
		min-height: 450px;
	}

	.tn-front-page .tn-home-support__grid > a {
		grid-template-columns: 38px minmax(0, 1fr) auto;
		padding: 1.15rem;
	}

	.tn-front-page .tn-home-area__grid {
		grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr);
		gap: 2.5rem;
	}

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

	.tn-site .tn-contact-cta__actions {
		grid-template-columns: minmax(280px, .8fr) minmax(220px, .55fr);
		align-items: center;
	}

	.tn-site .tn-footer__grid {
		grid-template-columns: 1.4fr 1fr 1fr;
	}

	.tn-site .tn-footer__contact {
		grid-column: 1 / -1;
		flex-direction: row;
		align-items: center;
		gap: 1rem;
	}

	.tn-site .tn-footer__contact > p,
	.tn-site .tn-footer__contact > small {
		display: none;
	}

	.tn-site .tn-footer__contact .tn-button {
		width: auto;
	}
}

@media (max-width: 781px) {
	.tn-site .tn-container {
		width: min(calc(100% - 32px), var(--tn-container));
	}

	.tn-site .tn-logo img {
		max-width: 205px;
		height: 40px;
	}

	.tn-front-page .tn-home-hero {
		min-height: 0;
		padding: 2.35rem 0 3.5rem;
		background: #fff;
	}

	.tn-front-page .tn-home-hero::before {
		display: none;
	}

	.tn-front-page .tn-home-hero__grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.tn-front-page .tn-home-hero__label {
		width: 100%;
		font-size: .74rem;
	}

	.tn-front-page .tn-home-hero h1 {
		font-size: clamp(2rem, 8.6vw, 3rem);
		line-height: 1.48;
	}

	.tn-front-page .tn-home-hero h1 span {
		white-space: normal;
	}

	.tn-front-page .tn-home-hero__lead {
		font-size: .9rem;
	}

	.tn-front-page .tn-home-hero__features {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.tn-front-page .tn-home-hero__features li {
		justify-content: flex-start;
	}

	.tn-front-page .tn-home-hero__phone {
		width: 100%;
	}

	.tn-front-page .tn-home-hero__buttons {
		display: grid;
		grid-template-columns: 1fr;
	}

	.tn-front-page .tn-home-hero__visual {
		min-height: 0;
		margin-top: .25rem;
		padding: 1.75rem 0 0;
		border-top: 1px solid var(--tn-line);
		background: linear-gradient(180deg, #f7fafb, #fff);
	}

	.tn-front-page .tn-home-hero__visual::after {
		inset: 16% 4% -4%;
	}

	.tn-front-page .tn-home-hero__support-panel {
		width: min(100%, 560px);
	}

	.tn-front-page .tn-home-service-grid,
	.tn-front-page .tn-home-problems__grid,
	.tn-front-page .tn-home-support__grid,
	.tn-front-page .tn-home-reasons__grid,
	.tn-front-page .tn-home-flow__list,
	.tn-front-page .tn-home-area__grid,
	.tn-front-page .tn-home-faq__grid,
	.tn-front-page .tn-home-news__grid {
		grid-template-columns: 1fr;
	}

	.tn-front-page .tn-home-service-card {
		grid-template-columns: minmax(140px, .72fr) minmax(0, 1.28fr);
		min-height: 240px;
	}

	.tn-front-page .tn-home-service-card__media img {
		max-height: 180px;
	}

	.tn-front-page .tn-home-problems__intro {
		padding: 2rem;
	}

	.tn-front-page .tn-home-problems__links {
		grid-template-columns: 1fr;
		padding: .65rem 1rem;
	}

	.tn-front-page .tn-home-problems__links a:nth-child(odd) {
		border-right: 0;
	}

	.tn-front-page .tn-home-support__grid > a {
		grid-template-columns: 42px minmax(0, 1fr) auto;
	}

	.tn-front-page .tn-home-reasons__grid {
		border: 0;
	}

	.tn-front-page .tn-home-reasons__grid article,
	.tn-front-page .tn-home-reasons__grid article:last-child {
		border: 1px solid var(--tn-line);
		border-bottom: 0;
	}

	.tn-front-page .tn-home-reasons__grid article:last-child {
		border-bottom: 1px solid var(--tn-line);
	}

	.tn-front-page .tn-home-flow__list {
		border: 0;
	}

	.tn-front-page .tn-home-flow__list li,
	.tn-front-page .tn-home-flow__list li:last-child {
		display: grid;
		grid-template-columns: 46px 1fr;
		padding: 1.35rem 0;
		border: 0;
		border-bottom: 1px solid rgba(255,255,255,.18);
		gap: .8rem;
	}

	.tn-front-page .tn-home-flow__list li > span {
		margin: 0;
	}

	.tn-front-page .tn-home-area__grid {
		gap: 2.25rem;
	}

	.tn-front-page .tn-home-area__map {
		order: -1;
	}

	.tn-front-page .tn-home-faq__grid {
		gap: 1.5rem;
	}

	.tn-front-page .tn-home-news__grid {
		gap: 1rem;
	}

	.tn-site .tn-contact-cta__inner {
		width: 100%;
		padding: 2.25rem 1.5rem;
	}

	.tn-site .tn-contact-cta__actions {
		grid-template-columns: 1fr;
		min-width: 0;
	}

	.tn-site .tn-phone-link {
		min-width: 0;
	}

	.tn-site .tn-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.tn-site .tn-footer__company,
	.tn-site .tn-footer__contact {
		grid-column: 1 / -1;
	}

	.tn-site .tn-footer__contact {
		align-items: flex-start;
		flex-direction: column;
	}

	.tn-site .tn-footer__contact > p,
	.tn-site .tn-footer__contact > small {
		display: block;
	}

	.tn-site .tn-mobile-cta {
		position: fixed;
		inset: auto 0 0;
		z-index: 1100;
		display: grid;
		grid-template-columns: 1.1fr .9fr;
		padding: 8px max(8px, env(safe-area-inset-right)) calc(8px + env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
		background: #fff;
		box-shadow: 0 -8px 25px rgba(22,56,77,.16);
		gap: 8px;
	}

	.tn-site.tn-inquiry-page .tn-mobile-cta {
		grid-template-columns: 1fr;
	}

	.tn-site .tn-mobile-cta a {
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 50px;
		border-radius: 3px;
		color: #fff;
		font-size: .82rem;
		font-weight: 760;
		text-decoration: none;
		gap: .4rem;
	}

	.tn-site .tn-mobile-cta__phone {
		background: var(--tn-blue);
	}

	.tn-site .tn-mobile-cta__form {
		background: var(--tn-navy);
	}

	body.tn-site {
		padding-bottom: calc(74px + env(safe-area-inset-bottom));
	}
}

@media (max-width: 560px) {
	.tn-site .tn-header__inner {
		width: calc(100% - 24px);
	}

	.tn-site .tn-logo img {
		max-width: 190px;
		height: 37px;
	}

	.tn-front-page .tn-home-hero h1 {
		font-size: clamp(1.8rem, 8.2vw, 2.55rem);
	}

	.tn-front-page .tn-home-hero__features li {
		padding: .48rem .5rem;
		font-size: .7rem;
	}

	.tn-front-page .tn-home-hero__phone strong {
		font-size: clamp(1.7rem, 9vw, 2rem);
	}

	.tn-front-page .tn-home-hero__visual {
		min-height: 0;
	}

	.tn-front-page .tn-home-hero__support-panel {
		padding: 1.35rem;
	}

	.tn-front-page .tn-home-hero__support-brand {
		margin-bottom: 1.25rem;
	}

	.tn-front-page .tn-home-hero__support-panel h2 {
		font-size: 1.5rem;
	}

	.tn-front-page .tn-home-hero__support-services li {
		min-height: 68px;
		padding: .7rem;
	}

	.tn-front-page .tn-home-service-card {
		grid-template-columns: 1fr;
	}

	.tn-front-page .tn-home-service-card__media {
		min-height: 190px;
	}

	.tn-front-page .tn-home-support__grid > a {
		grid-template-columns: 34px minmax(0, 1fr) auto;
		min-height: 145px;
		padding: 1rem;
		gap: .85rem;
	}

	.tn-front-page .tn-home-support__number {
		font-size: .72rem;
	}

	.tn-front-page .tn-home-support__grid em {
		display: none;
	}

	.tn-front-page .tn-home-area__lists {
		grid-template-columns: 1fr;
	}

	.tn-front-page .tn-home-area__map text {
		font-size: 18px;
	}

	.tn-front-page .tn-home-area__map .tn-map-base-label {
		font-size: 15px;
	}

	.tn-site .tn-footer__grid {
		grid-template-columns: 1fr;
	}

	.tn-site .tn-footer__company,
	.tn-site .tn-footer__contact {
		grid-column: auto;
	}

	.tn-site .tn-footer__links {
		border-top: 1px solid rgba(255,255,255,.1);
		padding-top: 1.25rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tn-site *,
	.tn-site *::before,
	.tn-site *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}

/* =========================================================
   v7 photo-led corporate refresh
========================================================= */
:root {
	--tn-ivory: #f7f6f2;
	--tn-warm-white: #fcfbf8;
	--tn-shadow-soft: 0 24px 70px rgba(17, 48, 65, .10);
	--tn-radius-lg: 18px;
	--tn-radius-md: 12px;
}

.tn-front-page .tn-home-hero {
	min-height: 720px;
	padding: clamp(3.5rem, 6vw, 6rem) 0;
	background: var(--tn-warm-white);
}

.tn-front-page .tn-home-hero::before {
	inset: 0 0 0 auto;
	width: 40%;
	height: 100%;
	background: #edf3f5;
	clip-path: none;
}

.tn-front-page .tn-home-hero__grid {
	grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
	gap: clamp(3rem, 6vw, 6.75rem);
}

.tn-front-page .tn-home-hero__content {
	padding-block: 1rem;
}

.tn-front-page .tn-home-hero__label {
	padding: 0;
	border: 0;
	background: transparent;
	font-size: .76rem;
	letter-spacing: .08em;
}

.tn-front-page .tn-home-hero h1 {
	max-width: 680px;
	margin-bottom: 1.45rem;
	font-size: clamp(2.45rem, 4.1vw, 4.25rem);
	line-height: 1.22;
	letter-spacing: -.025em;
}

.tn-front-page .tn-home-hero__lead {
	max-width: 610px;
	font-size: clamp(1rem, 1.35vw, 1.12rem);
	line-height: 1.95;
}

.tn-front-page .tn-home-hero__features {
	margin-bottom: 2rem;
	gap: .6rem 1rem;
}

.tn-front-page .tn-home-hero__features li {
	padding: 0;
	border: 0;
	background: transparent;
	font-size: .78rem;
}

.tn-front-page .tn-home-hero__features li:not(:last-child)::after {
	content: "";
	width: 1px;
	height: 14px;
	margin-left: .45rem;
	background: var(--tn-line-strong);
}

.tn-front-page .tn-home-hero__visual {
	min-height: 610px;
	padding: 0;
	place-items: stretch;
}

.tn-front-page .tn-home-hero__visual::after {
	inset: 34px -24px -28px 48px;
	border: 0;
	border-radius: var(--tn-radius-lg);
	background: var(--tn-navy);
	transform: none;
}

.tn-front-page .tn-home-hero__photo {
	position: relative;
	z-index: 2;
	width: 100%;
	min-height: 610px;
	margin: 0;
	border-radius: var(--tn-radius-lg);
	background: #dfe8ec;
	box-shadow: var(--tn-shadow-soft);
	overflow: hidden;
}

.tn-front-page .tn-home-hero__photo > img {
	width: 100%;
	height: 100%;
	min-height: 610px;
	object-fit: cover;
	object-position: 72% center;
}

.tn-front-page .tn-home-hero__photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 48%, rgba(8, 29, 41, .24) 100%);
	pointer-events: none;
}

.tn-front-page .tn-home-hero__photo figcaption {
	position: absolute;
	right: 1.35rem;
	bottom: 1.35rem;
	z-index: 2;
	display: grid;
	min-width: min(310px, calc(100% - 2.7rem));
	padding: 1rem 1.2rem;
	border-left: 3px solid var(--tn-green);
	border-radius: 3px;
	background: rgba(255, 255, 255, .94);
	box-shadow: 0 14px 36px rgba(9, 31, 43, .17);
	backdrop-filter: blur(8px);
}

.tn-front-page .tn-home-hero__photo figcaption span {
	color: var(--tn-text-sub);
	font-size: .68rem;
	font-weight: 750;
	letter-spacing: .06em;
}

.tn-front-page .tn-home-hero__photo figcaption strong {
	color: var(--tn-navy);
	font-size: 1rem;
}

.tn-front-page .tn-home-main-services {
	background: #fff;
}

.tn-front-page .tn-home-service-grid {
	gap: 1.5rem;
}

.tn-front-page .tn-home-service-card {
	min-height: 300px;
	border: 0;
	border-radius: var(--tn-radius-md);
	box-shadow: 0 14px 44px rgba(18, 55, 75, .08);
}

.tn-front-page .tn-home-service-card:hover {
	border-color: transparent;
	box-shadow: 0 24px 58px rgba(18, 55, 75, .14);
	transform: translateY(-5px);
}

.tn-front-page .tn-home-service-card__media {
	background: #f1f5f6;
}

.tn-front-page .tn-home-service-card__media::after {
	right: -58px;
	bottom: -68px;
	width: 190px;
	height: 190px;
	border-color: rgba(33, 90, 120, .09);
}

.tn-front-page .tn-home-service-card__body {
	padding: clamp(1.55rem, 2.7vw, 2.35rem);
}

/* Photo editorial grid */
.tn-front-page .tn-home-scenes {
	position: relative;
	background: var(--tn-navy-dark);
	color: rgba(255, 255, 255, .78);
}

.tn-front-page .tn-home-scenes::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 15% 10%, rgba(60, 141, 131, .16), transparent 32%),
		linear-gradient(135deg, rgba(255,255,255,.025), transparent 45%);
	pointer-events: none;
}

.tn-front-page .tn-home-scenes .tn-container {
	position: relative;
}

.tn-front-page .tn-home-heading--scenes {
	max-width: 860px;
}

.tn-front-page .tn-home-scenes .tn-home-heading__label {
	color: #8cc4bc;
}

.tn-front-page .tn-home-scenes .tn-home-heading h2 {
	color: #fff;
}

.tn-front-page .tn-home-scenes .tn-home-heading > p:last-child {
	color: rgba(255, 255, 255, .7);
}

.tn-front-page .tn-home-scenes__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(330px, .65fr);
	grid-template-rows: repeat(3, minmax(175px, 1fr));
	min-height: 650px;
	gap: 1rem;
}

.tn-front-page .tn-home-scene {
	position: relative;
	display: block;
	min-height: 0;
	border-radius: var(--tn-radius-md);
	color: #fff;
	text-decoration: none;
	overflow: hidden;
}

.tn-front-page .tn-home-scene--visit {
	grid-row: 1 / 4;
}

.tn-front-page .tn-home-scene > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .55s cubic-bezier(.2,.7,.2,1), filter .3s ease;
}

.tn-front-page .tn-home-scene--visit > img {
	object-position: 57% center;
}

.tn-front-page .tn-home-scene__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 32%, rgba(5, 24, 35, .84) 100%);
}

.tn-front-page .tn-home-scene__content {
	position: absolute;
	inset: auto 0 0;
	display: grid;
	padding: clamp(1.15rem, 2.5vw, 2rem);
}

.tn-front-page .tn-home-scene__content small {
	margin-bottom: .35rem;
	color: #9ed2ca;
	font-size: .64rem;
	font-style: normal;
	font-weight: 800;
	letter-spacing: .13em;
}

.tn-front-page .tn-home-scene__content strong {
	font-size: clamp(1.08rem, 1.8vw, 1.55rem);
	line-height: 1.35;
}

.tn-front-page .tn-home-scene__content em {
	margin-top: .35rem;
	color: rgba(255,255,255,.72);
	font-size: .76rem;
	font-style: normal;
	line-height: 1.6;
}

.tn-front-page .tn-home-scene:hover {
	color: #fff;
}

.tn-front-page .tn-home-scene:hover > img {
	filter: saturate(.92) contrast(1.02);
	transform: scale(1.035);
}

.tn-front-page .tn-home-problems__grid {
	border: 0;
	border-radius: var(--tn-radius-md);
	box-shadow: var(--tn-shadow-soft);
	overflow: hidden;
}

/* Reasons: photo + editorial list */
.tn-front-page .tn-home-reasons {
	background: var(--tn-ivory);
}

.tn-front-page .tn-home-reasons__layout {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
	align-items: center;
	gap: clamp(3rem, 7vw, 7rem);
}

.tn-front-page .tn-home-reasons__photo {
	position: relative;
	min-height: 590px;
	margin: 0;
	border-radius: var(--tn-radius-lg);
	background: #dde5e8;
	box-shadow: var(--tn-shadow-soft);
	overflow: hidden;
}

.tn-front-page .tn-home-reasons__photo > img {
	width: 100%;
	height: 100%;
	min-height: 590px;
	object-fit: cover;
	object-position: 48% center;
}

.tn-front-page .tn-home-reasons__photo figcaption {
	position: absolute;
	inset: auto 1.25rem 1.25rem;
	display: flex;
	align-items: baseline;
	padding: 1rem 1.2rem;
	border-radius: 6px;
	background: rgba(14, 43, 59, .92);
	color: #fff;
	box-shadow: 0 14px 34px rgba(12, 35, 47, .18);
	gap: .65rem;
}

.tn-front-page .tn-home-reasons__photo figcaption strong {
	font-size: clamp(2rem, 4vw, 3.3rem);
	line-height: 1;
	letter-spacing: -.035em;
}

.tn-front-page .tn-home-reasons__photo figcaption span {
	max-width: 220px;
	font-size: .72rem;
	line-height: 1.55;
}

.tn-front-page .tn-home-reasons__content .tn-home-heading {
	margin-bottom: 1.65rem;
}

.tn-front-page .tn-home-reasons__list {
	border-top: 1px solid #cdd8dc;
}

.tn-front-page .tn-home-reasons__list article {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr);
	padding: 1.45rem 0;
	border-bottom: 1px solid #cdd8dc;
	gap: 1.1rem;
}

.tn-front-page .tn-home-reasons__list article > span {
	padding-top: .18rem;
	color: var(--tn-green);
	font-size: .72rem;
	font-weight: 850;
	letter-spacing: .12em;
}

.tn-front-page .tn-home-reasons__list h3 {
	margin: 0 0 .35rem;
	font-size: 1.08rem;
}

.tn-front-page .tn-home-reasons__list p {
	margin: 0;
	color: var(--tn-text-sub);
	font-size: .86rem;
	line-height: 1.8;
}

@media (max-width: 1100px) {
	.tn-front-page .tn-home-hero__grid {
		grid-template-columns: minmax(0, 1fr) minmax(390px, .9fr);
		gap: 3.25rem;
	}

	.tn-front-page .tn-home-hero h1 {
		font-size: clamp(2.25rem, 4.6vw, 3.45rem);
	}

	.tn-front-page .tn-home-scenes__grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: repeat(2, minmax(260px, 1fr));
		min-height: 0;
	}

	.tn-front-page .tn-home-scene--visit {
		grid-row: auto;
	}

	.tn-front-page .tn-home-reasons__layout {
		gap: 3.5rem;
	}
}

@media (max-width: 900px) {
	.tn-front-page .tn-home-hero {
		min-height: 0;
		padding-top: 3.25rem;
	}

	.tn-front-page .tn-home-hero::before {
		display: none;
	}

	.tn-front-page .tn-home-hero__grid {
		grid-template-columns: 1fr;
		gap: 2.75rem;
	}

	.tn-front-page .tn-home-hero__visual {
		min-height: 0;
	}

	.tn-front-page .tn-home-hero__visual::after {
		inset: 24px -12px -18px 28px;
	}

	.tn-front-page .tn-home-hero__photo,
	.tn-front-page .tn-home-hero__photo > img {
		min-height: 0;
	}

	.tn-front-page .tn-home-hero__photo {
		aspect-ratio: 16 / 10;
	}

	.tn-front-page .tn-home-hero__photo > img {
		object-position: 63% center;
	}

	.tn-front-page .tn-home-reasons__layout {
		grid-template-columns: 1fr;
		gap: 2.75rem;
	}

	.tn-front-page .tn-home-reasons__photo,
	.tn-front-page .tn-home-reasons__photo > img {
		min-height: 480px;
	}
}

@media (max-width: 700px) {
	.tn-front-page .tn-home-hero h1 span {
		white-space: normal;
	}

	.tn-front-page .tn-home-hero__features li:not(:last-child)::after {
		display: none;
	}

	.tn-front-page .tn-home-hero__photo {
		aspect-ratio: 4 / 3;
	}

	.tn-front-page .tn-home-hero__photo figcaption {
		right: .85rem;
		bottom: .85rem;
		min-width: calc(100% - 1.7rem);
	}

	.tn-front-page .tn-home-scenes__grid {
		grid-template-columns: 1fr;
		grid-template-rows: none;
	}

	.tn-front-page .tn-home-scene {
		min-height: 270px;
	}

	.tn-front-page .tn-home-scene--visit {
		min-height: 340px;
	}

	.tn-front-page .tn-home-reasons__photo,
	.tn-front-page .tn-home-reasons__photo > img {
		min-height: 390px;
	}
}

@media (max-width: 560px) {
	.tn-front-page .tn-home-hero {
		padding: 2.75rem 0 3.5rem;
	}

	.tn-front-page .tn-home-hero h1 {
		font-size: clamp(2rem, 10vw, 2.8rem);
	}

	.tn-front-page .tn-home-hero__photo {
		aspect-ratio: 1 / 1;
	}

	.tn-front-page .tn-home-hero__photo > img {
		object-position: 70% center;
	}

	.tn-front-page .tn-home-service-card {
		border-radius: 10px;
	}

	.tn-front-page .tn-home-scenes__grid {
		gap: .8rem;
	}

	.tn-front-page .tn-home-scene,
	.tn-front-page .tn-home-scene--visit {
		min-height: 260px;
	}

	.tn-front-page .tn-home-scene__content em {
		display: none;
	}

	.tn-front-page .tn-home-reasons__photo,
	.tn-front-page .tn-home-reasons__photo > img {
		min-height: 320px;
	}

	.tn-front-page .tn-home-reasons__photo figcaption {
		inset: auto .85rem .85rem;
		align-items: center;
	}

	.tn-front-page .tn-home-reasons__photo figcaption strong {
		font-size: 2rem;
	}

	.tn-front-page .tn-home-reasons__list article {
		grid-template-columns: 38px minmax(0, 1fr);
		gap: .7rem;
	}
}

/* =========================================================
   v7.1 brand clarity + manufacturer product presentation
========================================================= */
.tn-front-page .tn-home-hero__identity {
	display: grid;
	justify-items: start;
	margin-bottom: 1.35rem;
	padding-left: 1rem;
	border-left: 4px solid var(--tn-green);
}

.tn-front-page .tn-home-hero__identity-en {
	color: var(--tn-blue);
	font-size: .68rem;
	font-weight: 850;
	letter-spacing: .22em;
	line-height: 1.2;
}

.tn-front-page .tn-home-hero__identity strong {
	margin-top: .18rem;
	color: var(--tn-navy-dark);
	font-size: clamp(1.3rem, 2vw, 1.72rem);
	font-weight: 850;
	letter-spacing: .035em;
	line-height: 1.35;
}

.tn-front-page .tn-home-hero__identity small {
	margin-top: .18rem;
	color: var(--tn-text-sub);
	font-size: .74rem;
	font-weight: 650;
	letter-spacing: .035em;
}

.tn-front-page .tn-home-hero h1 {
	font-size: clamp(2.25rem, 3.7vw, 3.8rem);
}

.tn-front-page .tn-home-hero__headline-accent {
	position: relative;
	display: inline-block;
	width: fit-content;
	color: var(--tn-blue);
}

.tn-front-page .tn-home-hero__headline-accent::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: .05em;
	height: .16em;
	background: rgba(60, 141, 131, .20);
	z-index: -1;
}

.tn-front-page .tn-home-hero__photo figcaption {
	left: 1.35rem;
	right: 1.35rem;
	min-width: 0;
}

.tn-front-page .tn-home-hero__photo figcaption span {
	letter-spacing: .045em;
}

.tn-front-page .tn-home-makers {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	margin: -1rem 0 2rem;
	padding: 1rem 1.15rem;
	border-top: 1px solid var(--tn-line);
	border-bottom: 1px solid var(--tn-line);
	gap: 1.35rem;
}

.tn-front-page .tn-home-makers > p {
	margin: 0;
	color: var(--tn-text-sub);
	font-size: .7rem;
	font-weight: 800;
	letter-spacing: .08em;
	white-space: nowrap;
}

.tn-front-page .tn-home-makers ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
	gap: .55rem;
}

.tn-front-page .tn-home-makers li {
	display: flex;
	align-items: baseline;
	padding: .52rem .72rem;
	border: 1px solid #d8e2e6;
	border-radius: 999px;
	background: #f8fafb;
	gap: .42rem;
}

.tn-front-page .tn-home-makers strong {
	color: var(--tn-navy);
	font-size: .7rem;
	letter-spacing: .07em;
}

.tn-front-page .tn-home-makers span {
	color: var(--tn-text-sub);
	font-size: .68rem;
}

.tn-front-page .tn-home-service-card__media {
	min-height: 270px;
	background: linear-gradient(145deg, #f8fafb 0%, #edf3f5 100%);
}

.tn-front-page .tn-home-service-card__media img {
	max-width: 78%;
	max-height: 225px;
	filter: drop-shadow(0 18px 20px rgba(15, 45, 62, .12));
}

.tn-front-page .tn-home-service-card__product {
	display: grid;
	margin: .7rem 0 .85rem;
	padding: .65rem .75rem;
	border-left: 3px solid var(--tn-green);
	background: #f4f8f8;
	gap: .12rem;
}

.tn-front-page .tn-home-service-card__product small {
	color: var(--tn-text-sub);
	font-size: .63rem;
	font-weight: 750;
	letter-spacing: .06em;
}

.tn-front-page .tn-home-service-card__product b {
	color: var(--tn-navy);
	font-size: .76rem;
	font-weight: 780;
	line-height: 1.45;
}

@media (max-width: 900px) {
	.tn-front-page .tn-home-hero__identity {
		margin-bottom: 1.1rem;
	}

	.tn-front-page .tn-home-makers {
		grid-template-columns: 1fr;
		gap: .75rem;
	}
}

@media (max-width: 560px) {
	.tn-front-page .tn-home-hero__identity strong {
		font-size: 1.22rem;
	}

	.tn-front-page .tn-home-hero__identity small {
		font-size: .68rem;
	}

	.tn-front-page .tn-home-makers li {
		align-items: flex-start;
		border-radius: 8px;
		flex-direction: column;
		gap: .08rem;
	}

	.tn-front-page .tn-home-service-card__media {
		min-height: 230px;
	}
}

/* =========================================================
   v7.2 restrained corporate redesign
   - no AI-generated photos on the homepage
   - manufacturer product imagery + typography
========================================================= */
:root {
	--tn-v72-ink: #132f40;
	--tn-v72-blue: #205b79;
	--tn-v72-green: #3c8279;
	--tn-v72-paper: #f4f3ef;
	--tn-v72-soft: #eef2f3;
	--tn-v72-line: #d6dde0;
	--tn-v72-muted: #627079;
}

.tn-site .tn-section {
	padding-block: clamp(4.5rem, 7vw, 7rem);
}

.tn-v72-kicker {
	margin: 0 0 .8rem;
	color: var(--tn-v72-blue);
	font-size: .74rem;
	font-weight: 760;
	letter-spacing: .08em;
}

.tn-v72-section-head {
	max-width: 860px;
	margin-bottom: clamp(2.8rem, 5vw, 4.5rem);
}

.tn-v72-section-head h2,
.tn-v72-intro h2,
.tn-v72-support h2,
.tn-v72-area h2,
.tn-v72-faq h2 {
	margin: 0;
	font-size: clamp(1.85rem, 3vw, 2.75rem);
	line-height: 1.45;
	letter-spacing: 0;
}

/* Hero */
.tn-v72-hero {
	padding: clamp(3.5rem, 6vw, 6.5rem) 0 0;
	border-bottom: 1px solid var(--tn-v72-line);
	background: #fbfaf7;
}

.tn-v72-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, .95fr) minmax(500px, 1.05fr);
	align-items: center;
	gap: clamp(3rem, 6vw, 7rem);
}

.tn-v72-hero__copy {
	padding-bottom: clamp(3rem, 6vw, 5.5rem);
}

.tn-v72-hero h1 {
	margin: 0 0 1.5rem;
	letter-spacing: 0;
}

.tn-v72-hero h1 strong,
.tn-v72-hero h1 span {
	display: block;
}

.tn-v72-hero h1 strong {
	margin-bottom: .65rem;
	color: var(--tn-v72-ink);
	font-size: clamp(2.75rem, 5vw, 5rem);
	font-weight: 780;
	line-height: 1.16;
	letter-spacing: .015em;
}

.tn-v72-hero h1 span {
	max-width: 660px;
	color: var(--tn-v72-ink);
	font-size: clamp(1.7rem, 2.7vw, 2.65rem);
	font-weight: 650;
	line-height: 1.45;
}

.tn-v72-hero__lead {
	max-width: 660px;
	margin: 0;
	color: var(--tn-v72-muted);
	font-size: 1rem;
	line-height: 2;
}

.tn-v72-hero__actions {
	display: flex;
	align-items: stretch;
	margin-top: 2.1rem;
	gap: 1rem;
}

.tn-v72-phone {
	display: grid;
	grid-template-columns: auto auto;
	align-content: center;
	min-width: 260px;
	padding: .75rem 1.1rem;
	border-left: 3px solid var(--tn-v72-green);
	color: var(--tn-v72-ink);
	text-decoration: none;
}

.tn-v72-phone span,
.tn-v72-phone small {
	color: var(--tn-v72-muted);
	font-size: .68rem;
	line-height: 1.45;
}

.tn-v72-phone span {
	grid-column: 1 / 3;
}

.tn-v72-phone strong {
	font-size: 1.65rem;
	line-height: 1.2;
	letter-spacing: .025em;
}

.tn-v72-phone small {
	align-self: end;
	padding: 0 0 .12rem .7rem;
}

.tn-v72-hero__products {
	align-self: stretch;
	padding: clamp(2rem, 4vw, 3.5rem);
	border-left: 1px solid var(--tn-v72-line);
	background: var(--tn-v72-soft);
}

.tn-v72-hero__products-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	padding-bottom: 1.1rem;
	border-bottom: 1px solid #cdd6d9;
	gap: 1rem;
}

.tn-v72-hero__products-head span {
	color: var(--tn-v72-ink);
	font-size: .84rem;
	font-weight: 760;
}

.tn-v72-hero__products-head small {
	color: var(--tn-v72-muted);
	font-size: .68rem;
}

.tn-v72-hero__product-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 470px;
}

.tn-v72-hero-product {
	display: grid;
	grid-template-rows: minmax(0, 1fr) auto;
	padding: 1.6rem 1.1rem 1.25rem;
	border-right: 1px solid #cdd6d9;
	color: var(--tn-v72-ink);
	text-decoration: none;
	transition: background .18s ease;
}

.tn-v72-hero-product:last-child {
	border-right: 0;
}

.tn-v72-hero-product:hover {
	background: rgba(255,255,255,.45);
	color: var(--tn-v72-ink);
}

.tn-v72-hero-product__image {
	display: grid;
	place-items: center;
	min-height: 330px;
}

.tn-v72-hero-product__image img {
	width: 100%;
	max-width: 260px;
	max-height: 300px;
	object-fit: contain;
}

.tn-v72-hero-product__image--mfp img {
	max-width: 235px;
	max-height: 330px;
}

.tn-v72-hero-product > div:last-child {
	display: grid;
	padding-top: 1rem;
	border-top: 1px solid #cdd6d9;
	gap: .15rem;
}

.tn-v72-hero-product small {
	color: var(--tn-v72-muted);
	font-size: .66rem;
}

.tn-v72-hero-product strong {
	font-size: 1rem;
}

.tn-v72-facts {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-top: 1px solid var(--tn-v72-line);
}

.tn-v72-facts > div {
	display: grid;
	padding: 1.4rem 1.2rem;
	border-right: 1px solid var(--tn-v72-line);
	gap: .15rem;
}

.tn-v72-facts > div:last-child {
	border-right: 0;
}

.tn-v72-facts strong {
	color: var(--tn-v72-ink);
	font-size: .92rem;
}

.tn-v72-facts span {
	color: var(--tn-v72-muted);
	font-size: .7rem;
}

/* Intro */
.tn-v72-intro {
	background: #fff;
}

.tn-v72-intro__grid {
	display: grid;
	grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
	align-items: start;
	gap: clamp(3rem, 8vw, 8rem);
}

.tn-v72-intro__grid > div:last-child {
	padding-top: 1.8rem;
	border-top: 1px solid var(--tn-v72-line);
}

.tn-v72-intro__grid > div:last-child p {
	margin: 0 0 1.3rem;
	color: var(--tn-v72-muted);
	line-height: 2;
}

/* Product service rows */
.tn-v72-services {
	background: var(--tn-v72-paper);
}

.tn-v72-service-list {
	border-top: 1px solid #cfd5d6;
}

.tn-v72-service-row {
	display: grid;
	grid-template-columns: minmax(340px, .9fr) minmax(0, 1.1fr);
	min-height: 410px;
	border-bottom: 1px solid #cfd5d6;
}

.tn-v72-service-row:nth-child(even) .tn-v72-service-row__media {
	order: 2;
	border-right: 0;
	border-left: 1px solid #cfd5d6;
}

.tn-v72-service-row__media {
	display: grid;
	place-items: center;
	padding: clamp(2rem, 4vw, 4rem);
	border-right: 1px solid #cfd5d6;
	background: #f8f8f6;
}

.tn-v72-service-row__media img {
	width: 100%;
	max-width: 480px;
	max-height: 310px;
	object-fit: contain;
	transition: transform .22s ease;
}

.tn-v72-service-row__media:hover img {
	transform: translateY(-3px);
}

.tn-v72-service-row--cybersecurity .tn-v72-service-row__media img {
	max-width: 390px;
}

.tn-v72-service-row__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(2.4rem, 5vw, 5rem);
}

.tn-v72-service-row__category {
	margin: 0 0 .6rem;
	color: var(--tn-v72-muted);
	font-size: .7rem;
	font-weight: 700;
}

.tn-v72-service-row h3 {
	margin: 0 0 .9rem;
	font-size: clamp(1.65rem, 2.6vw, 2.3rem);
	letter-spacing: 0;
}

.tn-v72-service-row h3 a {
	color: var(--tn-v72-ink);
	text-decoration: none;
}

.tn-v72-service-row__body > p:not(.tn-v72-service-row__category) {
	max-width: 590px;
	margin: 0 0 1.4rem;
	color: var(--tn-v72-muted);
	line-height: 1.9;
}

.tn-v72-product-meta {
	margin: 0 0 1.5rem;
	border-top: 1px solid #ccd3d5;
}

.tn-v72-product-meta > div {
	display: grid;
	grid-template-columns: 110px minmax(0, 1fr);
	padding: .65rem 0;
	border-bottom: 1px solid #ccd3d5;
	gap: 1rem;
}

.tn-v72-product-meta dt {
	color: var(--tn-v72-muted);
	font-size: .68rem;
}

.tn-v72-product-meta dd {
	margin: 0;
	color: var(--tn-v72-ink);
	font-size: .77rem;
	font-weight: 650;
}

.tn-v72-arrow-link {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	padding-bottom: .25rem;
	border-bottom: 1px solid var(--tn-v72-ink);
	color: var(--tn-v72-ink);
	font-size: .82rem;
	font-weight: 700;
	text-decoration: none;
	gap: .6rem;
}

.tn-v72-arrow-link .tn-icon {
	width: 1rem;
}

/* Related services */
.tn-v72-support {
	background: #fff;
}

.tn-v72-support__grid {
	display: grid;
	grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
	gap: clamp(3rem, 8vw, 8rem);
}

.tn-v72-support header > p:last-child {
	max-width: 500px;
	color: var(--tn-v72-muted);
}

.tn-v72-support__links {
	border-top: 1px solid var(--tn-v72-line);
}

.tn-v72-support__links a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 94px;
	padding: 1.15rem 0;
	border-bottom: 1px solid var(--tn-v72-line);
	color: var(--tn-v72-ink);
	text-decoration: none;
}

.tn-v72-support__links a:hover {
	color: var(--tn-v72-blue);
}

.tn-v72-support__links span {
	display: grid;
	gap: .12rem;
}

.tn-v72-support__links small {
	color: var(--tn-v72-muted);
	font-size: .66rem;
}

.tn-v72-support__links strong {
	font-size: 1.18rem;
}

/* Problems */
.tn-v72-problems {
	background: var(--tn-v72-ink);
	color: #fff;
}

.tn-v72-section-head--light h2,
.tn-v72-problems .tn-v72-kicker {
	color: #fff;
}

.tn-v72-problems .tn-v72-kicker {
	opacity: .68;
}

.tn-v72-problem-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-top: 1px solid rgba(255,255,255,.25);
}

.tn-v72-problem-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 76px;
	padding: 1rem 1.1rem 1rem 0;
	border-right: 1px solid rgba(255,255,255,.25);
	border-bottom: 1px solid rgba(255,255,255,.25);
	color: rgba(255,255,255,.9);
	font-size: .88rem;
	text-decoration: none;
	gap: 1rem;
}

.tn-v72-problem-list a:nth-child(even) {
	padding-left: 1.1rem;
	border-right: 0;
}

.tn-v72-problem-list a:hover {
	color: #fff;
}

.tn-v72-problem-list .tn-icon {
	width: 1rem;
}

/* Why */
.tn-v72-why {
	background: #fff;
}

.tn-v72-why__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid var(--tn-v72-line);
}

.tn-v72-why__grid article {
	padding: 2rem 2rem 1rem 0;
	border-right: 1px solid var(--tn-v72-line);
}

.tn-v72-why__grid article:not(:first-child) {
	padding-left: 2rem;
}

.tn-v72-why__grid article:last-child {
	border-right: 0;
}

.tn-v72-why__grid span {
	color: var(--tn-v72-green);
	font-size: .68rem;
	font-weight: 800;
}

.tn-v72-why__grid h3 {
	margin: .7rem 0 .55rem;
	font-size: 1.2rem;
}

.tn-v72-why__grid p {
	margin: 0;
	color: var(--tn-v72-muted);
	font-size: .87rem;
	line-height: 1.85;
}

/* Flow */
.tn-v72-flow {
	background: var(--tn-v72-paper);
}

.tn-v72-flow__list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 0;
	padding: 0;
	border-top: 1px solid #cfd5d6;
	list-style: none;
}

.tn-v72-flow__list li {
	padding: 1.8rem 1.5rem 1rem 0;
	border-right: 1px solid #cfd5d6;
}

.tn-v72-flow__list li:not(:first-child) {
	padding-left: 1.5rem;
}

.tn-v72-flow__list li:last-child {
	border-right: 0;
}

.tn-v72-flow__list li > span {
	display: block;
	margin-bottom: 1.1rem;
	color: var(--tn-v72-green);
	font-size: 1.4rem;
	font-weight: 700;
}

.tn-v72-flow__list h3 {
	margin: 0 0 .45rem;
	font-size: 1.05rem;
}

.tn-v72-flow__list p {
	margin: 0;
	color: var(--tn-v72-muted);
	font-size: .8rem;
	line-height: 1.8;
}

/* Area */
.tn-v72-area {
	background: #fff;
}

.tn-v72-area__grid {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
	align-items: start;
	gap: clamp(3rem, 8vw, 8rem);
}

.tn-v72-area__grid > div:first-child > p:last-child {
	color: var(--tn-v72-muted);
}

.tn-v72-area__locations {
	border-top: 1px solid var(--tn-v72-line);
}

.tn-v72-area__locations > div {
	padding: 1.4rem 0;
	border-bottom: 1px solid var(--tn-v72-line);
}

.tn-v72-area__locations h3 {
	margin: 0 0 .35rem;
	font-size: 1rem;
}

.tn-v72-area__locations p {
	margin: 0;
	color: var(--tn-v72-muted);
	font-size: .86rem;
}

.tn-v72-area__locations small {
	display: block;
	margin-top: 1rem;
	color: var(--tn-v72-muted);
	font-size: .7rem;
}

/* FAQ */
.tn-v72-faq {
	border-top: 1px solid var(--tn-v72-line);
	background: #fff;
}

.tn-v72-faq__grid {
	display: grid;
	grid-template-columns: minmax(260px, .65fr) minmax(0, 1.35fr);
	gap: clamp(3rem, 8vw, 8rem);
}

.tn-v72-faq__list {
	border-top: 1px solid var(--tn-v72-line);
}

.tn-v72-faq details {
	border-bottom: 1px solid var(--tn-v72-line);
}

.tn-v72-faq summary {
	position: relative;
	padding: 1.3rem 2.5rem 1.3rem 0;
	color: var(--tn-v72-ink);
	font-weight: 700;
	list-style: none;
	cursor: pointer;
}

.tn-v72-faq summary::-webkit-details-marker {
	display: none;
}

.tn-v72-faq summary::after {
	content: "+";
	position: absolute;
	right: .3rem;
	top: 50%;
	color: var(--tn-v72-blue);
	font-size: 1.3rem;
	font-weight: 400;
	transform: translateY(-50%);
}

.tn-v72-faq details[open] summary::after {
	content: "−";
}

.tn-v72-faq details p {
	margin: 0;
	padding: 0 2rem 1.4rem 0;
	color: var(--tn-v72-muted);
	font-size: .86rem;
	line-height: 1.85;
}

/* Global lower-page restraint */
.tn-page-hero {
	padding: clamp(3.2rem, 6vw, 5.2rem) 0;
	border-bottom: 1px solid var(--tn-v72-line);
	background: #f7f6f2;
}

.tn-page-hero::after {
	display: none;
}

.tn-page-hero .tn-eyebrow:empty,
.tn-page-hero .tn-eyebrow {
	display: none;
}

.tn-page-hero h1 {
	max-width: 900px;
	margin-bottom: .9rem;
	font-size: clamp(2.15rem, 4vw, 3.7rem);
	line-height: 1.35;
	letter-spacing: 0;
}

.tn-page-hero__lead {
	max-width: 820px;
	color: var(--tn-v72-muted);
	line-height: 1.9;
}

.tn-service-intro--v72 {
	background: #fff;
}

.tn-service-intro--v72 .tn-service-intro__grid {
	grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
	gap: clamp(3rem, 8vw, 8rem);
}

.tn-service-intro__copy h2 {
	margin: 0 0 1rem;
	font-size: clamp(1.65rem, 2.7vw, 2.35rem);
	letter-spacing: 0;
}

.tn-service-intro__copy > p:not(.tn-service-intro__label) {
	color: var(--tn-v72-muted);
	line-height: 1.95;
}

.tn-service-intro__label {
	margin: 0 0 .7rem;
	color: var(--tn-v72-blue);
	font-size: .72rem;
	font-weight: 750;
}

.tn-service-intro__points {
	display: flex;
	flex-wrap: wrap;
	margin: 1.6rem 0 0;
	padding: 0;
	border-top: 1px solid var(--tn-v72-line);
	list-style: none;
}

.tn-service-intro__points li {
	padding: .75rem 1.1rem .75rem 0;
	color: var(--tn-v72-ink);
	font-size: .76rem;
	font-weight: 650;
}

.tn-service-intro__media {
	display: grid;
	min-height: 430px;
	padding: 2.5rem;
	place-items: center;
	border: 1px solid var(--tn-v72-line);
	background: #f5f6f4;
}

.tn-service-detail-image {
	max-width: 100%;
	max-height: 380px;
	object-fit: contain;
}

.tn-v72-detail-sections .tn-v72-detail-section {
	border-top: 1px solid var(--tn-v72-line);
	background: #fff;
}

.tn-v72-detail-sections .tn-v72-detail-section:nth-child(even) {
	background: #f8f7f4;
}

.tn-v72-detail-sections .tn-detail-section {
	grid-template-columns: minmax(220px, .34fr) minmax(0, .66fr);
	gap: clamp(2.8rem, 7vw, 7rem);
}

.tn-v72-detail-sections .tn-detail-section__heading h2 {
	margin: 0;
	font-size: clamp(1.45rem, 2.2vw, 2rem);
	line-height: 1.55;
	letter-spacing: 0;
}

.tn-v72-detail-sections .tn-detail-lead {
	color: var(--tn-v72-muted);
	line-height: 1.95;
}

.tn-v72-detail-sections .tn-check-grid {
	border-top: 1px solid var(--tn-v72-line);
}

.tn-v72-detail-sections .tn-check-grid li {
	position: relative;
	padding: .9rem 1rem .9rem 1.3rem;
	background: transparent;
}

.tn-v72-detail-sections .tn-check-grid li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 1.45rem;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--tn-v72-green);
}

.tn-v72-detail-sections .tn-info-columns {
	border-color: var(--tn-v72-line);
}

.tn-v72-detail-sections .tn-info-columns article {
	background: transparent;
}

.tn-v72-detail-sections .tn-table thead th {
	background: var(--tn-v72-ink);
}

@media (max-width: 1050px) {
	.tn-v72-hero__grid {
		grid-template-columns: minmax(0, 1fr) minmax(430px, .9fr);
		gap: 3rem;
	}

	.tn-v72-hero h1 strong {
		font-size: clamp(2.55rem, 5vw, 4rem);
	}

	.tn-v72-service-row {
		grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
	}
}

@media (max-width: 900px) {
	.tn-v72-hero {
		padding-top: 3.25rem;
	}

	.tn-v72-hero__grid,
	.tn-v72-intro__grid,
	.tn-v72-support__grid,
	.tn-v72-area__grid,
	.tn-v72-faq__grid,
	.tn-service-intro--v72 .tn-service-intro__grid,
	.tn-v72-detail-sections .tn-detail-section {
		grid-template-columns: 1fr;
	}

	.tn-v72-hero__copy {
		padding-bottom: 1rem;
	}

	.tn-v72-hero__products {
		border-top: 1px solid var(--tn-v72-line);
		border-left: 0;
	}

	.tn-v72-facts {
		grid-template-columns: 1fr 1fr;
	}

	.tn-v72-facts > div:nth-child(2) {
		border-right: 0;
	}

	.tn-v72-facts > div:nth-child(-n+2) {
		border-bottom: 1px solid var(--tn-v72-line);
	}

	.tn-v72-service-row,
	.tn-v72-service-row:nth-child(even) {
		grid-template-columns: 1fr;
	}

	.tn-v72-service-row:nth-child(even) .tn-v72-service-row__media {
		order: 0;
		border-left: 0;
	}

	.tn-v72-service-row__media {
		min-height: 330px;
		border-right: 0;
		border-bottom: 1px solid #cfd5d6;
	}

	.tn-v72-why__grid,
	.tn-v72-flow__list {
		grid-template-columns: 1fr 1fr;
	}

	.tn-v72-why__grid article:nth-child(2),
	.tn-v72-flow__list li:nth-child(2) {
		border-right: 0;
	}

	.tn-v72-why__grid article,
	.tn-v72-flow__list li {
		border-bottom: 1px solid var(--tn-v72-line);
	}
}

@media (max-width: 620px) {
	.tn-site .tn-container {
		width: min(calc(100% - 34px), var(--tn-container));
	}

	.tn-v72-hero h1 strong {
		font-size: clamp(2.3rem, 12vw, 3.35rem);
	}

	.tn-v72-hero h1 span {
		font-size: clamp(1.45rem, 7vw, 2rem);
	}

	.tn-v72-hero__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.tn-v72-phone {
		min-width: 0;
	}

	.tn-v72-hero__products {
		padding: 1.35rem;
	}

	.tn-v72-hero__product-grid {
		min-height: 0;
	}

	.tn-v72-hero-product {
		padding: 1rem .65rem;
	}

	.tn-v72-hero-product__image {
		min-height: 230px;
	}

	.tn-v72-hero-product__image img {
		max-height: 210px;
	}

	.tn-v72-facts,
	.tn-v72-problem-list,
	.tn-v72-why__grid,
	.tn-v72-flow__list {
		grid-template-columns: 1fr;
	}

	.tn-v72-facts > div,
	.tn-v72-facts > div:nth-child(2) {
		border-right: 0;
		border-bottom: 1px solid var(--tn-v72-line);
	}

	.tn-v72-problem-list a,
	.tn-v72-problem-list a:nth-child(even) {
		padding-left: 0;
		border-right: 0;
	}

	.tn-v72-why__grid article,
	.tn-v72-why__grid article:not(:first-child),
	.tn-v72-flow__list li,
	.tn-v72-flow__list li:not(:first-child) {
		padding-left: 0;
		border-right: 0;
	}

	.tn-v72-service-row__media {
		min-height: 260px;
		padding: 2rem;
	}

	.tn-v72-product-meta > div {
		grid-template-columns: 1fr;
		gap: .2rem;
	}

	.tn-service-intro__media {
		min-height: 300px;
		padding: 1.5rem;
	}

	.tn-v72-detail-sections .tn-check-grid,
	.tn-v72-detail-sections .tn-info-columns,
	.tn-v72-detail-sections .tn-info-columns:has(article:nth-child(3)) {
		grid-template-columns: 1fr;
	}
}


/* =========================================================
   v7.2.1 — Hero product panel balance correction
   ========================================================= */
.tn-v72-hero__products {
	align-self: center;
	padding: clamp(1.6rem, 3vw, 2.35rem);
	border: 1px solid #d4dddf;
	background: #f1f5f4;
}

.tn-v72-hero__product-grid {
	display: grid;
	grid-template-columns: 1fr;
	min-height: 0;
}

.tn-v72-hero-product {
	display: grid;
	grid-template-columns: 168px minmax(0, 1fr);
	grid-template-rows: none;
	align-items: center;
	min-height: 205px;
	padding: 1.35rem 0;
	border-right: 0;
	border-bottom: 1px solid #cbd5d7;
	gap: clamp(1.2rem, 2.4vw, 1.75rem);
}

.tn-v72-hero-product:last-child {
	border-bottom: 0;
}

.tn-v72-hero-product__image {
	display: grid;
	place-items: center;
	width: 168px;
	height: 172px;
	min-height: 0;
	padding: 1rem;
	border: 1px solid #dce3e4;
	background: #fff;
}

.tn-v72-hero-product__image img {
	width: 100%;
	max-width: 138px;
	max-height: 138px;
	object-fit: contain;
}

.tn-v72-hero-product__image--mfp img {
	max-width: 92px;
	max-height: 150px;
}

.tn-v72-hero-product > div:last-child {
	display: grid;
	align-content: center;
	padding: 0;
	border-top: 0;
	gap: .24rem;
}

.tn-v72-hero-product small {
	font-size: .68rem;
	font-weight: 650;
	letter-spacing: .02em;
}

.tn-v72-hero-product strong {
	font-size: 1.08rem;
	line-height: 1.45;
}

.tn-v72-hero-product__models {
	margin-top: .18rem;
	color: var(--tn-v72-muted);
	font-size: .7rem;
	line-height: 1.65;
}

@media (max-width: 900px) {
	.tn-v72-hero__products {
		border-left: 1px solid #d4dddf;
	}
}

@media (max-width: 620px) {
	.tn-v72-hero__products {
		padding: 1.15rem 1.2rem;
	}

	.tn-v72-hero__products-head {
		padding-bottom: .85rem;
	}

	.tn-v72-hero-product {
		grid-template-columns: 108px minmax(0, 1fr);
		min-height: 145px;
		padding: 1rem 0;
		gap: 1rem;
	}

	.tn-v72-hero-product__image {
		width: 108px;
		height: 116px;
		padding: .65rem;
	}

	.tn-v72-hero-product__image img {
		max-width: 92px;
		max-height: 88px;
	}

	.tn-v72-hero-product__image--mfp img {
		max-width: 62px;
		max-height: 103px;
	}

	.tn-v72-hero-product strong {
		font-size: .95rem;
	}

	.tn-v72-hero-product__models {
		font-size: .64rem;
		line-height: 1.55;
	}
}

/* =========================================================
   v7.2.2 — Browser QA corrections
   ========================================================= */

/* Keep the fixed child-theme header below the WordPress admin bar. */
body.admin-bar .tn-header {
	top: 32px;
}

body.admin-bar .tn-mobile-menu {
	top: calc(32px + var(--tn-header-height));
	max-height: calc(100dvh - 32px - var(--tn-header-height));
}

/* Product images have different source backgrounds; use one white stage. */
.tn-v72-service-row__media {
	background: #fff;
}

@media screen and (max-width: 782px) {
	body.admin-bar .tn-header {
		top: 46px;
	}

	body.admin-bar .tn-mobile-menu {
		top: calc(46px + var(--tn-header-height));
		max-height: calc(100dvh - 46px - var(--tn-header-height));
	}
}

/* =========================================================
   v7.2.3 — Natural Japanese heading wrapping
   ========================================================= */

.tn-v72-hero h1 strong,
.tn-v72-hero h1 > span,
.tn-v72-intro h2,
.tn-v72-section-head h2,
.tn-v72-service-row h3,
.tn-v72-support h2,
.tn-v72-area h2,
.tn-v72-faq h2,
.tn-contact-cta h2 {
	word-break: auto-phrase;
	text-wrap: wrap;
}

.tn-v72-hero h1 strong > span {
	display: inline-block;
	font-size: inherit;
}

.tn-wrap-line {
	display: block;
}

.tn-wrap-phrase {
	display: inline-block;
	white-space: nowrap;
}

.tn-v72-intro h2,
.tn-v72-support h2,
.tn-v72-faq h2 {
	font-size: clamp(1.85rem, 2.7vw, 2.4rem);
}

/* =========================================================
   Company page v7.3.3
========================================================= */
.tn-site .tn-company-page {
	overflow: clip;
}

.tn-site .tn-company-kicker {
	margin: 0 0 .7rem;
	color: var(--tn-blue);
	font-size: .76rem;
	font-weight: 800;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.tn-site .tn-company-heading {
	max-width: 760px;
	margin-bottom: clamp(2.2rem, 4vw, 3.6rem);
}

.tn-site .tn-company-heading h2,
.tn-site .tn-company-overview h2,
.tn-site .tn-company-area-section h2 {
	margin: 0 0 1rem;
}

.tn-site .tn-company-heading > p:last-child,
.tn-site .tn-company-overview__copy > p,
.tn-site .tn-company-area-section__grid > div:first-child > p {
	color: var(--tn-text-sub);
}

.tn-site .tn-company-overview {
	background: linear-gradient(180deg, #fff 0%, #f7fafb 100%);
}

.tn-site .tn-company-overview__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.28fr) minmax(320px, .72fr);
	align-items: center;
	gap: clamp(3rem, 7vw, 7rem);
}

.tn-site .tn-company-overview__copy p {
	max-width: 760px;
	margin: 0 0 1.2rem;
}

.tn-site .tn-company-facts {
	display: grid;
	border-top: 1px solid var(--tn-line-strong);
	border-bottom: 1px solid var(--tn-line-strong);
}

.tn-site .tn-company-facts > div {
	display: grid;
	grid-template-columns: minmax(110px, .9fr) 1.1fr;
	align-items: baseline;
	padding: 1.4rem 0;
	border-bottom: 1px solid var(--tn-line);
	gap: 1rem;
}

.tn-site .tn-company-facts > div:last-child {
	border-bottom: 0;
}

.tn-site .tn-company-facts strong {
	color: var(--tn-navy);
	font-size: clamp(1.6rem, 3.2vw, 2.45rem);
	font-weight: 780;
	line-height: 1;
}

.tn-site .tn-company-facts span {
	color: var(--tn-text-sub);
	font-size: .92rem;
}

.tn-site .tn-company-values {
	position: relative;
	background: var(--tn-navy-dark);
	color: rgba(255, 255, 255, .78);
}

.tn-site .tn-company-values::before {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px) 0 0 / 80px 80px,
		linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px) 0 0 / 80px 80px;
	content: "";
	pointer-events: none;
}

.tn-site .tn-company-values .tn-container {
	position: relative;
}

.tn-site .tn-company-heading--light h2,
.tn-site .tn-company-values h3 {
	color: #fff;
}

.tn-site .tn-company-heading--light > p:last-child {
	color: rgba(255,255,255,.72);
}

.tn-site .tn-company-values .tn-company-kicker {
	color: #9fc9d8;
}

.tn-site .tn-company-values__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid rgba(255,255,255,.18);
	border-bottom: 1px solid rgba(255,255,255,.18);
}

.tn-site .tn-company-values__grid article {
	position: relative;
	min-height: 310px;
	padding: 2.2rem clamp(1.4rem, 3vw, 2.5rem) 2.4rem;
	border-right: 1px solid rgba(255,255,255,.18);
}

.tn-site .tn-company-values__grid article:last-child {
	border-right: 0;
}

.tn-site .tn-company-values__number {
	display: block;
	margin-bottom: 2.5rem;
	color: rgba(255,255,255,.26);
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: .14em;
}

.tn-site .tn-company-values__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin-bottom: 1.4rem;
	border: 1px solid rgba(255,255,255,.22);
	border-radius: 2px;
	color: #d6edf5;
}

.tn-site .tn-company-values__icon svg {
	display: block;
	width: 32px;
	height: 32px;
	stroke: currentColor;
	stroke-width: 1.9;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.tn-site .tn-company-values__grid h3 {
	margin: 0 0 .8rem;
}

.tn-site .tn-company-values__grid p {
	margin: 0;
	color: rgba(255,255,255,.7);
}

.tn-site .tn-company-message {
	background: #fff;
}

.tn-site .tn-company-message__grid {
	display: grid;
	grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
	align-items: center;
	gap: clamp(3rem, 7vw, 7rem);
}

.tn-site .tn-company-message__photo {
	margin: 0;
	border: 1px solid var(--tn-line-strong);
	background: var(--tn-bg-soft);
}

.tn-site .tn-company-message__image {
	display: block;
	width: 100%;
	aspect-ratio: 1.03 / 1;
	object-fit: cover;
	object-position: center top;
}

.tn-site .tn-company-message__photo figcaption {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	padding: 1rem 1.15rem;
	border-top: 1px solid var(--tn-line);
	gap: 1rem;
}

.tn-site .tn-company-message__photo figcaption span {
	color: var(--tn-text-sub);
	font-size: .78rem;
	letter-spacing: .08em;
}

.tn-site .tn-company-message__photo figcaption strong {
	color: var(--tn-navy);
	font-size: 1.05rem;
}

.tn-site .tn-company-message__body h2 {
	margin: 0 0 1.5rem;
}

.tn-site .tn-company-message__text {
	position: relative;
	padding-left: clamp(1.25rem, 2.5vw, 2.2rem);
	border-left: 2px solid var(--tn-blue);
}

.tn-site .tn-company-message__text p {
	margin: 0 0 1.25rem;
	color: var(--tn-text-sub);
}

.tn-site .tn-company-message__signature {
	margin: 1.8rem 0 0;
	color: var(--tn-navy);
	font-weight: 760;
	text-align: right;
}

.tn-site .tn-company-services {
	background: var(--tn-bg-soft);
}

.tn-site .tn-company-services__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-top: 1px solid var(--tn-line-strong);
}

.tn-site .tn-company-services__grid > a {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr) 28px;
	align-items: center;
	min-height: 140px;
	padding: 1.4rem 1.25rem;
	border-right: 1px solid var(--tn-line-strong);
	border-bottom: 1px solid var(--tn-line-strong);
	color: inherit;
	text-decoration: none;
	gap: 1rem;
	transition: background .18s ease, color .18s ease;
}

.tn-site .tn-company-services__grid > a:nth-child(even) {
	border-right: 0;
}

.tn-site .tn-company-services__grid > a:hover {
	background: #fff;
}

.tn-site .tn-company-services__icon {
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	border: 1px solid var(--tn-line-strong);
	background: #fff;
	color: var(--tn-blue);
}

.tn-site .tn-company-services__icon .tn-icon,
.tn-site .tn-company-services__arrow .tn-icon {
	width: 21px;
	height: 21px;
}

.tn-site .tn-company-services__body {
	display: grid;
	gap: .35rem;
}

.tn-site .tn-company-services__body strong {
	color: var(--tn-navy);
	font-size: 1.04rem;
}

.tn-site .tn-company-services__body small {
	color: var(--tn-text-sub);
	font-size: .84rem;
	line-height: 1.7;
}

.tn-site .tn-company-services__arrow {
	color: var(--tn-blue);
}

.tn-site .tn-company-profile-section {
	background: #fff;
}

.tn-site .tn-company-profile-v733 {
	border-top: 2px solid var(--tn-navy);
}

.tn-site .tn-company-profile-v733 dl {
	margin: 0;
}

.tn-site .tn-company-profile-v733 dl > div {
	display: grid;
	grid-template-columns: minmax(150px, 240px) minmax(0, 1fr);
	border-bottom: 1px solid var(--tn-line);
}

.tn-site .tn-company-profile-v733 dt,
.tn-site .tn-company-profile-v733 dd {
	margin: 0;
	padding: 1.15rem 1.35rem;
}

.tn-site .tn-company-profile-v733 dt {
	background: var(--tn-bg-soft);
	color: var(--tn-navy);
	font-weight: 760;
}

.tn-site .tn-company-profile-v733 dd {
	color: var(--tn-text-sub);
}

.tn-site .tn-company-profile-v733 a {
	color: var(--tn-blue);
	font-weight: 760;
}

.tn-site .tn-company-area-section {
	background: var(--tn-bg-blue);
}

.tn-site .tn-company-area-panel {
	max-width: 1080px;
}

.tn-site .tn-company-area-lead {
	max-width: 960px;
}

.tn-site .tn-company-area-lists {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 2rem;
	border-top: 1px solid var(--tn-line-strong);
}

.tn-site .tn-company-area-lists > div {
	padding: 1.4rem 1.25rem 1.2rem 0;
	border-bottom: 1px solid var(--tn-line-strong);
}

.tn-site .tn-company-area-lists > div + div {
	padding-left: 1.25rem;
	border-left: 1px solid var(--tn-line-strong);
}

.tn-site .tn-company-area-lists h3,
.tn-site .tn-company-area-lists p {
	margin: 0;
}

.tn-site .tn-company-area-lists h3 {
	font-size: clamp(1.7rem, 2.1vw, 2.25rem);
	line-height: 1.28;
	letter-spacing: -.02em;
}

.tn-site .tn-company-area-lists p {
	margin-top: .75rem;
	color: var(--tn-text-sub);
	font-size: 1rem;
	line-height: 1.85;
}

.tn-site .tn-company-area-note {
	margin-top: 1.6rem;
	font-size: .95rem;
}

.tn-site .tn-company-office-section {
	background: #fff;
}

.tn-site .tn-company-office-section__grid {
	display: grid;
	grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
	align-items: stretch;
	border: 1px solid var(--tn-line-strong);
}

.tn-site .tn-company-office-section__info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(2rem, 5vw, 4rem);
	background: var(--tn-bg-soft);
}

.tn-site .tn-company-office-section__info h3 {
	margin: 0 0 .65rem;
}

.tn-site .tn-company-office-section__address {
	margin: 0 0 1.2rem;
	color: var(--tn-navy);
	font-weight: 700;
}

.tn-site .tn-company-office-section__info > p:not(.tn-company-office-section__address) {
	margin: 0 0 1.8rem;
	color: var(--tn-text-sub);
}

.tn-site .tn-company-office-section__info .tn-button {
	align-self: flex-start;
}

.tn-site .tn-company-office-section__map iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 420px;
}

@media (max-width: 900px) {
	.tn-site .tn-company-overview__grid,
	.tn-site .tn-company-message__grid,
		.tn-site .tn-company-office-section__grid {
		grid-template-columns: 1fr;
	}

	.tn-site .tn-company-facts {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.tn-site .tn-company-facts > div {
		display: block;
		padding: 1.25rem;
		border-right: 1px solid var(--tn-line);
		border-bottom: 0;
	}

	.tn-site .tn-company-facts > div:last-child {
		border-right: 0;
	}

	.tn-site .tn-company-facts span {
		display: block;
		margin-top: .45rem;
	}

	.tn-site .tn-company-values__grid {
		grid-template-columns: 1fr;
	}

	.tn-site .tn-company-values__grid article {
		min-height: auto;
		border-right: 0;
		border-bottom: 1px solid rgba(255,255,255,.18);
	}

	.tn-site .tn-company-values__grid article:last-child {
		border-bottom: 0;
	}

	.tn-site .tn-company-message__photo {
		max-width: 650px;
	}

}

@media (max-width: 640px) {
	.tn-site .tn-company-facts {
		grid-template-columns: 1fr;
	}

	.tn-site .tn-company-facts > div {
		display: grid;
		grid-template-columns: 120px 1fr;
		padding: 1.15rem 0;
		border-right: 0;
		border-bottom: 1px solid var(--tn-line);
	}

	.tn-site .tn-company-facts > div:last-child {
		border-bottom: 0;
	}

	.tn-site .tn-company-facts span {
		margin-top: 0;
	}

	.tn-site .tn-company-services__grid {
		grid-template-columns: 1fr;
	}

	.tn-site .tn-company-services__grid > a,
	.tn-site .tn-company-services__grid > a:nth-child(even) {
		border-right: 0;
	}

	.tn-site .tn-company-profile-v733 dl > div {
		grid-template-columns: 1fr;
	}

	.tn-site .tn-company-profile-v733 dt {
		padding-bottom: .4rem;
	}

	.tn-site .tn-company-profile-v733 dd {
		padding-top: .2rem;
	}

	.tn-site .tn-company-area-lists {
		grid-template-columns: 1fr;
	}

	.tn-site .tn-company-area-lists > div + div {
		padding-left: 0;
		border-left: 0;
	}

	.tn-site .tn-company-office-section__info {
		padding: 1.6rem;
	}

	.tn-site .tn-company-office-section__map iframe {
		min-height: 340px;
	}
}

.tn-site .tn-company-services__grid > a:last-child:nth-child(odd) {
	grid-column: 1 / -1;
	border-right: 0;
}

@media (max-width: 640px) {
	.tn-site .tn-company-services__grid > a:last-child:nth-child(odd) {
		grid-column: auto;
	}
}


/* =========================================================
   Company overview redesign v7.4.1
========================================================= */
.tn-site .tn-company-overview {
	background: #fff;
}

.tn-site .tn-company-overview__heading {
	max-width: 920px;
}

.tn-site .tn-company-overview__heading h2 {
	max-width: 860px;
	margin: 0;
	font-size: clamp(2.2rem, 4vw, 3.75rem);
	line-height: 1.3;
	letter-spacing: -.035em;
}

.tn-site .tn-company-overview__body {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(2rem, 5vw, 5rem);
	max-width: 1080px;
	margin-top: clamp(2rem, 4vw, 3.2rem);
	padding-top: clamp(1.5rem, 3vw, 2.2rem);
	border-top: 1px solid var(--tn-line-strong);
}

.tn-site .tn-company-overview__body p {
	max-width: none;
	margin: 0;
	color: var(--tn-text-sub);
	font-size: 1rem;
	line-height: 2;
}

.tn-site .tn-company-overview__body {
	margin-bottom: 0;
}

.tn-site .tn-company-facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	max-width: 1080px;
	margin-top: clamp(2rem, 4vw, 3rem);
	border-top: 1px solid var(--tn-line-strong);
	border-bottom: 1px solid var(--tn-line-strong);
}

.tn-site .tn-company-facts > div,
.tn-site .tn-company-facts > div:first-child {
	display: flex;
	grid-template-columns: none;
	align-items: baseline;
	min-width: 0;
	padding: 1.25rem clamp(1rem, 2.4vw, 1.8rem);
	border-right: 1px solid var(--tn-line);
	border-bottom: 0;
	gap: .75rem;
}

.tn-site .tn-company-facts > div:first-child {
	padding-left: 0;
}

.tn-site .tn-company-facts > div:last-child {
	border-right: 0;
}

.tn-site .tn-company-facts strong {
	color: var(--tn-navy);
	font-size: clamp(1.4rem, 2.4vw, 1.95rem);
	font-weight: 780;
	line-height: 1.1;
	white-space: nowrap;
}

.tn-site .tn-company-facts span {
	display: inline;
	margin-top: 0;
	color: var(--tn-text-sub);
	font-size: .88rem;
	line-height: 1.55;
}

@media (max-width: 900px) {
	.tn-site .tn-company-overview__body {
		grid-template-columns: 1fr;
		gap: 1.2rem;
	}

	.tn-site .tn-company-facts > div,
	.tn-site .tn-company-facts > div:first-child {
		display: block;
		padding: 1.2rem;
	}

	.tn-site .tn-company-facts > div:first-child {
		padding-left: 1.2rem;
	}

	.tn-site .tn-company-facts span {
		display: block;
		margin-top: .4rem;
	}
}

@media (max-width: 640px) {
	.tn-site .tn-company-overview__heading h2 {
		font-size: clamp(2rem, 10vw, 2.7rem);
	}

	.tn-site .tn-company-facts {
		grid-template-columns: 1fr;
	}

	.tn-site .tn-company-facts > div,
	.tn-site .tn-company-facts > div:first-child {
		display: grid;
		grid-template-columns: 105px 1fr;
		padding: 1.1rem 0;
		border-right: 0;
		border-bottom: 1px solid var(--tn-line);
	}

	.tn-site .tn-company-facts > div:last-child {
		border-bottom: 0;
	}

	.tn-site .tn-company-facts span {
		display: block;
		margin-top: 0;
	}
}

/* =========================================================
   Company overview readability fix v7.4.3
========================================================= */
.tn-site .tn-company-overview {
	background: #f8fafb;
}

.tn-site .tn-company-overview .tn-container {
	max-width: 1180px;
}

.tn-site .tn-company-overview__heading {
	max-width: 900px;
}

.tn-site .tn-company-overview__heading h2 {
	max-width: 900px;
	font-size: clamp(2.25rem, 3.4vw, 3rem);
	line-height: 1.42;
	letter-spacing: -.025em;
}

.tn-site .tn-company-overview__body {
	display: block;
	max-width: 820px;
	margin-top: clamp(2rem, 4vw, 3rem);
	padding: 0 0 0 clamp(1.25rem, 2.5vw, 2rem);
	border-top: 0;
	border-left: 3px solid var(--tn-blue);
}

.tn-site .tn-company-overview__body p {
	max-width: 820px;
	margin: 0;
	color: #435d6c;
	font-size: clamp(1rem, 1.2vw, 1.08rem);
	line-height: 2;
}

.tn-site .tn-company-overview__body p + p {
	margin-top: 1.35rem;
}

@media (max-width: 640px) {
	.tn-site .tn-company-overview__heading h2 {
		font-size: clamp(2rem, 9vw, 2.55rem);
		line-height: 1.4;
	}

	.tn-site .tn-company-overview__body {
		padding-left: 1rem;
	}

	.tn-site .tn-company-overview__body p {
		font-size: 1rem;
		line-height: 1.9;
	}
}

/* =========================================================
   IT support price page v7.4.4
   ========================================================= */
.tn-price-page {
	--tn-price-navy: #16384d;
	--tn-price-blue: #215a78;
	--tn-price-green: #3c8d83;
	--tn-price-orange: #e38a43;
	--tn-price-pale: #f3f7f8;
	--tn-price-border: #d8e2e6;
	color: #253844;
}

.tn-price-page .tn-section-heading {
	max-width: 820px;
	margin-bottom: 42px;
}

.tn-price-page .tn-section-heading h2 {
	font-size: clamp(30px, 4vw, 48px);
	letter-spacing: -.035em;
	line-height: 1.25;
}

.tn-price-summary {
	padding-top: 54px;
	padding-bottom: 88px;
}

.tn-price-summary__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
	gap: clamp(34px, 6vw, 84px);
	align-items: center;
}

.tn-price-summary__copy h2 {
	max-width: 760px;
	margin: 12px 0 24px;
	font-size: clamp(34px, 4.7vw, 58px);
	line-height: 1.22;
	letter-spacing: -.045em;
	color: var(--tn-price-navy);
}

.tn-price-summary__copy > p:not(.tn-eyebrow) {
	max-width: 760px;
	font-size: 17px;
	line-height: 2;
	color: #50636d;
}

.tn-price-summary__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 28px;
}

.tn-price-summary__badges span {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 8px 14px;
	border: 1px solid #c9d9df;
	border-radius: 999px;
	background: #fff;
	font-size: 13px;
	font-weight: 700;
	color: var(--tn-price-blue);
}

.tn-price-summary__badges span::before {
	content: "";
	width: 7px;
	height: 7px;
	margin-right: 8px;
	border-radius: 50%;
	background: var(--tn-price-green);
}

.tn-price-summary__card {
	position: relative;
	overflow: hidden;
	padding: 36px 34px 32px;
	border-radius: 6px;
	background: var(--tn-price-navy);
	color: #fff;
	box-shadow: 0 22px 50px rgba(22, 56, 77, .18);
}

.tn-price-summary__card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: var(--tn-price-orange);
}

.tn-price-summary__card-label,
.tn-price-summary__card-min,
.tn-price-summary__card-tax,
.tn-price-summary__card > p:last-child {
	margin: 0;
}

.tn-price-summary__card-label {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .08em;
}

.tn-price-summary__card-min {
	margin-top: 26px;
	font-size: 13px;
	color: #cbd9df;
}

.tn-price-summary__card-value {
	margin: 3px 0 0;
	font-size: clamp(44px, 5vw, 68px);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -.055em;
}

.tn-price-summary__card-tax {
	margin-top: 8px;
	font-size: 14px;
	font-weight: 700;
	color: #dce8ec;
}

.tn-price-summary__card hr {
	margin: 28px 0 22px;
	border: 0;
	border-top: 1px solid rgba(255,255,255,.18);
}

.tn-price-summary__card > p:last-child {
	font-size: 14px;
	line-height: 1.8;
	color: #d8e4e8;
}

.tn-price-rules,
.tn-price-costs,
.tn-price-faq {
	background: var(--tn-price-pale);
}

.tn-price-rule-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-top: 1px solid var(--tn-price-border);
	border-bottom: 1px solid var(--tn-price-border);
}

.tn-price-rule-grid article {
	padding: 30px 26px 32px;
	border-right: 1px solid var(--tn-price-border);
}

.tn-price-rule-grid article:last-child {
	border-right: 0;
}

.tn-price-rule-grid article > span {
	display: block;
	margin-bottom: 26px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .12em;
	color: var(--tn-price-green);
}

.tn-price-rule-grid h3 {
	margin: 0 0 14px;
	font-size: 20px;
	line-height: 1.5;
	color: var(--tn-price-navy);
}

.tn-price-rule-grid p {
	margin: 0;
	font-size: 14px;
	line-height: 1.9;
	color: #5a6d76;
}

.tn-price-case-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.tn-price-case-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 300px;
	padding: 30px;
	border: 1px solid var(--tn-price-border);
	border-radius: 4px;
	background: #fff;
	transition: transform .2s ease, box-shadow .2s ease;
}

.tn-price-case-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 38px rgba(22,56,77,.09);
}

.tn-price-case-card__icon {
	display: grid;
	place-items: center;
	width: 50px;
	height: 50px;
	margin-bottom: 24px;
	border-radius: 50%;
	background: #eaf2f4;
	color: var(--tn-price-blue);
}

.tn-price-case-card__icon .tn-icon {
	width: 25px;
	height: 25px;
}

.tn-price-case-card h3 {
	margin: 0 0 13px;
	font-size: 19px;
	line-height: 1.55;
	color: var(--tn-price-navy);
}

.tn-price-case-card p {
	margin: 0 0 24px;
	font-size: 14px;
	line-height: 1.9;
	color: #5c6e77;
}

.tn-price-case-card > span {
	margin-top: auto;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .06em;
	color: var(--tn-price-green);
}

.tn-price-combined-note {
	display: grid;
	grid-template-columns: 260px minmax(0,1fr);
	gap: 26px;
	align-items: center;
	margin-top: 26px;
	padding: 24px 28px;
	border-left: 4px solid var(--tn-price-orange);
	background: #fff8f1;
}

.tn-price-combined-note strong {
	font-size: 16px;
	color: var(--tn-price-navy);
}

.tn-price-combined-note p {
	margin: 0;
	font-size: 14px;
	line-height: 1.85;
	color: #5b6870;
}

.tn-price-estimate {
	padding-top: 28px;
	padding-bottom: 28px;
	background: #fff;
}

.tn-price-estimate__panel {
	display: grid;
	grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
	gap: clamp(36px, 7vw, 96px);
	align-items: center;
	padding: clamp(40px, 6vw, 72px);
	background: var(--tn-price-navy);
	color: #fff;
}

.tn-price-estimate__panel h2 {
	margin: 12px 0 18px;
	font-size: clamp(28px, 3.5vw, 42px);
	line-height: 1.35;
	letter-spacing: -.03em;
	color: #fff;
}

.tn-price-estimate__panel p:not(.tn-eyebrow) {
	margin: 0;
	font-size: 15px;
	line-height: 1.9;
	color: #d3e0e5;
}

.tn-price-estimate__panel ul {
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid rgba(255,255,255,.18);
}

.tn-price-estimate__panel li {
	position: relative;
	padding: 17px 10px 17px 28px;
	border-bottom: 1px solid rgba(255,255,255,.18);
	font-size: 15px;
	font-weight: 700;
}

.tn-price-estimate__panel li::before {
	content: "";
	position: absolute;
	left: 3px;
	top: 50%;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--tn-price-orange);
	transform: translateY(-50%);
}

.tn-price-support-grid,
.tn-price-cost-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.tn-price-support-card,
.tn-price-cost-grid article {
	padding: 34px;
	border: 1px solid var(--tn-price-border);
	background: #fff;
}

.tn-price-support-card--free {
	border-top: 4px solid var(--tn-price-green);
}

.tn-price-support-card:not(.tn-price-support-card--free) {
	border-top: 4px solid var(--tn-price-orange);
}

.tn-price-support-card__label,
.tn-price-cost-grid__label {
	margin: 0 0 13px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
	color: var(--tn-price-green);
}

.tn-price-support-card:not(.tn-price-support-card--free) .tn-price-support-card__label {
	color: #b96b2d;
}

.tn-price-support-card h3,
.tn-price-cost-grid h3 {
	margin: 0 0 20px;
	font-size: 23px;
	line-height: 1.5;
	color: var(--tn-price-navy);
}

.tn-price-support-card ul,
.tn-price-cost-grid ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.tn-price-support-card li,
.tn-price-cost-grid li {
	position: relative;
	padding: 10px 0 10px 24px;
	border-top: 1px solid #e2e9ec;
	font-size: 14px;
	line-height: 1.7;
}

.tn-price-support-card li::before,
.tn-price-cost-grid li::before {
	content: "";
	position: absolute;
	left: 3px;
	top: 19px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--tn-price-green);
}

.tn-price-support-note {
	margin: 22px 0 0;
	padding: 20px 24px;
	background: #f2f7f6;
	font-size: 14px;
	line-height: 1.9;
	color: #53656d;
}

.tn-price-cost-grid article:first-child {
	border-top: 4px solid var(--tn-price-blue);
}

.tn-price-cost-grid article:last-child {
	border-top: 4px solid var(--tn-price-orange);
}

.tn-price-cost-grid article:last-child .tn-price-cost-grid__label {
	color: #b96b2d;
}

.tn-price-cost-grid article > p:last-child {
	margin: 0;
	font-size: 15px;
	line-height: 2;
	color: #536770;
}

.tn-price-flow-list {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid var(--tn-price-border);
	border-bottom: 1px solid var(--tn-price-border);
}

.tn-price-flow-list li {
	position: relative;
	padding: 28px 22px 30px;
	border-right: 1px solid var(--tn-price-border);
}

.tn-price-flow-list li:last-child {
	border-right: 0;
}

.tn-price-flow-list li > span {
	display: block;
	margin-bottom: 22px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .12em;
	color: var(--tn-price-green);
}

.tn-price-flow-list h3 {
	margin: 0 0 10px;
	font-size: 18px;
	line-height: 1.5;
	color: var(--tn-price-navy);
}

.tn-price-flow-list p {
	margin: 0;
	font-size: 13px;
	line-height: 1.85;
	color: #5b6c75;
}

.tn-price-faq__container {
	max-width: 980px;
}

.tn-price-faq-list {
	border-top: 1px solid #cddadd;
}

.tn-price-faq-list details {
	border-bottom: 1px solid #cddadd;
}

.tn-price-faq-list summary {
	position: relative;
	padding: 24px 58px 24px 54px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.7;
	color: var(--tn-price-navy);
	cursor: pointer;
	list-style: none;
}

.tn-price-faq-list summary::-webkit-details-marker {
	display: none;
}

.tn-price-faq-list summary::before {
	content: "Q";
	position: absolute;
	left: 8px;
	top: 22px;
	font-size: 15px;
	font-weight: 800;
	color: var(--tn-price-green);
}

.tn-price-faq-list summary::after {
	content: "+";
	position: absolute;
	right: 12px;
	top: 50%;
	font-size: 25px;
	font-weight: 300;
	color: var(--tn-price-blue);
	transform: translateY(-50%);
}

.tn-price-faq-list details[open] summary::after {
	content: "−";
}

.tn-price-faq-list details > div {
	padding: 0 54px 26px;
}

.tn-price-faq-list details p {
	margin: 0;
	font-size: 14px;
	line-height: 1.95;
	color: #5a6d76;
}

@media (max-width: 960px) {
	.tn-price-summary__grid,
	.tn-price-estimate__panel {
		grid-template-columns: 1fr;
	}

	.tn-price-summary__card {
		max-width: 520px;
	}

	.tn-price-rule-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tn-price-rule-grid article:nth-child(2) {
		border-right: 0;
	}

	.tn-price-rule-grid article:nth-child(-n+2) {
		border-bottom: 1px solid var(--tn-price-border);
	}

	.tn-price-case-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tn-price-flow-list {
		grid-template-columns: 1fr;
	}

	.tn-price-flow-list li {
		display: grid;
		grid-template-columns: 52px minmax(0,1fr);
		gap: 8px;
		border-right: 0;
		border-bottom: 1px solid var(--tn-price-border);
	}

	.tn-price-flow-list li:last-child {
		border-bottom: 0;
	}

	.tn-price-flow-list li > span {
		margin: 3px 0 0;
	}
}

@media (max-width: 680px) {
	.tn-price-summary {
		padding-top: 34px;
		padding-bottom: 62px;
	}

	.tn-price-summary__copy h2 {
		font-size: 34px;
	}

	.tn-price-summary__copy > p:not(.tn-eyebrow) {
		font-size: 15px;
		line-height: 1.9;
	}

	.tn-price-summary__card {
		padding: 30px 24px 26px;
	}

	.tn-price-rule-grid,
	.tn-price-case-grid,
	.tn-price-support-grid,
	.tn-price-cost-grid {
		grid-template-columns: 1fr;
	}

	.tn-price-rule-grid article {
		border-right: 0;
		border-bottom: 1px solid var(--tn-price-border);
	}

	.tn-price-rule-grid article:last-child {
		border-bottom: 0;
	}

	.tn-price-case-card {
		min-height: 0;
		padding: 26px 24px;
	}

	.tn-price-combined-note {
		grid-template-columns: 1fr;
		gap: 8px;
		padding: 22px;
	}

	.tn-price-estimate__panel {
		padding: 34px 24px;
	}

	.tn-price-support-card,
	.tn-price-cost-grid article {
		padding: 27px 23px;
	}

	.tn-price-faq-list summary {
		padding: 21px 42px 21px 38px;
		font-size: 15px;
	}

	.tn-price-faq-list summary::before {
		left: 2px;
		top: 20px;
	}

	.tn-price-faq-list summary::after {
		right: 4px;
	}

	.tn-price-faq-list details > div {
		padding: 0 38px 22px;
	}
}
