/*
Theme Name: Money Accounting Child
Theme URI: https://money.xn--72c0byc2ab.com/
Description: Child theme for the Money accounting service website.
Author: Money Accounting
Template: plant3
Version: 1.0.1
Text Domain: money-accounting
*/

:root {
	--money-orange: #ed6b2c;
	--money-orange-dark: #c94d16;
	--money-ink: #202020;
	--money-muted: #686868;
	--money-cream: #fff8f2;
	--money-line: #eadfd7;
	--money-white: #fff;
	--money-green: #1f9d59;
	--money-shadow: 0 18px 50px rgba(74, 44, 25, 0.1);
}

body {
	background: #fff;
	color: var(--money-ink);
	font-family: "Sarabun", sans-serif;
}

.money-home *,
.money-home *::before,
.money-home *::after {
	box-sizing: border-box;
}

.money-home {
	overflow: hidden;
}

.money-wrap {
	width: min(1140px, calc(100% - 40px));
	margin-inline: auto;
}

.money-hero {
	position: relative;
	padding: 80px 0 72px;
	background:
		radial-gradient(circle at 85% 18%, rgba(237, 107, 44, 0.2), transparent 28%),
		linear-gradient(135deg, #fff 0%, var(--money-cream) 62%, #ffe9db 100%);
}

.money-hero::after {
	position: absolute;
	right: -100px;
	bottom: -180px;
	width: 420px;
	height: 420px;
	border: 70px solid rgba(237, 107, 44, 0.08);
	border-radius: 50%;
	content: "";
}

.money-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
	gap: 64px;
	align-items: center;
}

.money-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 18px;
	padding: 8px 14px;
	border: 1px solid #ffd2b8;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.75);
	color: var(--money-orange-dark);
	font-size: 0.9rem;
	font-weight: 600;
}

.money-eyebrow::before {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--money-orange);
	content: "";
}

.money-hero h1 {
	max-width: 760px;
	margin: 0;
	color: var(--money-ink);
	font-size: clamp(2.25rem, 5vw, 4.65rem);
	line-height: 1.08;
	letter-spacing: -0.035em;
}

.money-hero h1 strong {
	display: block;
	color: var(--money-orange);
	font-size: 1.2em;
}

.money-lead {
	max-width: 650px;
	margin: 24px 0 30px;
	color: var(--money-muted);
	font-size: 1.14rem;
	line-height: 1.8;
}

.money-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.money-button {
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	padding: 12px 22px;
	border: 2px solid var(--money-orange);
	border-radius: 12px;
	background: var(--money-orange);
	color: #fff !important;
	font-weight: 600;
	text-decoration: none !important;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.money-button:hover {
	background: var(--money-orange-dark);
	box-shadow: 0 10px 25px rgba(201, 77, 22, 0.22);
	transform: translateY(-2px);
}

.money-button-outline {
	background: transparent;
	color: var(--money-orange-dark) !important;
}

.money-button-outline:hover {
	background: #fff;
}

.money-price-card {
	position: relative;
	padding: 34px;
	border: 1px solid rgba(237, 107, 44, 0.2);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.88);
	box-shadow: var(--money-shadow);
	backdrop-filter: blur(10px);
}

.money-price-card::before {
	position: absolute;
	top: 24px;
	right: 24px;
	width: 54px;
	height: 54px;
	border-radius: 16px;
	background: var(--money-cream);
	color: var(--money-orange);
	content: "฿";
	font-size: 2rem;
	font-weight: 600;
	line-height: 54px;
	text-align: center;
}

.money-price-label {
	margin: 0;
	color: var(--money-muted);
	font-size: 0.95rem;
}

.money-price {
	margin: 5px 0 8px;
	color: var(--money-orange);
	font-size: clamp(3.5rem, 7vw, 5.5rem);
	font-weight: 600;
	line-height: 1;
}

.money-price small {
	color: var(--money-ink);
	font-size: 1rem;
	font-weight: 400;
}

.money-checks {
	display: grid;
	gap: 13px;
	margin: 26px 0 0;
	padding: 22px 0 0;
	border-top: 1px solid var(--money-line);
	list-style: none;
}

.money-checks li {
	position: relative;
	margin: 0;
	padding-left: 30px;
	color: #454545;
}

.money-checks li::before {
	position: absolute;
	top: 1px;
	left: 0;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #e8f7ef;
	color: var(--money-green);
	content: "✓";
	font-size: 0.8rem;
	font-weight: 600;
	line-height: 20px;
	text-align: center;
}

.money-trust {
	border-top: 1px solid var(--money-line);
	border-bottom: 1px solid var(--money-line);
	background: #fff;
}

.money-trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.money-trust-item {
	padding: 28px 20px;
	text-align: center;
}

.money-trust-item + .money-trust-item {
	border-left: 1px solid var(--money-line);
}

.money-trust-item strong,
.money-trust-item span {
	display: block;
}

.money-trust-item strong {
	margin-bottom: 4px;
	font-size: 1.05rem;
}

