* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Inter", "Roboto", "Open Sans", sans-serif;
	color: #1e2b21;
	background-color: #ffffff;
	padding-top: 76px;
}

.img-fluid {
	max-width: 70%;
	height: auto;
}

.navbar-brand {
	color: #2e7d32;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.navbar-brand .brand-logo {
	height: 36px;
	width: auto;
	display: inline-block;
}

.navbar .nav-link {
	color: #2e7d32;
	font-weight: 500;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
	color: #4caf50;
}

.btn-primary {
	background-color: #4caf50;
	border-color: #4caf50;
	box-shadow: 0 10px 20px rgba(76, 175, 80, 0.2);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
	background-color: #2e7d32;
	border-color: #2e7d32;
	transform: translateY(-2px);
	box-shadow: 0 14px 26px rgba(46, 125, 50, 0.25);
}

.btn-outline-light {
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-light:hover {
	background-color: rgba(255, 255, 255, 0.18);
	border-color: #ffffff;
}

.btn-outline-success {
	border-color: #4caf50;
	color: #2e7d32;
}

.btn-outline-success:hover {
	background-color: #4caf50;
	color: #ffffff;
}

.hero {
	min-height: 90vh;
	padding-bottom: 72px;
	background-image: linear-gradient(rgba(20, 43, 30, 0.815), rgba(20, 43, 30, 0.767)), url("images/herofon.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #ffffff;
	position: relative;
	overflow: hidden;
}

@media (min-width: 992px) {
	.hero {
		min-height: 105vh;
	}
}

.hero > .container {
	position: relative;
	z-index: 1;
}

.hero .eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-size: 0.85rem;
	color: #c8e6c9;
}

.hero .display-5 {
	font-size: 2.3rem;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 16px;
	background: rgba(255, 255, 255, 0.08);
	padding: 16px;
	border-radius: 16px;
	backdrop-filter: blur(4px);
}

.hero-stats > div {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Stats band (between hero and next section) */
.stats-band {
	position: relative;
	z-index: 2;
	padding: 0;
	margin: 0;
	height: 0;
	background-color: transparent;
}

.stats-band .container {
	position: relative;
	top: -40px;
}

.stats-band .hero-stats {
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(76, 175, 80, 0.18);
	backdrop-filter: blur(6px);
	box-shadow: 0 22px 48px rgba(0, 0, 0, 0.14);
}

.stats-band .hero-stats h3 {
	color: #2e7d32;
	font-weight: 800;
}

.stats-band .hero-stats p {
	color: #4b5f4f;
	font-weight: 600;
}

.hero-note {
	margin-top: 12px;
	font-weight: 600;
	color: #c8e6c9;
}

.hero-card {
	background: rgba(255, 255, 255, 0.92);
	color: #1e2b21;
	padding: 28px;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
	animation: float 6s ease-in-out infinite;
}

/* Hero config */
.hero-config {
	padding: 22px;
}

.hero-config-head h4 {
	color: #2e7d32;
	font-weight: 800;
}

.hero-config-head p {
	color: #4b5f4f;
	font-weight: 600;
}

.hero-config-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 10px;
	border-radius: 999px;
	background: #4caf50;
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.hero-config-body {
	display: grid;
	gap: 14px;
}

.hero-range {
	background: rgba(255, 255, 255, 0.65);
	border: 1px solid rgba(76, 175, 80, 0.18);
	border-radius: 16px;
	padding: 12px 14px;
}

.hero-range-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 8px;
}

.hero-range-label {
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #1b5e20;
	opacity: 0.9;
}

.hero-range-value {
	font-weight: 800;
	color: #2e7d32;
}

.hero-range-input {
	margin: 0;
}

.hero-range .range-input-row {
	margin-bottom: 10px;
}

.hero-range .range-number-input {
	max-width: 150px;
}

.hero-range-input::-webkit-slider-runnable-track {
	height: 8px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(76, 175, 80, 0.75), rgba(76, 175, 80, 0.25));
}

