:root {
	--bg: #f4f5f7;
	--bg-2: #e9ecf1;
	--surface: #ffffff;
	--line: rgba(22, 32, 47, 0.13);
	--line-2: rgba(22, 32, 47, 0.07);
	--text: #16202f;
	--muted: #5a6473;
	--muted-2: #8b94a3;
	--accent: #1b4a8f;
	--accent-dim: rgba(27, 74, 143, 0.14);
	--sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
	--mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
	--maxw: 1320px;
	--pad: clamp(20px, 5vw, 72px);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id], #top { scroll-margin-top: 92px; }

body {
	background: var(--bg);
	color: var(--text);
	font-family: var(--sans);
	font-weight: 400;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

::selection { background: var(--accent); color: #fff; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.mono { font-family: var(--mono); font-weight: 500; letter-spacing: 0.04em; }

.eyebrow {
	font-family: var(--mono);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--accent);
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.eyebrow::before {
	content: "";
	width: 22px;
	height: 1px;
	background: var(--accent);
	display: inline-block;
}

/* ---------- NAV ---------- */
header.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	border-bottom: 1px solid transparent;
	transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}
header.nav.scrolled {
	background: rgba(244, 245, 247, 0.82);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--line);
}
.nav-inner {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 var(--pad);
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.brand {
	display: flex;
	align-items: center;
	gap: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	font-size: 15px;
}
.brand .dot {
	width: 9px;
	height: 9px;
	background: var(--accent);
	border-radius: 50%;
	flex: none;
}
.brand span { color: var(--muted); font-weight: 400; letter-spacing: 0.14em; }

nav.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 13px; color: var(--muted); transition: color 0.2s; letter-spacing: 0.01em; }
.nav-links a:hover { color: var(--text); }

.nav-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--mono);
	font-size: 13px;
	font-weight: 500;
	color: var(--text);
	border: 1px solid var(--line);
	padding: 10px 16px;
	border-radius: 2px;
	transition: all 0.2s;
}
.nav-cta:hover { border-color: var(--accent); color: var(--accent); }
.nav-cta b { color: var(--accent); }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.burger span { width: 22px; height: 2px; background: var(--text); transition: 0.3s; display: block; }

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
	position: fixed;
	top: 72px;
	left: 0;
	right: 0;
	z-index: 150;
	background: rgba(244, 245, 247, 0.97);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	padding: 8px var(--pad) 20px;
	gap: 0;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
@media (prefers-reduced-motion: reduce) {
	.mobile-menu { transition: none; }
}
.mobile-menu.open {
	pointer-events: auto;
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.mobile-menu a {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.01em;
	padding: 14px 0;
	border-bottom: 1px solid var(--line);
	color: var(--text);
}
.mobile-menu a:last-child { border-bottom: none; color: var(--accent); }

/* ---------- HERO ---------- */
.hero { position: relative; padding-top: 148px; padding-bottom: 72px; overflow: hidden; }
.grid-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-image:
		linear-gradient(var(--line-2) 1px, transparent 1px),
		linear-gradient(90deg, var(--line-2) 1px, transparent 1px);
	background-size: 64px 64px;
	-webkit-mask-image: radial-gradient(120% 90% at 70% 0%, #000 30%, transparent 78%);
	mask-image: radial-gradient(120% 90% at 70% 0%, #000 30%, transparent 78%);
}
.hero-inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 56px;
	align-items: start;
}
.hero-meta {
	display: flex;
	gap: 26px;
	flex-wrap: wrap;
	margin-bottom: 30px;
	font-family: var(--mono);
	font-size: 12px;
	color: var(--muted-2);
	letter-spacing: 0.04em;
}
.hero-meta strong { color: var(--text); font-weight: 500; }

h1.hero-title {
	font-size: clamp(40px, 6.4vw, 90px);
	line-height: 0.98;
	font-weight: 700;
	letter-spacing: -0.025em;
	text-wrap: balance;
}
h1.hero-title .o { color: var(--accent); }

.hero-sub {
	margin-top: 26px;
	font-size: clamp(16px, 1.5vw, 19px);
	color: var(--muted);
	max-width: 46ch;
	line-height: 1.55;
}
.hero-actions {
	margin-top: 36px;
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	align-items: center;
}

/* ---------- BUTTONS ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: var(--mono);
	font-size: 14px;
	font-weight: 500;
	padding: 15px 24px;
	border-radius: 2px;
	transition: all 0.22s;
	cursor: pointer;
	border: 1px solid transparent;
}
.btn-primary { background: var(--accent); color: #fff; font-weight: 700; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px -10px var(--accent); }
.btn-ghost { border-color: var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--text); }
.btn .arrow { transition: transform 0.22s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- HERO VISUAL ---------- */
.hero-visual {
	position: relative;
	aspect-ratio: 1 / 1;
	border: 1px solid var(--line);
	background:
		radial-gradient(120% 120% at 80% 10%, rgba(27, 74, 143, 0.06), transparent 60%),
		var(--bg-2);
	border-radius: 3px;
	overflow: hidden;
}
.hv-label {
	position: absolute;
	top: 14px;
	left: 16px;
	z-index: 3;
	font-family: var(--mono);
	font-size: 11px;
	color: var(--muted-2);
	letter-spacing: 0.1em;
}
.hv-label2 {
	position: absolute;
	bottom: 14px;
	right: 16px;
	z-index: 3;
	font-family: var(--mono);
	font-size: 11px;
	color: var(--accent);
	letter-spacing: 0.1em;
}
.hero-photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}
.hv-corner { position: absolute; width: 10px; height: 10px; border-color: var(--accent); z-index: 3; }
.hv-corner.tl { top: 8px; left: 8px; border-top: 1px solid; border-left: 1px solid; }
.hv-corner.br { bottom: 8px; right: 8px; border-bottom: 1px solid; border-right: 1px solid; }