.money-trust-item span {
	color: var(--money-muted);
	font-size: 0.92rem;
}

.money-section {
	padding: 88px 0;
}

.money-section-soft {
	background: #faf8f6;
}

.money-section-heading {
	max-width: 680px;
	margin: 0 auto 44px;
	text-align: center;
}

.money-kicker {
	margin: 0 0 8px;
	color: var(--money-orange);
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.money-section h2 {
	margin: 0;
	font-size: clamp(1.8rem, 3.4vw, 2.75rem);
	line-height: 1.25;
}

.money-section-heading > p:last-child {
	margin: 14px 0 0;
	color: var(--money-muted);
	line-height: 1.7;
}

.money-services {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.money-service {
	padding: 30px;
	border: 1px solid var(--money-line);
	border-radius: 20px;
	background: #fff;
	transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.money-service:hover {
	border-color: #ffc5a5;
	box-shadow: var(--money-shadow);
	transform: translateY(-4px);
}

.money-service-icon {
	display: grid;
	width: 50px;
	height: 50px;
	margin-bottom: 24px;
	border-radius: 14px;
	background: var(--money-cream);
	color: var(--money-orange);
	font-size: 1.3rem;
	font-weight: 600;
	place-items: center;
}

.money-service h3 {
	margin: 0 0 10px;
	font-size: 1.2rem;
}

.money-service p {
	margin: 0;
	color: var(--money-muted);
	line-height: 1.7;
}

.money-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 36px;
	counter-reset: steps;
}

.money-step {
	position: relative;
	padding-top: 72px;
	counter-increment: steps;
}

.money-step::before {
	position: absolute;
	top: 0;
	left: 0;
	display: grid;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--money-orange);
	color: #fff;
	content: counter(steps);
	font-size: 1.1rem;
	font-weight: 600;
	place-items: center;
}

.money-step:not(:last-child)::after {
	position: absolute;
	top: 26px;
	left: 70px;
	width: calc(100% - 52px);
	border-top: 1px dashed #e4bca7;
	content: "";
}

.money-step h3 {
	margin: 0 0 8px;
}

.money-step p {
	margin: 0;
	color: var(--money-muted);
	line-height: 1.7;
}

.money-cta {
	padding: 74px 0;
	background: var(--money-ink);
	color: #fff;
}

.money-cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.money-cta h2 {
	max-width: 620px;
	margin: 0 0 10px;
	color: #fff;
}

.money-cta p {
	margin: 0;
	color: #c9c9c9;
}

.money-floating-call {
	position: fixed;
	z-index: 50;
	right: 22px;
	bottom: 22px;
	display: none;
	width: 58px;
	height: 58px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--money-orange);
	box-shadow: 0 10px 25px rgba(201, 77, 22, 0.35);
	color: #fff !important;
	font-size: 1.45rem;
	text-decoration: none !important;
}

@media (max-width: 900px) {
	.money-hero {
		padding-top: 56px;
	}

	.money-hero-grid {
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.money-price-card {
		max-width: 560px;
	}

	.money-services {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 680px) {
	.money-wrap {
		width: min(100% - 28px, 1140px);
	}

	.money-hero {
		padding: 38px 0 46px;
	}

	.money-hero h1 {
		font-size: 2.35rem;
	}

	.money-lead {
		font-size: 1rem;
	}

	.money-actions,
	.money-button {
		width: 100%;
	}

	.money-price-card {
		padding: 26px 22px;
		border-radius: 22px;
	}

	.money-price-card::before {
		display: none;
	}

	.money-trust-grid,
	.money-services,
	.money-steps {
		grid-template-columns: 1fr;
	}

	.money-trust-item + .money-trust-item {
		border-top: 1px solid var(--money-line);
		border-left: 0;
	}

	.money-section {
		padding: 64px 0;
	}

	.money-step {
		padding: 0 0 0 68px;
	}

	.money-step::after {
		display: none;
	}

	.money-cta-inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.money-cta .money-button {
		width: auto;
	}

	.money-floating-call {
		display: flex;
	}
}

/* Service area tidy links */
.money-service-area-links p {
    margin: 0 0 8px !important;
    line-height: 1.5 !important;
}

.money-service-area-links a,
.money-service-area-links pre a {
    text-decoration: none !important;
}

.money-service-area-links a:hover,
.money-service-area-links pre a:hover {
    text-decoration: none !important;
}

.money-service-area-links pre {
    line-height: 1.42 !important;
}

.money-service-area-links pre a {
    display: block !important;
    margin: 0 0 1px !important;
}

.money-service-area-links .gb-container-ecaa4905 {
    gap: 16px 28px !important;
}

.money-service-area-links .gb-container-6291a554 {
    margin-bottom: 24px !important;
}

/* Service area final compact spacing */
body .money-service-area-links pre {
    font-size: 0 !important;
    line-height: 0 !important;
}

body .money-service-area-links pre a {
    display: block !important;
    margin: 0 !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    text-decoration: none !important;
}