.hero-range-input::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 22px;
	height: 22px;
	border-radius: 999px;
	background: #ffffff;
	border: 2px solid rgba(76, 175, 80, 0.9);
	box-shadow: 0 8px 18px rgba(46, 125, 50, 0.18);
	margin-top: -7px;
}

.hero-range-input::-moz-range-track {
	height: 8px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(76, 175, 80, 0.75), rgba(76, 175, 80, 0.25));
}

.hero-range-input::-moz-range-thumb {
	width: 22px;
	height: 22px;
	border-radius: 999px;
	background: #ffffff;
	border: 2px solid rgba(76, 175, 80, 0.9);
	box-shadow: 0 8px 18px rgba(46, 125, 50, 0.18);
}

.hero-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.hero-pill {
	appearance: none;
	border: 1px solid rgba(76, 175, 80, 0.4);
	background: rgba(255, 255, 255, 0.65);
	color: #2e7d32;
	border-radius: 999px;
	padding: 8px 12px;
	font-weight: 800;
	font-size: 0.9rem;
	transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.hero-pill:hover {
	background: rgba(76, 175, 80, 0.12);
	border-color: rgba(76, 175, 80, 0.75);
}

.hero-pill:active {
	transform: scale(0.98);
}

.hero-pill.is-active {
	background: rgba(76, 175, 80, 0.18);
	border-color: rgba(76, 175, 80, 0.85);
	color: #1b5e20;
}

.hero-summary {
	border-radius: 16px;
	border: 1px solid rgba(76, 175, 80, 0.18);
	background: rgba(255, 255, 255, 0.72);
	padding: 12px 14px;
}

.hero-summary-title {
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #1b5e20;
	opacity: 0.9;
	margin-bottom: 4px;
}

.hero-summary-text {
	font-weight: 800;
	color: #2e7d32;
}

.hero-config-note {
	font-size: 0.88rem;
	color: #4b5f4f;
	font-weight: 600;
}

.glass {
	border: 1px solid rgba(255, 255, 255, 0.5);
}

.section {
	padding: 80px 0;
}

.section-muted {
	background-color: #f1f8e9;
}

.section-title {
	color: #2e7d32;
	font-weight: 700;
}

.section-subtitle {
	color: #445a4a;
	font-size: 1.05rem;
}

.info-card {
	background: #ffffff;
	padding: 24px;
	border-radius: 16px;
	box-shadow: 0 10px 24px rgba(46, 125, 50, 0.12);
}

.carousel-card {
	padding: 40px;
	background: #ffffff;
	border-radius: 20px;
	min-height: 230px;
}

.project-carousel .carousel-inner {
	border-radius: 20px;
	overflow: hidden;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	filter: brightness(0) saturate(100%) invert(38%) sepia(22%) saturate(1263%) hue-rotate(76deg) brightness(94%) contrast(90%);
}

.carousel-indicators [data-bs-target] {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: rgba(76, 175, 80, 0.4);
}

.carousel-indicators .active {
	background-color: #4caf50;
}

.project-image {
	height: 320px;
	object-fit: cover;
}

.project-caption {
	background: rgba(20, 43, 30, 0.65);
	border-radius: 14px;
	padding: 12px 16px;
	left: 16px;
	right: 16px;
	bottom: 16px;
}

.carousel .badge {
	background-color: #4caf50 !important;
}

.feature-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 12px 30px rgba(46, 125, 50, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
}

#why .feature-card h5 {
	min-height: 2.6em;
	margin-bottom: 8px;
}

.feature-card p {
	margin-bottom: 0;
}

.feature-icon {
	font-size: 1.6rem;
	display: inline-flex;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	background: #e8f5e9;
	border-radius: 12px;
	margin-bottom: 12px;
}

.diagram-flow {
	display: grid;
	gap: 18px;
}

