/* Reset and Base Styles */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	color: #333;
	background-color: #fff;
	font-family: "Noto Sans JP", sans-serif, "Roboto", sans-serif;
	line-height: 1.75;
}

/* Color Palette based on the document */
:root {
	--main-green: #12aabc;
	--light-green: #14d0c9;
	--light-yellow: #f0ff49;
	--main-blue: #0e578a;
	--dark-gray: #525d83;
	--dark-blue: #062542;
	--light-gray: #f4f6f8;
	--accent-orange: #f97316;
	--white: #ffffff;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

@media (min-width: 640px) {
	.container {
		padding: 0 1.5rem;
	}
}

@media (min-width: 1024px) {
	.container {
		padding: 0 2rem;
	}
}

/* Header */
#header {
	position: fixed;
	z-index: 1000;
	top: 0;
	right: 0;
	left: 0;
	transition: all 0.3s;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
}

@media (min-width: 768px) {
	.header-content {
		height: 80px;
	}
}

.header__open {
	display: none;
}

.drawer-content {
	display: none;
}

.logo {
	cursor: pointer;
	background: linear-gradient(90deg, rgba(18, 170, 188, 1) 0%, rgba(20, 208, 201, 1) 100%);
	-webkit-background-clip: text;
	        background-clip: text;
	font-size: 1.5rem;
	font-weight: 900;

	-webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
	.logo {
		font-size: 1.875rem;
	}
}

.nav-desktop {
	display: none;
	align-items: center;

	gap: 1.5rem;
}

@media (min-width: 768px) {
	.nav-desktop {
		display: flex;
	}
}

@media (max-width: 999px) {
	.nav-desktop {
		display: flex;

		gap: 1.2rem;
	}
}

@media (max-width: 899px) {
	.nav-desktop {
		display: none;
	}

	.header__open {
		position: relative;
		z-index: 1050;
		display: block !important;
		width: 36px;
		height: 21px;
		border: none;
		background-color: transparent;
	}

	.drawer-icon__bar {
		position: absolute;
		top: 0;
		left: 0;
		width: 36px;
		height: 3px;
		transition: top 0.3s linear, transform 0.3s linear;
		border-radius: 6px;
		background: var(--main-green);
	}
	.drawer-icon__bar:nth-of-type(2) {
		top: 9px;
	}
	.drawer-icon__bar:nth-of-type(3) {
		top: 18px;
	}
	.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
		top: 10px;
		transform: rotate(30deg);
	}
	.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
		opacity: 0;
	}
	.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
		top: 10px;
		transform: rotate(-30deg);
	}

	.drawer-content {
		position: fixed;
		z-index: 1002;
		top: 0;
		right: 0;
		display: block;
		overflow-y: auto;
		width: 320px;
		height: 100vh;
		padding: 86px 40px 40px;
		transition: transform 0.3s linear;
		transform: translateX(100%);
		background-color: var(--light-gray);
	}
	.drawer-content.is-checked {
		transform: translateX(0);
	}

	.drawer-content__link {
		display: block;
		padding-top: 14px;
		padding-bottom: 14px;
		text-align: right;
		text-decoration: none;
		letter-spacing: 0.48px;
		color: var(--dark-blue);
		font-size: 20px;
		font-weight: 700;
	}
	.drawer-content__button {
		margin-top: 24px;
		text-align: right;
	}
	.drawer-content__button > .cta-button {
		font-size: 20px;
	}
	#js-drawer-icon.header__open.drawer-icon {
		z-index: 1010;
		border: none;
		background-color: transparent;
	}
}

.nav-desktop button {
	cursor: pointer;
	transition: color 0.3s;
	color: var(--dark-blue);
	border: none;
	background: none;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1rem;
	font-weight: 500;
}

.nav-desktop button:hover {
	color: var(--main-green);
}

.header-tel {
	position: relative;
	padding-left: 32px;
	text-decoration: none;
	letter-spacing: -0.04em;
	color: var(--main-green);
	font-size: 25px;
	font-weight: 700;
}

.header-tel::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 30px;
	height: 30px;
	content: "";
	transform: translateY(-50%);
	background: url(./img/tel-icon.png) no-repeat center center / contain;
}

/* CTA Button */
.cta-button {
	display: inline-flex;
	align-items: center;
	padding: 12px 24px;

	gap: 10px;
}

.cta-button .cta-icon {
	fill: #fff;
}