/* ---------- TICKER ---------- */
.ticker {
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	overflow: hidden;
	background: var(--bg-2);
	margin-top: 64px;
}
.ticker-track {
	display: flex;
	gap: 46px;
	white-space: nowrap;
	padding: 15px 0;
	width: max-content;
}
.ticker-track span {
	font-family: var(--mono);
	font-size: 13px;
	color: var(--muted);
	letter-spacing: 0.04em;
	display: inline-flex;
	gap: 46px;
	align-items: center;
}
.ticker-track span::after {
	content: "";
	width: 5px;
	height: 5px;
	background: var(--accent);
	border-radius: 50%;
}

@media (prefers-reduced-motion: no-preference) {
	.ticker-track { animation: scroll 38s linear infinite; }
}
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- SECTION BACKGROUNDS ---------- */
.bg-surface { background: var(--surface); }
.bg-2 { background: var(--bg-2); }

/* ---------- SECTION SCAFFOLD ---------- */
section { position: relative; }
.sec-pad { padding: clamp(72px, 9vw, 128px) 0; }
.sec-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 54px;
	flex-wrap: wrap;
}
.sec-head h2 {
	font-size: clamp(28px, 3.6vw, 46px);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.04;
	max-width: 18ch;
	text-wrap: balance;
}
.sec-idx {
	font-family: var(--mono);
	font-size: 12px;
	color: var(--muted-2);
	letter-spacing: 0.1em;
	white-space: nowrap;
}

/* ---------- STATS ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.stat {
	padding: 38px 28px 34px;
	border-bottom: 1px solid var(--line);
	border-right: 1px solid var(--line);
}
.stat:nth-child(4n) { border-right: none; }
.stat .num { font-size: clamp(34px, 4vw, 54px); font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.stat .num b { color: var(--accent); font-weight: 700; }
.stat .lab { margin-top: 12px; font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.04em; line-height: 1.5; }

/* ---------- SERVICES ---------- */
.svc-list { border-top: 1px solid var(--line); }
.svc {
	display: grid;
	grid-template-columns: 64px 1fr auto;
	gap: 28px;
	align-items: center;
	padding: 30px 4px;
	border-bottom: 1px solid var(--line);
	cursor: default;
	transition: background 0.3s;
	position: relative;
}
.svc::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 0;
	background: var(--accent-dim);
	z-index: 0;
}
@media (prefers-reduced-motion: no-preference) {
	.svc::before { transition: width 0.35s ease; }
	.svc:hover::before { width: 100%; }
	.svc h3 { transition: transform 0.3s; }
	.svc:hover h3 { transform: translateX(8px); }
	.svc .go { transition: color 0.3s; }
	.svc .go .arrow { transition: transform 0.3s; }
	.svc:hover .go .arrow { transform: translate(4px, -4px); }
}
.svc > * { position: relative; z-index: 1; }
.svc .n { font-family: var(--mono); font-size: 13px; color: var(--accent); }
.svc .body { padding-right: 20px; }
.svc h3 { font-size: clamp(20px, 2.3vw, 30px); font-weight: 700; letter-spacing: -0.015em; }
.svc p { margin-top: 8px; color: var(--muted); font-size: 15px; max-width: 62ch; line-height: 1.55; }
.svc .go { font-family: var(--mono); font-size: 13px; color: var(--muted-2); display: inline-flex; align-items: center; gap: 10px; }
.svc:hover .go { color: var(--accent); }