.diagram-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.diagram-card {
	text-align: left;
	width: 100%;
	border: 1px solid rgba(76, 175, 80, 0.18);
	border-radius: 16px;
	padding: 16px 18px;
	background: #ffffff;
	box-shadow: 0 10px 22px rgba(46, 125, 50, 0.08);
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 12px;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.diagram-card h6 {
	margin-bottom: 6px;
	font-weight: 700;
	color: #2e7d32;
}

.diagram-card p {
	margin-bottom: 0;
	color: #4b5f4f;
	font-size: 0.95rem;
}

.diagram-card:hover,
.diagram-card:focus-visible {
	transform: translateY(-4px);
	border-color: rgba(76, 175, 80, 0.55);
	box-shadow: 0 16px 30px rgba(46, 125, 50, 0.16);
	outline: none;
}

.diagram-card.is-active {
	border-color: #4caf50;
	box-shadow: 0 18px 34px rgba(76, 175, 80, 0.22);
}

.diagram-step {
	width: 36px;
	height: 36px;
	border-radius: 12px;
	background: #e8f5e9;
	color: #2e7d32;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.diagram-preview {
	position: relative;
	min-height: 170px;
	border-radius: 20px;
	padding: 20px;
	background: linear-gradient(140deg, rgba(46, 125, 50, 0.08), rgba(255, 255, 255, 0.95));
	box-shadow: 0 18px 40px rgba(46, 125, 50, 0.12);
}

.how-row {
	align-items: stretch;
}

.how-col {
	display: flex;
}

.how-content {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.preview-card {
	position: absolute;
	inset: 20px;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.35s ease, transform 0.35s ease;
}

.preview-card.is-active {
	opacity: 1;
	transform: translateY(0);
}

.preview-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 10px;
	border-radius: 999px;
	background: #4caf50;
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 600;
	margin-bottom: 10px;
}

.system-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 18px;
	box-shadow: 0 12px 28px rgba(46, 125, 50, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
	min-height: 340px;
}

.system-card img {
	width: auto;
	height: 290px;
	object-fit: cover;
	border-radius: 14px;
	margin-bottom: 14px;
}

#system .col-lg-6 .system-card img {
	width: 100%;
	object-fit: contain;
	    height: auto;
}

#system {
	position: relative;
	overflow: hidden;
}

#system::before {
	content: "";
	position: absolute;
	inset: -20% 0 auto -10%;
	height: 70%;
	background: radial-gradient(circle at 20% 20%, rgba(199, 233, 198, 0.7), rgba(255, 255, 255, 0) 55%),
		radial-gradient(circle at 70% 10%, rgba(255, 234, 208, 0.6), rgba(255, 255, 255, 0) 50%);
	transform: rotate(-2deg);
	z-index: 0;
}

#system::after {
	content: "";
	position: absolute;
	right: -10%;
	bottom: -25%;
	width: 420px;
	height: 420px;
	background: radial-gradient(circle, rgba(195, 230, 202, 0.55), rgba(255, 255, 255, 0) 65%);
	z-index: 0;
}

#system .container {
	position: relative;
	z-index: 1;
}

.system-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 18px;
}

.system-tile {
	min-height: 250px;
	border: 1px solid rgba(76, 175, 80, 0.2);
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(232, 245, 233, 0.75));
	backdrop-filter: blur(6px);
}

.system-tile-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
}

.system-icon {
	width: 46px;
	height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.7);
	color: #1b5e20;
	box-shadow: inset 0 0 0 1px rgba(76, 175, 80, 0.2);
}

.system-icon svg {
	width: 26px;
	height: 26px;
}

.system-chip {
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(27, 94, 32, 0.08);
	color: #1b5e20;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.system-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 40px rgba(46, 125, 50, 0.16);
}

.project-card {
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 14px 34px rgba(46, 125, 50, 0.12);
	overflow: hidden;
	height: 100%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.project-body {
	padding: 20px;
}

.project-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 46px rgba(46, 125, 50, 0.18);
}

.project-showcase {
	background: #ffffff;
	border-radius: 24px;
	box-shadow: 0 18px 40px rgba(46, 125, 50, 0.12);
	padding: 28px;
}

.project-text h5 {
	color: #2e7d32;
	font-weight: 700;
	margin-bottom: 10px;
}

.project-text p {
	color: #4b5f4f;
	margin-bottom: 12px;
}

.project-sensor-list {
	margin: 0 0 14px;
	padding-left: 18px;
	color: #4b5f4f;
}