.cta-button:hover .cta-icon {
	fill: var(--accent-orange);
}

.cta-icon {
	width: 24px;
	height: 24px;
}

.btn-style6 {
	position: relative;
	z-index: 1;
	overflow: hidden;
	cursor: pointer;
	transition: color 0.3s;
	text-align: center;
	text-decoration: none;
	color: var(--white);
	border: 2px solid var(--accent-orange);
	background-color: var(--accent-orange);
	font-weight: 600;
}

.btn-style6::before {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	content: "";
	transition: width 0.3s ease;
	background-color: var(--white);
}

.btn-style6:hover {
	color: var(--accent-orange);
}

.btn-style6:hover::before {
	width: 100%;
}

.size-medium {
	padding: 0.75em 1.5em;
	font-size: 1rem;
}

.width-auto {
	width: auto;
}

.radius-medium {
	border-radius: 8px;
}

.nav-mobile {
	display: flex;
}

@media (min-width: 768px) {
	.nav-mobile {
		display: none;
	}
}

.cta-button-small {
	padding: 0.375rem 1rem;
	cursor: pointer;
	transition: background-color 0.3s;
	color: white;
	border: none;
	border-radius: 9999px;
	background-color: #f97316;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.875rem;
	font-weight: 700;
}

.cta-button-small:hover {
	background-color: #ea580c;
}

/* Hero Section */
.hero {
	position: relative;
	overflow: hidden;
	margin-top: 64px;
	padding: 4rem 0 4rem;
	background-image: url(./img/bg_dot.png);
	background-repeat: repeat;
	background-size: 25px;
}

@media (min-width: 768px) {
	.hero {
		margin-top: 80px;
		padding: 5rem 0 10rem;
	}
}

.hero-content {
	position: relative;
	z-index: 10;
	max-width: 56rem;
	margin: 0 auto;
	text-align: center;
	opacity: 0;
}

/* フェードインアニメーション */
.hero-content.show {
	animation: fadeInText 1s ease-out forwards;
}

@keyframes fadeInText {
	to {
		opacity: 1;
	}
}

.price-badge {
	position: relative;
	display: inline-block;
	margin-bottom: 2rem;
	padding: 0.5rem 1.5rem;
	color: white;
	border-radius: 8px;
	background-color: var(--light-green);
	font-size: 1rem;
	font-weight: 700;
}

.price-badge::after {
	position: absolute;
	z-index: -1;
	right: -2%;
	bottom: -9%;
	width: 100%;
	height: 100%;
	content: "";
	border-radius: 8px;
	background-color: var(--white);
}

@media (min-width: 768px) {
	.price-badge {
		font-size: 1.5rem;
	}
}

.hero-title {
	margin-bottom: 1.5rem;
	color: var(--dark-blue);
	font-size: 2rem;
	font-weight: 900;
	line-height: 1.2;
}

@media (min-width: 480px) {
	.hero-title {
		font-size: 2.65rem;
	}
}

@media (min-width: 768px) {
	.hero-title {
		font-size: 4rem;
	}
}

@media (min-width: 900px) {
	.hero-title {
		font-size: 5rem;
	}
}

.xs-br {
	display: inline;
}

@media (min-width: 480px) {
	.xs-br {
		display: none;
	}
}

.pc-br {
	display: none;
}

@media (min-width: 768px) {
	.pc-br {
		display: inline;
	}
}

.hero-subtitle {
	margin-bottom: 1rem;
	color: var(--dark-blue);
	font-size: 1.125rem;
	line-height: 1.75;
}

@media (min-width: 768px) {
	.hero-subtitle {
		font-size: 1.25rem;
	}
}

.hero-description {
	margin-bottom: 2rem;
	color: var(--dark-blue);
	font-size: 1.125rem;
}

@media (min-width: 768px) {
	.hero-description {
		font-size: 1.25rem;
	}
}

.cta-button-large {
	padding: 1.5rem 2rem;
	cursor: pointer;
	transition: all 0.3s;
	color: white;
	border: none;
	border-radius: 9999px;
	background-color: #f97316;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.125rem;
	font-weight: 700;
}

.cta-button-large:hover {
	transform: translateY(-2px);
	background-color: #ea580c;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.geometric-decoration {
	position: absolute;
	top: 260px;
	left: 50%;
	transform: translate(-50%, -50%);
}

@media (min-width: 768px) {
	.geometric-decoration {
		top: 370px;
	}
}