/* ---------- VALUES ---------- */
.values { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--line); }
.value {
	padding: clamp(28px, 3.4vw, 48px);
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}
.value:nth-child(2n) { border-right: none; }
.value:nth-last-child(-n+2) { border-bottom: none; }
.value .vn { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 0.1em; }
.value h3 { margin-top: 18px; font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }
.value p { margin-top: 12px; color: var(--muted); font-size: 15px; line-height: 1.6; max-width: 48ch; }

/* ---------- SEGMENTS ---------- */
.seg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.seg {
	border: 1px solid var(--line);
	border-radius: 3px;
	padding: 30px;
	background: var(--surface);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
@media (prefers-reduced-motion: no-preference) {
	.seg { transition: transform 0.3s, border-color 0.3s; }
	.seg:hover { transform: translateY(-4px); border-color: rgba(22, 32, 47, 0.26); }
}
.seg .ico { width: 46px; height: 46px; }
.seg h3 { margin-top: 26px; font-size: 20px; font-weight: 700; letter-spacing: -0.01em; }
.seg p { margin-top: 11px; color: var(--muted); font-size: 14.5px; line-height: 1.6; }
.seg .tag { position: absolute; top: 18px; right: 18px; font-family: var(--mono); font-size: 11px; color: var(--muted-2); }

/* ---------- PROCESS ---------- */
.proc { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.step { padding: 34px 24px 30px 0; border-top: 2px solid transparent; position: relative; }
.step::before { content: ""; position: absolute; top: -1px; left: 0; width: 40px; height: 2px; background: var(--accent); }
.step .sn { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 0.1em; }
.step h3 { margin-top: 18px; font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
.step p { margin-top: 10px; color: var(--muted); font-size: 14px; line-height: 1.55; }

/* ---------- QUOTE ---------- */
.quote-band {
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background:
		radial-gradient(90% 140% at 12% 0%, rgba(27, 74, 143, 0.08), transparent 60%),
		var(--bg-2);
}
.quote-inner {
	padding: clamp(64px, 8vw, 112px) 0 clamp(64px, 8vw, 112px) clamp(24px, 5vw, 80px);
	display: grid;
	grid-template-columns: auto 1fr;
	gap: clamp(28px, 5vw, 72px);
	align-items: start;
}
.quote-mark { font-family: Georgia, serif; font-size: 120px; line-height: 0.6; color: var(--accent); height: 60px; }
.quote-inner blockquote { font-size: clamp(24px, 3.4vw, 44px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.12; text-wrap: balance; }
.quote-cite { margin-top: 26px; font-family: var(--mono); font-size: 13px; color: var(--muted); letter-spacing: 0.06em; }

/* ---------- CONTACT ---------- */
.contact { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.contact-info .ci-row {
	padding: 24px 0;
	border-bottom: 1px solid var(--line);
	display: grid;
	grid-template-columns: 160px 1fr;
	gap: 18px;
	align-items: baseline;
}
.contact-info .ci-row:first-of-type { border-top: 1px solid var(--line); }
.ci-row .k { font-family: var(--mono); font-size: 12px; color: var(--muted-2); letter-spacing: 0.08em; text-transform: uppercase; }
.ci-row .v { font-size: 17px; }
.ci-row .v a { transition: color 0.2s; }
.ci-row .v a:hover { color: var(--accent); }
.ci-row .v .big { font-size: 26px; font-weight: 700; letter-spacing: -0.01em; color: var(--accent); }
.phone-card {
	margin-top: 32px;
	border: 1px solid var(--line);
	border-radius: 3px;
	padding: 28px;
	background: var(--surface);
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: space-between;
	flex-wrap: wrap;
}
.phone-card .pc-l .lab { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }
.phone-card .pc-l .num { font-size: 24px; font-weight: 700; margin-top: 6px; letter-spacing: -0.01em; }

/* ---------- FORM ---------- */
.form {
	border: 1px solid var(--line);
	border-radius: 3px;
	padding: clamp(24px, 3vw, 40px);
	background: var(--surface);
}
.form h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }
.form .fhint { margin-top: 8px; color: var(--muted); font-size: 14px; }
.field { margin-top: 22px; }
.field label { display: block; font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 9px; }
.field input,
.field textarea {
	width: 100%;
	background: var(--bg);
	border: 1px solid var(--line);
	color: var(--text);
	font-family: var(--sans);
	font-size: 15px;
	padding: 13px 15px;
	border-radius: 2px;
	transition: border-color 0.2s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus,
.field textarea:focus { outline: none; border-color: var(--accent); }
.form .btn-primary { width: 100%; justify-content: center; margin-top: 26px; }
.form-error { display: none; margin-top: 18px; color: #b3261e; font-size: 13.5px; }
.form-error.show { display: block; }
.form-success { display: none; text-align: center; padding: 40px 10px; }
.form-success.show { display: block; }
.form-success .chk {
	width: 54px;
	height: 54px;
	border: 2px solid var(--accent);
	border-radius: 50%;
	display: grid;
	place-items: center;
	margin: 0 auto 18px;
	color: var(--accent);
	font-size: 24px;
}

/* ---------- FOOTER ---------- */
footer { border-top: 1px solid var(--line); padding: 56px 0 40px; }
.foot-top { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; align-items: flex-start; }
.foot-brand { font-weight: 700; letter-spacing: 0.14em; font-size: 18px; display: flex; align-items: center; gap: 11px; }
.foot-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.foot-col h4 { font-family: var(--mono); font-size: 11px; color: var(--muted-2); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.foot-col a,
.foot-col p { display: block; color: var(--muted); font-size: 14px; margin-bottom: 9px; transition: color 0.2s; }
.foot-col a:hover { color: var(--text); }
.foot-bot {
	margin-top: 48px;
	padding-top: 24px;
	border-top: 1px solid var(--line);
	display: flex;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
	font-family: var(--mono);
	font-size: 12px;
	color: var(--muted-2);
}

/* ---------- PRIVACY MODAL ---------- */
.privacy-link {
	background: none;
	border: none;
	font-family: var(--mono);
	font-size: 12px;
	color: var(--muted-2);
	cursor: pointer;
	padding: 0;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.privacy-link:hover { color: var(--text); }

.privacy-modal {
	position: fixed;
	inset: 0;
	z-index: 300;
	background: rgba(22, 32, 47, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--pad);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0.25s;
}
@media (prefers-reduced-motion: reduce) {
	.privacy-modal { transition: none; }
}
.privacy-modal.open {
	opacity: 1;
	visibility: visible;
}
.privacy-panel {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 3px;
	width: 100%;
	max-width: 640px;
	max-height: 85vh;
	display: flex;
	flex-direction: column;
}
.privacy-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 32px;
	border-bottom: 1px solid var(--line);
	flex-shrink: 0;
}
.privacy-head h2 { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; }
.privacy-close {
	background: none;
	border: none;
	font-size: 18px;
	cursor: pointer;
	color: var(--muted);
	padding: 4px 8px;
	line-height: 1;
}
.privacy-close:hover { color: var(--text); }
.privacy-body {
	padding: 28px 32px 32px;
	overflow-y: auto;
	font-size: 14px;
	line-height: 1.65;
	color: var(--muted);
}
.privacy-body h3 {
	font-size: 13px;
	font-weight: 700;
	color: var(--text);
	letter-spacing: 0.02em;
	text-transform: uppercase;
	margin: 24px 0 8px;
	font-family: var(--mono);
}
.privacy-body h3:first-of-type { margin-top: 8px; }
.privacy-body p { margin-bottom: 4px; }
.privacy-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
	list-style: none;
	cursor: pointer;
	padding: 26px 48px 26px 4px;
	font-size: clamp(17px, 1.8vw, 21px);
	font-weight: 700;
	letter-spacing: -0.01em;
	position: relative;
	transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::after {
	content: "+";
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	font-family: var(--mono);
	font-size: 22px;
	font-weight: 400;
	color: var(--accent);
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
	padding: 0 48px 28px 4px;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.6;
	max-width: 70ch;
}

/* ---------- SCROLL REVEAL ---------- */
@media (prefers-reduced-motion: no-preference) {
	.rv { opacity: 0; transform: translateY(22px); transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1); }
	.rv.in { opacity: 1; transform: none; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
	nav.nav-links { display: none; }
	.nav-cta { display: none; }
	.burger { display: flex; }
	.hero-inner { grid-template-columns: 1fr; gap: 40px; }
	.hero-visual { max-width: 420px; }
	.stats { grid-template-columns: repeat(2, 1fr); }
	.stat:nth-child(2n) { border-right: none; }
	.values { grid-template-columns: 1fr; }
	.value { border-right: none; }
	.value:nth-last-child(2) { border-bottom: 1px solid var(--line); }
	.seg-grid { grid-template-columns: 1fr; }
	.proc { grid-template-columns: 1fr 1fr; }
	.quote-inner { grid-template-columns: 1fr; gap: 8px; padding-left: clamp(16px, 5vw, 40px); }
	.quote-mark { height: 40px; font-size: 90px; }
	.contact { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
	.stats { grid-template-columns: 1fr; }
	.stat { border-right: none; }
	.proc { grid-template-columns: 1fr; }
	.svc { grid-template-columns: 40px 1fr; gap: 16px; }
	.svc .go { display: none; }
	.ci-row { grid-template-columns: 1fr; gap: 6px; }
}