.project-sensor-list li::marker {
	color: #4caf50;
}

.project-sensors {
	margin-top: 10px;
	font-size: 0.85rem;
	color: #2e7d32;
	background: #eef7e9;
	padding: 6px 10px;
	border-radius: 10px;
	display: inline-block;
}

.phone-mockup {
	position: relative;
	max-width: 320px;
	margin: 0 auto;
	padding: 14px;
	border-radius: 46px;
	background: linear-gradient(180deg, #2a2a2a, #0f0f0f);
	box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-screen {
	position: relative;
	border-radius: 32px;
	overflow: hidden;
	background: #000000;
}


.phone-status {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 32px;
	padding: 6px 18px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #ffffff;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	background: #000000;
	z-index: 2;
	pointer-events: none;
}

.status-time {
	min-width: 48px;
}

.status-icons {
	display: inline-flex;
	align-items: center;
}

.status-battery {
	position: relative;
	width: 26px;
	height: 12px;
	border-radius: 4px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.85) 70%, rgba(255, 255, 255, 0) 70%);
	box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.85);
}

.status-battery::after {
	content: "";
	position: absolute;
	right: -4px;
	top: 3px;
	width: 2px;
	height: 6px;
	background: rgba(255, 255, 255, 0.85);
	border-radius: 2px;
}

.phone-video {
	display: block;
	width: 100%;
	height: 520px;
	object-fit: cover;
}

.phone-mockup .side-button {
	position: absolute;
	width: 3px;
	background: #1a1a1a;
	border-radius: 6px;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.phone-mockup .side-button.volume-up {
	left: -3px;
	top: 110px;
	height: 46px;
}

.phone-mockup .side-button.volume-down {
	left: -3px;
	top: 164px;
	height: 46px;
}

.phone-mockup .side-button.power {
	right: -3px;
	top: 135px;
	height: 70px;
}

.cta-card h5 {
	color: #2e7d32;
}

.feature-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 40px rgba(46, 125, 50, 0.18);
}

.step-card {
	background: #ffffff;
	padding: 24px;
	border-radius: 16px;
	position: relative;
	height: 100%;
	border: 1px solid rgba(76, 175, 80, 0.2);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#process {
	position: relative;
	overflow: hidden;
}

#process::before {
	content: "";
	position: absolute;
	left: -10%;
	right: -10%;
	top: -20%;
	height: 60%;
	background: radial-gradient(circle, rgba(76, 175, 80, 0.12) 1px, transparent 1px);
	background-size: 18px 18px;
	opacity: 0.6;
	z-index: 0;
}

#process .container {
	position: relative;
	z-index: 1;
}


.step-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 26px rgba(76, 175, 80, 0.16);
}

.step-number {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #4caf50;
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	margin-bottom: 12px;
}

.sprout-steps {
	position: relative;
	margin: 0 auto;
	max-width: 720px;
	display: flex;
	flex-direction: column-reverse;
	gap: 18px;
	padding-left: 10px;
}

.sprout-steps::before,
.sprout-steps::after {
	display: none;
}

.sprout-bg {
	position: absolute;
	left: -53px;
	top: 0;
	bottom: 0;
	width: 150px;
	height: 100%;
	pointer-events: none;
	z-index: 0;
	opacity: 0.95;
	overflow: visible;
}