.geometric-decoration img {
	position: absolute;
	top: 40%;
	left: 50%;
	width: 350px;
	transform: translate(-50%, -50%);
	animation: rotate 1.2s ease-in-out;

	animation-fill-mode: forwards;
}

@media (min-width: 768px) {
	.geometric-decoration img {
		top: 50%;
		left: 50%;
		width: 550px;
		height: 550px;
	}
}

@keyframes rotate {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

/* Logo Scroll */
.logo-scroll-section {
	padding: 20px 0;
}

.logo-slide {
	display: block;
	width: 160px;
	height: 120px;
	margin: 0 auto;
}

.logo-slide img {
	max-width: 100%;
	height: auto;
}

.myLogoSwiper .swiper-wrapper {
	transition-timing-function: linear !important;
}

/* Section Styles */
.section-title {
	margin-bottom: 3rem;
	text-align: center;
	color: var(--dark-blue);
	font-size: 1.8rem;
	font-weight: 900;
}

@media (min-width: 768px) {
	.section-title {
		font-size: 2.5rem;
	}
}

/* Problems Section */
.problems-section {
	position: relative;
	padding: 4rem 0 14rem;
	text-align: center;
	background-color: var(--white);

	scroll-margin-top: 80px;
}

@media (min-width: 768px) {
	.problems-section {
		padding: 6rem 0 6rem;
	}
}

.problems-section .section-title {
	position: relative;
	display: inline-block;
}

.problems-section .section-title::before {
	position: absolute;
	top: 60%;
	left: -20px;
	width: 20px;
	height: 86px;
	content: "";
	transform: translateY(-50%) rotate(-15deg);
	background: url(./img/yellow-triangle.svg) no-repeat center center / contain;
}

.problems-section .section-title::after {
	position: absolute;
	top: 60%;
	right: -20px;
	width: 20px;
	height: 86px;
	content: "";
	transform: translateY(-50%) rotate(15deg);
	background: url(./img/yellow-triangle.svg) no-repeat center center / contain;
}

@media (min-width: 480px) {
	.problems-section .section-title::before {
		left: -30px;
	}

	.problems-section .section-title::after {
		right: -36px;
	}
}

.problems-grid {
	position: relative;
	z-index: 10;
	display: grid;

	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.problems-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.problems-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.problem-card {
	padding: 1.2rem;
	transition: transform 0.3s, box-shadow 0.3s;
	border-radius: 1rem;
	background: var(--light-gray);
}

.problem-card h3 {
	margin-bottom: 0.75rem;
	color: var(--dark-blue);
	font-size: 1.15rem;
	font-weight: 700;
}

@media (min-width: 768px) {
	.problem-card h3 {
		min-height: calc(1.125rem * 2 * 1.6);
	}
}

.problem-card p {
	font-size: 1rem;
}

.problems-deco {
	position: absolute;
	right: 16px;
	bottom: 30px;
	width: 140px;
	height: 180px;
}

@media (min-width: 768px) {
	.problems-deco {
		position: absolute;
		top: 7%;
		right: 12px;
		width: 140px;
		height: 180px;
	}
}

@media (min-width: 1024px) {
	.problems-deco {
		position: absolute;
		top: 9%;
		right: 26px;
		width: 140px;
		height: 180px;
	}
}

@media (min-width: 1200px) {
	.problems-deco {
		right: calc(50% - 600px + 26px);
	}
}

.problems-deco-img {
}

.problems-deco-img img:hover {
	-webkit-animation: wobble-hor-bottom 0.9s both;
	        animation: wobble-hor-bottom 0.9s both;
}

@-webkit-keyframes wobble-hor-bottom {
	0%, 100% {
		-webkit-transform: translateX(0%);
		        transform: translateX(0%);
		-webkit-transform-origin: 50% 50%;
		        transform-origin: 50% 50%;
	}
	15% {
		-webkit-transform: translateX(-30px) rotate(-6deg);
		        transform: translateX(-30px) rotate(-6deg);
	}
	30% {
		-webkit-transform: translateX(15px) rotate(6deg);
		        transform: translateX(15px) rotate(6deg);
	}
	45% {
		-webkit-transform: translateX(-15px) rotate(-3.6deg);
		        transform: translateX(-15px) rotate(-3.6deg);
	}
	60% {
		-webkit-transform: translateX(9px) rotate(2.4deg);
		        transform: translateX(9px) rotate(2.4deg);
	}
	75% {
		-webkit-transform: translateX(-6px) rotate(-1.2deg);
		        transform: translateX(-6px) rotate(-1.2deg);
	}
}
@keyframes wobble-hor-bottom {
	0%, 100% {
		-webkit-transform: translateX(0%);
		        transform: translateX(0%);
		-webkit-transform-origin: 50% 50%;
		        transform-origin: 50% 50%;
	}
	15% {
		-webkit-transform: translateX(-30px) rotate(-6deg);
		        transform: translateX(-30px) rotate(-6deg);
	}
	30% {
		-webkit-transform: translateX(15px) rotate(6deg);
		        transform: translateX(15px) rotate(6deg);
	}
	45% {
		-webkit-transform: translateX(-15px) rotate(-3.6deg);
		        transform: translateX(-15px) rotate(-3.6deg);
	}
	60% {
		-webkit-transform: translateX(9px) rotate(2.4deg);
		        transform: translateX(9px) rotate(2.4deg);
	}
	75% {
		-webkit-transform: translateX(-6px) rotate(-1.2deg);
		        transform: translateX(-6px) rotate(-1.2deg);
	}
}

/* Service Section */
.service-section {
	padding: 4rem 0 6rem;
	background-image: url(./img/bg_dot.png);
	background-repeat: repeat;
	background-size: 25px;

	scroll-margin-top: 80px;
}

@media (min-width: 768px) {
	.service-section {
		padding: 6rem 0 6rem;
	}
}

.service-intro, .service-description {
	max-width: 56rem;
	margin: 0 auto 2rem;
	text-align: center;
	color: var(--dark-blue);
	line-height: 1.8;
}

.service-flow {
	max-width: 72rem;
	margin: 3rem auto 0;
	padding: 1.2rem;
	text-align: center;
	border-radius: 1rem;
	background: var(--white);
}

@media (min-width: 768px) {
	.service-flow {
		padding: 2rem;
	}
}

@media (min-width: 900px) {
	.service-flow {
		padding: 3rem;
	}
}

.flow-title {
	display: inline;
	text-align: center;
	color: var(--dark-blue);
	background: linear-gradient(transparent 60%, var(--light-yellow) 0);
	font-size: 1.5rem;
	font-weight: 700;
}

.flow-diagram {
	display: grid;
	align-items: stretch;
	margin-top: 2rem;

	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.flow-diagram {
		gap: 0.5rem;
		grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr) auto minmax(180px, 1fr);
	}
}

@media (min-width: 1000px) {
	.flow-diagram {
		gap: 1rem;
	}
}

.flow-step {
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	width: 100%;
	text-align: center;
}

.flow-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	margin: 0 auto 0.75rem;
	color: var(--dark-blue);
	border-radius: 50%;
	background: var(--light-yellow);
	font-family: "Roboto";
	font-size: 1.5rem;
	font-weight: 700;
}