.sprout-stem {
	fill: none;
	stroke: url(#sproutStem);
	stroke-width: 6;
	stroke-linecap: round;
	stroke-linejoin: round;
	filter: url(#sproutGlow);
	stroke-dasharray: 1400;
	stroke-dashoffset: 1400;
	transition: stroke-dashoffset 1.6s ease;
}

.sprout-soil path {
	fill: rgba(30, 43, 33, 0.12);
}

.sprout-leaf {
	opacity: 0;
	transform-origin: 0px 0px;
	transform: scale(0.75);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.sprout-steps.in-view .sprout-stem {
	stroke-dashoffset: 0;
}

.sprout-steps.in-view .sprout-leaf {
	opacity: 1;
	transform: scale(1);
}

.sprout-steps.in-view .sprout-leaf-1 {
	transition-delay: 0.25s;
}

.sprout-steps.in-view .sprout-leaf-2 {
	transition-delay: 0.5s;
}

.sprout-steps.in-view .sprout-leaf-3 {
	transition-delay: 0.75s;
}

.sprout-steps.in-view .sprout-leaf-4 {
	transition-delay: 1s;
}

.sprout-fruit {
	opacity: 0;
	transform-origin: 0px 0px;
	transform: translateY(8px) scale(0.9);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.sprout-steps.in-view .sprout-fruit {
	opacity: 1;
	transform: translateY(0) scale(1);
	transition-delay: 1.35s;
}

.sprout-step {
	position: relative;
	padding-left: 64px;
	display: grid;
	align-items: start;
	z-index: 1;
}

.sprout-step::before {
	display: none;
}

.sprout-dot {
	position: absolute;
	left: 6px;
	top: 10px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: linear-gradient(135deg, #66bb6a, #2e7d32);
	color: #ffffff;
	font-weight: 700;
	font-size: 0.9rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 20px rgba(46, 125, 50, 0.2);
}

.sprout-dot::before,
.sprout-dot::after {
	content: "";
	position: absolute;
	left: 26px;
	top: -8px;
	width: 18px;
	height: 12px;
	border-radius: 70% 30% 70% 30%;
	background: linear-gradient(135deg, rgba(102, 187, 106, 0.95), rgba(46, 125, 50, 0.7));
	box-shadow: inset 0 0 0 1px rgba(46, 125, 50, 0.18);
	transform: rotate(-18deg);
}

.sprout-dot::before {
	left: 18px;
	top: -2px;
	width: 14px;
	height: 10px;
	border-radius: 65% 35% 65% 35%;
	background: linear-gradient(135deg, rgba(102, 187, 106, 0.85), rgba(46, 125, 50, 0.6));
	transform: rotate(22deg);
}

.sprout-card {
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(232, 245, 233, 0.8));
	border-radius: 20px;
	padding: 20px 24px;
	border: 1px solid rgba(76, 175, 80, 0.18);
	box-shadow: 0 12px 26px rgba(46, 125, 50, 0.1);
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.sprout-card.in-view {
	opacity: 1;
	transform: translateY(0);
}

.sprout-step:nth-child(1) .sprout-card {
	transition-delay: 0.1s;
}

.sprout-step:nth-child(2) .sprout-card {
	transition-delay: 0.25s;
}

.sprout-step:nth-child(3) .sprout-card {
	transition-delay: 0.4s;
}

.sprout-step:nth-child(4) .sprout-card {
	transition-delay: 0.55s;
}

.sprout-step:nth-child(5) .sprout-card {
	transition-delay: 0.7s;
}

.sprout-card h6 {
	margin-bottom: 8px;
	font-weight: 700;
}

.sprout-card p {
	margin-bottom: 0;
	color: #4b5f4f;
}

.equipment-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 16px;
}

.equipment-list li {
	padding: 16px;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(46, 125, 50, 0.1);
}

.brand-block {
	background: #ffffff;
	border-radius: 20px;
	padding: 32px;
	box-shadow: 0 18px 40px rgba(46, 125, 50, 0.12);
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.brand-media {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.brand-media .carousel {
	width: 100%;
}

.brand-media .carousel-inner {
	border-radius: 16px;
	overflow: hidden;
}

.brand-media .carousel-item {
	/* Allow Bootstrap to handle visibility (do not override display) */
	text-align: center;
	min-height: 280px;
}

.brand-media .carousel-item img {
	display: block;
	margin: 0 auto;
}

.brand-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 12px;
	margin-top: 16px;
}

.brand-grid div {
	background: #f1f8e9;
	padding: 12px;
	border-radius: 12px;
	text-align: center;
	font-weight: 600;
	color: #2e7d32;
}

.case-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 28px;
	box-shadow: 0 18px 40px rgba(46, 125, 50, 0.1);
}

.progress-grid {
	display: grid;
	gap: 16px;
	margin-top: 20px;
}

.progress {
	height: 10px;
	border-radius: 999px;
	background-color: #e1f0da;
}

.progress-bar {
	background-color: #4caf50;
}

.contact-form {
	position: relative;
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(232, 245, 233, 0.78));
	padding: 24px;
	border-radius: 20px;
	border: 1px solid rgba(76, 175, 80, 0.18);
	box-shadow: 0 18px 40px rgba(46, 125, 50, 0.12);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.contact-form::before {
	content: "";
	position: absolute;
	left: 16px;
	right: 16px;
	top: 14px;
	height: 4px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(76, 175, 80, 0.9), rgba(46, 125, 50, 0.65));
	opacity: 0.75;
}

.form-control {
	border-radius: 12px;
	border-color: rgba(76, 175, 80, 0.22);
	background: rgba(255, 255, 255, 0.78);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-control:focus {
	border-color: #4caf50;
	box-shadow: 0 0 0 0.25rem rgba(76, 175, 80, 0.2);
	background: rgba(255, 255, 255, 0.95);
}

.form-note {
	font-size: 0.9rem;
	color: #4b5f4f;
}

.contact-info {
	background: #ffffff;
	padding: 24px;
	border-radius: 20px;
	box-shadow: 0 18px 40px rgba(46, 125, 50, 0.12);
	height: 100%;
}

/* Contact (interactive) */
#contact {
	position: relative;
	overflow: hidden;
}

#contact::before {
	content: "";
	position: absolute;
	inset: -22% -10% auto -10%;
	height: 65%;
	background:
		radial-gradient(circle at 22% 25%, rgba(199, 233, 198, 0.75), rgba(255, 255, 255, 0) 55%),
		radial-gradient(circle at 78% 18%, rgba(255, 234, 208, 0.55), rgba(255, 255, 255, 0) 52%);
	transform: rotate(-1deg);
	z-index: 0;
}

#contact .container {
	position: relative;
	z-index: 1;
}

#contact .contact-info,
#contact .contact-form {
	width: 100%;
}

.contact-title {
	margin-bottom: 10px;
}

.contact-subtitle {
	margin-bottom: 14px;
}

#contact .form-label {
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 0.78rem;
	color: #1b5e20;
	opacity: 0.88;
}

#contact .contact-form h5 {
	margin-top: 6px;
	color: #2e7d32;
	font-weight: 800;
}

#contact .contact-form .mb-3 {
	margin-bottom: 16px !important;
}

#contact .contact-form .submit-btn {
	margin-top: auto;
}

#contact .contact-form .form-note {
	margin-bottom: 0;
}

.contact-actions {
	display: grid;
	gap: 12px;
}

.contact-pill {
	border: 1px solid rgba(76, 175, 80, 0.18);
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(232, 245, 233, 0.78));
	border-radius: 16px;
	padding: 12px 14px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 12px;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-pill:hover {
	transform: translateY(-3px);
	border-color: rgba(76, 175, 80, 0.5);
	box-shadow: 0 16px 30px rgba(46, 125, 50, 0.14);
}

.contact-pill-icon {
	width: 44px;
	height: 44px;
	border-radius: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.75);
	box-shadow: inset 0 0 0 1px rgba(76, 175, 80, 0.18);
	font-size: 1.25rem;
}

.contact-pill-body {
	min-width: 0;
}

.contact-pill-label {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #1b5e20;
	opacity: 0.85;
	margin-bottom: 2px;
}