.flow-number-2 {
	background: var(--light-yellow);
}

.flow-number-3 {
	background: var(--light-yellow);
}

.flow-step h4 {
	min-height: 3rem;
	min-height: calc(1.15rem * 2 * 1.6);
	margin-bottom: 0.5rem;
	color: var(--dark-blue);
	font-size: 1.15rem;
	font-weight: 700;
}

.flow-step p {
	margin-bottom: 1rem;
	font-size: 1rem;
}

.flow-arrow {
	display: flex;
	align-items: center;
	align-self: center;
	flex-shrink: 0;
	justify-content: center;
	transform: rotate(90deg);
}

@media (min-width: 768px) {
	.flow-arrow {
		transform: rotate(0deg);
	}
}

.flow-arrow svg {
	width: 2.5rem;
	height: 2.5rem;
	color: var(--main-green);
}

.flow-team {
	display: flex;
	flex-direction: column;
	padding: 1.5rem;
	border: solid 2px var(--dark-blue);
	border-radius: 0.75rem;
}

@media (min-width: 768px) {
	.flow-team {
		padding: 1.2rem;
	}
}

.team-grid {
	display: grid;
	margin-bottom: 0.75rem;
	text-align: center;
	font-size: 0.75rem;

	grid-template-columns: repeat(2, 1fr);
	gap: 0.5rem;
}

.team-member {
	padding: 0.5rem;
	color: var(--dark-blue);
	border-radius: 0.5rem;
	background: var(--light-gray);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
	font-weight: 600;
}

.team-note {
	margin-top: 0.75rem;
	margin-bottom: 1rem;
	text-align: center;
	font-size: 1rem;
}

.flow-img {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	height: 180px;
	margin-top: auto;
	padding-top: 1rem;
}

.flow-img img {
	width: auto;
	max-width: 100%;
	height: 100%;
	max-height: 180px;

	object-fit: contain;
}

/* Works Section */
.works-section {
	padding: 4rem 0 6rem;
	background-color: var(--white);

	scroll-margin-top: 80px;
}

@media (min-width: 768px) {
	.works-section {
		padding: 6rem 0 6rem;
	}
}

.works-card-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;

	gap: 1.5rem;
}

.work-category-card {
	width: 100%;
	padding: 1.2rem;
	border-radius: 12px;
	background-color: var(--white);
	box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
}

.card-title {
	margin-top: -1.2rem;
	margin-right: -1.2rem;
	margin-bottom: 1rem;
	margin-left: -1.2rem;
	padding: 0.5rem 0;
	text-align: center;
	color: var(--white);
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	background: linear-gradient(90deg, #12aabc 0%, #14d0c9 100%);
	font-size: 1.15rem;
	font-weight: 700;
}

.card-item-list {
	padding-top: 0.5rem;
}

.work-item {
	margin-bottom: 0.5rem;
	color: var(--dark-blue);
	line-height: 1.6;
}

.work-item:last-child {
	margin-bottom: 0;
}

.work-time {
	float: right;
	color: var(--light-green);
	font-weight: 600;
}

@media (min-width: 768px) {
	.work-category-card {
		width: calc(50% - 0.75rem);
	}
}

@media (min-width: 1000px) {
	.work-category-card {
		width: calc(33.333% - 1rem);
	}
}

/* Features Section */
.features-section {
	position: relative;
	padding: 4rem 0 14rem;
	text-align: center;
	background-image: url(./img/bg_dot.png);
	background-repeat: repeat;
	background-size: 25px;
}

@media (min-width: 768px) {
	.features-section {
		padding: 6rem 0 6rem;
	}
}

.features-section .section-title {
	position: relative;
	display: inline-block;
}

.features-section .section-title::after {
	position: absolute;
	top: 0;
	right: 0;
	width: 50px;
	height: 50px;
	content: "";
	transform: translate(30px, -24px);
	background: url(./img/deco-toge.svg) no-repeat center center / contain;
}

.features-grid {
	display: grid;

	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.feature-card {
	position: relative;
	padding: 1.2rem;
	border-radius: 10px;
	background: var(--white);
}

.feature-heading {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;

	gap: 16px;
}

.feature-number {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	justify-content: center;
	width: calc(60px + 20 * ((100vw - 320px) / (1200 - 320)));
	height: calc(60px + 20 * ((100vw - 320px) / (1200 - 320)));
	border-radius: 9999px;
	background: var(--light-yellow);
	font-family: "Roboto";
	font-size: 24px;
	font-weight: 700;
}

@media (min-width: 1000px) {
	.feature-number {
		font-size: 30px;
	}
}

.feature-card h3 {
	position: relative;
	text-align: left;
	color: var(--dark-blue);
	font-size: 1.15rem;
	font-weight: 700;
}

.feature-card p {
	text-align: left;
	font-size: 1rem;
}

.features-deco {
	position: absolute;
	bottom: 30px;
	left: 16px;
	width: 140px;
	height: 180px;
}

/* Comparison Section */
.comparison-section {
	padding: 4rem 0 6rem;
	background-color: white;
}

@media (min-width: 768px) {
	.comparison-section {
		padding: 6rem 0 6rem;
	}
}

.comparison-section .table-wrapper {
	overflow-x: auto;
}

.comparison-table {
	overflow: hidden;
	width: 100%;
	min-width: 800px;
	border-collapse: collapse;
	font-size: 1rem;
}

.comparison-table th {
	padding: 1rem;
	text-align: center;
	color: var(--dark-blue);
	border: 1px solid #e6e9ec;
	font-weight: 700;
}

.comparison-table th.highlight {
	color: var(--white);
	background: linear-gradient(90deg, #12aabc 0%, #14d0c9 100%);
	font-size: 1.12rem;
	font-weight: 600;
}

.comparison-table td {
	padding: 0.75rem 1rem;
	color: var(--dark-blue);
	border: 1px solid #e6e9ec;
}

.comparison-table td.highlight {
	color: var(--dark-blue);
	background-color: rgba(18, 170, 188, 0.2);
	font-size: 1.12rem;
	font-weight: 600;
}

.comparison-table th:nth-child(3), .comparison-table th:nth-child(4) {
	background-color: var(--light-gray);
}

.comparison-table th:first-child {
	font-weight: 700;
}

.comparison-table td:first-child {
	background-color: var(--light-gray);
	font-weight: 700;
}

.comparison-table th:nth-child(1), .comparison-table td:nth-child(1) {
	width: 20%;
}

.comparison-table th:nth-child(2), .comparison-table td:nth-child(2) {
	width: 34%;
}

.comparison-table th:nth-child(3), .comparison-table td:nth-child(3) {
	width: 23%;
}

.comparison-table th:nth-child(4), .comparison-table td:nth-child(4) {
	width: 23%;
}

.comparison-table th, .comparison-table td {
	word-wrap: break-word;
}

/* Pricing Section */
.pricing-section {
	position: relative;
	padding: 4rem 0 14rem;
	background-image: url(./img/bg_dot.png);
	background-repeat: repeat;
	background-size: 25px;

	scroll-margin-top: 80px;
}

@media (min-width: 600px) {
	.pricing-section {
		padding: 6rem 0 10rem;
	}
}

@media (min-width: 768px) {
	.pricing-section {
		padding: 6rem 0 6rem;
	}
}

.pricing-grid {
	display: grid;
	margin-bottom: 2rem;

	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 600px) {
	.pricing-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.pricing-grid {
		align-items: stretch;

		grid-template-columns: repeat(4, 1fr);
		grid-template-rows: auto;
	}
}

.pricing-card-wrap {
	position: relative;
}

.pricing-card {
	position: relative;
	z-index: 5;
	height: 100%;
	padding: 2rem;
	border-radius: 10px;
	background: var(--white);
}

.pricing-card-bg {
	position: absolute;
	z-index: 0;
	transform: translate(8px, 8px);
	border-radius: 10px;
	background-color: var(--light-yellow);

	inset: 0;
}

.pricing-card h3 {
	margin-bottom: 1rem;
	text-align: center;
	color: var(--dark-blue);
	font-size: 1.5rem;
	font-weight: 700;
}

.price {
	margin-bottom: 1.5rem;
	text-align: center;
	color: var(--main-green);
	font-size: 2.5rem;
	font-weight: 900;
}

.price span {
	font-size: 1rem;
	font-weight: 400;
}

.pricing-hours {
	max-width: 224px;
	margin-bottom: 1rem;
	padding: 0.75rem;
	text-align: center;
	color: var(--white);
	border-radius: 0.5rem;
	background: linear-gradient(90deg, #12aabc 0%, #14d0c9 100%);
	font-weight: 700;

	margin-inline: auto;
}

.pricing-examples {
	margin-top: 1rem;
}

.examples-title {
	margin-bottom: 0.5rem;
	color: var(--dark-blue);
	font-size: 1rem;
	font-weight: 600;
}

.pricing-examples p {
	margin-bottom: 0.25rem;
	font-size: 1rem;
}

.pricing-footer-notes {
	margin-top: 2rem;
	text-align: center;
}

.pricing-footer-notes p {
	margin-bottom: 0.5rem;
	font-size: 0.875rem;
}

.pricing-deco {
	position: absolute;
	bottom: 42px;
	left: 16px;
	width: 100px;
	height: 170px;
}

@media (min-width: 600px) {
	.pricing-deco {
		bottom: 60px;
	}
}

@media (min-width: 768px) {
	.pricing-deco {
		position: absolute;
		top: 7%;
		left: 50px;
		width: 100px;
		height: 170px;
	}
}

@media (min-width: 1024px) {
	.pricing-deco {
		position: absolute;
		top: 9%;
		left: 50px;
		width: 100px;
		height: 170px;
	}
}

@media (min-width: 1200px) {
	.pricing-deco {
		left: calc(50% - 600px + 48px);
	}
}

/* Flow Section */
.flow-section {
	padding: 4rem 0 6rem;
	background-color: var(--white);
}

@media (min-width: 768px) {
	.flow-section {
		padding: 6rem 0 6rem;
	}
}

.flow-intro {
	max-width: 56rem;
	margin: 0 auto 3rem;
	text-align: center;
	color: var(--dark-blue);
	font-size: 1.15rem;
}

.flow-steps {
	display: flex;
	align-items: center;
	align-items: stretch;
	flex-direction: column;
	margin: 0 auto;

	gap: 1.5rem;
}

@media (min-width: 768px) {
	.flow-steps {
		align-items: stretch;
		flex-direction: row;
		justify-content: center;

		gap: 1.2rem;
	}
}

.step-item {
	flex: 1;
	padding: 1.2rem;
	text-align: center;
	border-radius: 1rem;
}

@media (min-width: 768px) {
	.step-item {
		padding: 1.6rem;
	}
}

.flow-steps .step-item:nth-child(1) {
	background: url(./img/flow-steps-1.webp) no-repeat center center/ cover;
}

.flow-steps .step-item:nth-child(3) {
	background: url(./img/flow-steps-2.webp) no-repeat center center/ cover;
}

.flow-steps .step-item:nth-child(5) {
	background: url(./img/flow-steps-3.webp) no-repeat center center/ cover;
}

.step-number {
	display: inline-block;
	margin-bottom: 1rem;
	padding: 0.5rem 1rem;
	color: white;
	border-radius: 9999px;
	background: linear-gradient(90deg, #12aabc 0%, #14d0c9 100%);
	font-size: 0.875rem;
	font-weight: 700;
}

.step-item h3 {
	margin-bottom: 0.5rem;
	color: var(--white);
	font-size: 1.5rem;
	font-weight: 700;
}

.step-item p {
	min-height: calc(16px * 2 * 1.75);
	color: var(--white);
	font-size: 1rem;
}

.step-arrow {
	align-self: center;
	color: var(--light-green);
	font-size: 1.5rem;
	font-weight: 700;
}

@media (max-width: 767px) {
	.step-arrow {
		transform: rotate(90deg);
	}
}

/* FAQ Section */
.faq-section {
	padding: 4rem 0 6rem;
	background-image: url(./img/bg_dot.png);
	background-repeat: repeat;
	background-size: 25px;

	scroll-margin-top: 80px;
}

@media (min-width: 768px) {
	.faq-section {
		padding: 6rem 0 6rem;
	}
}

.faq-list {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 1.5rem;
}

.faq-item-question {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 1.2rem;
	border-bottom: 1px solid var(--dark-gray);

	gap: 1rem;
}

.faq-item-q {
	color: var(--main-green);
	font-family: "Roboto";
	font-size: 2rem;
	font-weight: 700;
}

.faq-item-answer {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 1.2rem;

	gap: 1rem;
}

.faq-item-a {
	color: var(--dark-blue);
	font-family: "Roboto";
	font-size: 2rem;
	font-weight: 700;
}

.faq-item h3 {
	color: var(--dark-blue);
	font-size: 1.15rem;
	font-weight: 700;
}

.faq-item p {
	font-size: 1rem;
}

/* Contact Section */
.contact-section {
	padding: 4rem 0 6rem;
	color: white;
	background: linear-gradient(90deg, rgba(18, 170, 188, 1) 0%, rgba(20, 208, 201, 1) 100%);

	scroll-margin-top: 80px;
}

@media (min-width: 768px) {
	.contact-section {
		padding: 6rem 0 6rem;
	}
}

.contact-title {
	margin-bottom: 1rem;
	text-align: center;
	font-size: 2rem;
	font-weight: 900;
}

@media (min-width: 768px) {
	.contact-title {
		font-size: 2.5rem;
	}
}

.contact-subtitle {
	margin-bottom: 3rem;
	text-align: center;
	opacity: 0.9;
	font-size: 1.125rem;
}

.contact-form-wrapper {
	max-width: 800px;
	margin: 0 auto;
	padding: 2rem;
	border-radius: 1rem;
	background: white;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
	.contact-form-wrapper {
		padding: 3rem;
	}
}

/* Footer */
.footer {
	padding: 40px 0 20px 0;
	color: #fff;
	background-color: var(--dark-blue);
	font-size: 0.9em;
}

.footer-content {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 20px;
}

.footer-links a {
	margin-left: 20px;
	transition: color 0.3s ease;
	text-decoration: none;
	color: #fff;
}

.footer-links a:hover {
	color: var(--main-green);
}

.footer-bottom {
	margin-top: 20px;
	padding-top: 20px;
	text-align: center;
	border-top: 1px solid;
}

/* Scroll Margin for Sections */
#problems, #service, #works, #pricing, #faq, #contact {
	scroll-margin-top: 80px;
}