.contact-pill-value {
	font-weight: 700;
	color: #2e7d32;
	text-decoration: none;
	display: inline-block;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.contact-pill-value:hover {
	color: #1b5e20;
	text-decoration: underline;
}

.contact-pill-note {
	font-size: 0.85rem;
	font-weight: 700;
	color: #2e7d32;
	background: rgba(27, 94, 32, 0.08);
	padding: 6px 10px;
	border-radius: 999px;
}

.contact-copy {
	appearance: none;
	border: 1px solid rgba(76, 175, 80, 0.5);
	background: rgba(255, 255, 255, 0.7);
	color: #2e7d32;
	border-radius: 999px;
	padding: 8px 12px;
	font-weight: 700;
	font-size: 0.85rem;
	transition: background-color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.contact-copy:hover {
	background: rgba(76, 175, 80, 0.12);
	border-color: rgba(76, 175, 80, 0.75);
}

.contact-copy:active {
	transform: scale(0.98);
}

.contact-copy.is-copied {
	background: rgba(76, 175, 80, 0.16);
}

.contact-toast {
	min-height: 20px;
	margin-top: 10px;
	font-size: 0.9rem;
	font-weight: 600;
	color: #2e7d32;
}

.form-status {
	min-height: 18px;
	margin-bottom: 12px;
	font-size: 0.95rem;
	font-weight: 600;
	color: #2e7d32;
}

.form-status.is-error {
	color: #b71c1c;
}

.range-field {
	margin-bottom: 16px;
	padding: 12px 14px;
	border-radius: 16px;
	border: 1px solid rgba(76, 175, 80, 0.16);
	background: rgba(255, 255, 255, 0.7);
}

.range-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 10px;
}

.range-value {
	min-width: 72px;
	text-align: right;
	font-weight: 800;
	color: #2e7d32;
}

.range-value:empty {
	opacity: 0;
}

.range-input-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
	flex-wrap: wrap;
}

.range-number-input {
	max-width: 160px;
	font-weight: 700;
	color: #2e7d32;
	border-color: rgba(76, 175, 80, 0.22);
	background: rgba(255, 255, 255, 0.88);
	appearance: textfield;
	-moz-appearance: textfield;
}

.range-number-input::placeholder {
	color: #7a8d7f;
	font-weight: 500;
}

.range-number-input::-webkit-outer-spin-button,
.range-number-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.range-input-unit {
	font-weight: 800;
	color: #2e7d32;
	white-space: nowrap;
}

.range-input {
	margin: 0;
}

/* Range styling */
.range-input::-webkit-slider-runnable-track {
	height: 8px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(76, 175, 80, 0.75), rgba(76, 175, 80, 0.25));
}

.range-input::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 22px;
	height: 22px;
	border-radius: 999px;
	background: #ffffff;
	border: 2px solid rgba(76, 175, 80, 0.9);
	box-shadow: 0 8px 18px rgba(46, 125, 50, 0.18);
	margin-top: -7px;
}

.range-input:focus-visible::-webkit-slider-thumb {
	box-shadow: 0 0 0 0.25rem rgba(76, 175, 80, 0.2), 0 8px 18px rgba(46, 125, 50, 0.18);
}

.range-input::-moz-range-track {
	height: 8px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(76, 175, 80, 0.75), rgba(76, 175, 80, 0.25));
}

.range-input::-moz-range-thumb {
	width: 22px;
	height: 22px;
	border-radius: 999px;
	background: #ffffff;
	border: 2px solid rgba(76, 175, 80, 0.9);
	box-shadow: 0 8px 18px rgba(46, 125, 50, 0.18);
}

.submit-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.submit-spinner {
	width: 16px;
	height: 16px;
	border-radius: 999px;
	border: 2px solid rgba(255, 255, 255, 0.55);
	border-top-color: #ffffff;
	opacity: 0;
	transform: scale(0.9);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.submit-btn.is-loading {
	pointer-events: none;
}

.submit-btn.is-loading .submit-spinner {
	opacity: 1;
	transform: scale(1);
	animation: spin 0.9s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* Calc modal */
.calc-modal {
	border-radius: 20px;
	border: 1px solid rgba(76, 175, 80, 0.18);
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(232, 245, 233, 0.78));
	box-shadow: 0 22px 48px rgba(0, 0, 0, 0.16);
}

.calc-modal .modal-body {
	padding: 22px;
}

.calc-head h5 {
	color: #2e7d32;
	font-weight: 800;
}

.calc-head p {
	color: #4b5f4f;
	font-weight: 600;
}

.calc-status {
	min-height: 18px;
	margin-bottom: 12px;
	font-size: 0.95rem;
	font-weight: 600;
	color: #2e7d32;
}

.calc-status.is-error {
	color: #b71c1c;
}

.calc-submit.is-loading {
	pointer-events: none;
}

.calc-submit.is-loading .submit-spinner {
	opacity: 1;
	transform: scale(1);
	animation: spin 0.9s linear infinite;
}

.calc-form .form-check-label {
	color: #4b5f4f;
	font-weight: 600;
}

.company-card {
	background: #f1f8e9;
	padding: 28px;
	border-radius: 20px;
	border: 1px solid rgba(76, 175, 80, 0.2);
}

/* Reasons (interactive) */
#reasons {
	position: relative;
	overflow: hidden;
}

#reasons::before {
	content: "";
	position: absolute;
	inset: -25% -10% auto -10%;
	height: 70%;
	background:
		radial-gradient(circle at 25% 25%, rgba(199, 233, 198, 0.75), rgba(255, 255, 255, 0) 55%),
		radial-gradient(circle at 70% 15%, rgba(255, 234, 208, 0.55), rgba(255, 255, 255, 0) 52%);
	transform: rotate(1.5deg);
	z-index: 0;
}

#reasons .container {
	position: relative;
	z-index: 1;
}

.reason-card {
	background: transparent;
	border-radius: 20px;
	min-height: 260px;
	perspective: 1000px;
	cursor: pointer;
	outline: none;
}

.reason-card:focus-visible .reason-card-inner {
	box-shadow: 0 0 0 0.25rem rgba(76, 175, 80, 0.2);
}

.reason-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 260px;
	border-radius: 20px;
	transform-style: preserve-3d;
	transition: transform 0.6s ease;
}

.reason-card-face {
	position: absolute;
	inset: 0;
	border-radius: 20px;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	border: 1px solid rgba(76, 175, 80, 0.18);
	box-shadow: 0 18px 40px rgba(46, 125, 50, 0.12);
	padding: 22px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.reason-front {
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(232, 245, 233, 0.78));
}

.reason-back {
	background: rgba(255, 255, 255, 0.96);
	transform: rotateY(180deg);
}

.reason-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 10px;
}

.reason-icon {
	width: 46px;
	height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.75);
	box-shadow: inset 0 0 0 1px rgba(76, 175, 80, 0.18);
	font-size: 1.35rem;
}

.reason-badge {
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(27, 94, 32, 0.08);
	color: #1b5e20;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.reason-card h5 {
	color: #2e7d32;
	font-weight: 700;
	margin-bottom: 10px;
}

.reason-lead {
	color: #4b5f4f;
	margin-bottom: 0;
}

.reason-hint {
	margin-top: 14px;
	margin-bottom: 0;
	font-size: 0.85rem;
	font-weight: 600;
	color: #2e7d32;
	opacity: 0.9;
}

.reason-back h6 {
	color: #2e7d32;
	font-weight: 800;
	margin-bottom: 12px;
}

.reason-list {
	margin: 0;
	padding-left: 18px;
	color: #4b5f4f;
}

.reason-list li {
	margin-bottom: 8px;
}

.reason-list li:last-child {
	margin-bottom: 0;
}

.reason-list li::marker {
	color: #4caf50;
}

.reason-card:hover .reason-card-face {
	border-color: rgba(76, 175, 80, 0.45);
	box-shadow: 0 22px 48px rgba(46, 125, 50, 0.16);
}

.reason-card:active .reason-card-inner {
	transform: scale(0.99);
}

.reason-card.is-flipped .reason-card-inner {
	transform: rotateY(180deg);
}

.feature-card,
.step-card,
.info-card,
.brand-block,
.case-card,
.contact-form,
.company-card,
.reason-card,
.system-card,
.project-card,
.cta-card {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.in-view {
	opacity: 1;
	transform: translateY(0);
}

/* Success modal */
.success-icon {
	font-size: 3rem;
	line-height: 1;
}

.footer {
	background: #2e7d32;
	color: #ffffff;
	padding: 20px 0;
}

.footer a {
	color: #c8e6c9;
}

.footer a:hover {
	color: #ffffff;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}
