@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&family=Roboto:wght@400;500;700&display=swap');

/* ============================
   VARIABLES & BASE STYLES
   ============================ */

:root {
	--color-white: #ffffff;
	--color-shadow: rgba(0, 0, 0, 0.2);
	--color-main: rgb(236 90 19);
	--radius-default: 1.6rem;
}

body {
	font-family: 'Nunito', sans-serif;
}

.container {
	max-width: 1066px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 30px;
}

.pan-image {
	height: 130px;
	width: auto;
}

.pan-image-2 {
	height: 130px;
	width: auto;
	display: block;
	margin-left: auto;
	margin-right: auto;
}



/* ============================
   HEADER
   ============================ */

.header {
	background-color: var(--color-white);
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 23.5px;
	box-shadow: 0 4px 8px 0 var(--color-shadow);
}

.header__logo {
	width: auto;
	height: 30px;
	display: block;
	margin-bottom: 8px;
}

.header__secure {
	display: flex;
	align-items: center;
	margin-left: 15px;
	padding-left: 15px;
	border-left: 1px solid var(--color-main);
}

.header__shield {
	width: auto;
	height: 25px;
	display: block;
	margin-right: 8px;
}

.header__text {
	font-size: 20px;
	font-weight: 700;
	color: var(--color-main);
}

/* ============================
   TIMELINE HEADLINE
   ============================ */

.timeline-headline {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding-left: 30px;
	position: relative;
}

.timeline-headline::before {
	content: '';
	position: absolute;
	left: 42px;
	top: 20px;
	bottom: 20px;
	width: 1px;
	background-color: rgba(21, 34, 51, 0.16);
}

.timeline-headline__step {
	display: flex;
	align-items: center;
	gap: 12px;
	position: relative;
	z-index: 1;
}

.timeline-headline__number {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background-color: var(--color-main);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 12px;
	flex-shrink: 0;
}

.timeline-headline__label {
	font-size: 14px;
	font-weight: 400;
	color: #152233;
		font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}

/* ============================
   TIMELINE STEP CARD
   ============================ */

.timeline-step-card {
	margin-left: 36px;
	margin-top: 0px;
}

.timeline-step-card__title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
}

.timeline-step-card__icon {
	width: 16px;
	height: 16px;
	display: block;
}

.timeline-step-card__description {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.timeline-step-card__field {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0px;
}

.timeline-step-card__label {
	font-weight: 400;
	font-size: 13px;
	color: #627c93;
}

.timeline-step-card__value {
	font-weight: 700;
	font-size: 14px;
	color: #152233;
}

/* ============================
   OPTION CARDS
   ============================ */

.options {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.option-card {
	display: flex;
	flex-direction: column;
	padding: 20px;
	border: 1px solid #c4c4c4;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.option-card__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}

.option-card input[type="radio"] {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 14px;
	height: 14px;
	border: 1px solid #a1a1a1;
	border-radius: 50%;
	cursor: pointer;
	margin-right: 10px;
	background-color: transparent;
	transition: all 0.2s ease;
	outline: none;
}

.option-card input[type="radio"]:focus {
	outline: 2px solid var(--color-main);
	outline-offset: 2px;
}

.option-card input[type="radio"]:checked {
	border-color: var(--color-main);
	background: radial-gradient(circle, var(--color-main) 40%, transparent 40%);
}

.option-card .form-check-label {
	font-weight: 700;
	cursor: pointer;
	margin-bottom: 0;
}

.option-card__price {
	font-size: 18px;
	font-weight: 700;
	color: var(--color-main);
}

.option-card__description {
	padding-top: 12px;
	border-top: 1px solid #e0e0e0;
	font-size: 14px;
	color: #666666;
	line-height: 1.5;
	padding-left: 16px;
	gap: 1rem;
}

.option-card__list {
	list-style: none;
	padding-left: 0;
	margin: 0;
}

.option-card__list li {
	padding: 3px 0 3px 24px;
	color: #333333;
	margin: 0;
	position: relative;
	font-size: 14px;
			font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}

.option-card__list li::before {
	content: "";
	position: absolute;
	left: 0;
	width: 16px;
	height: 16px;
	background-image: url('../img/check.svg');
	background-size: contain;
	background-repeat: no-repeat;
}

.option-badge {
	display: block;
	background-color: var(--color-main);
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 4px;
	margin-bottom: 8px;
	width: fit-content;
	border-radius: var(--radius-default);
}

/* ============================
   INFO SECTION
   ============================ */

.info-section {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px;
	background-color: rgb(240, 242, 245);
	border-radius: 12px;
	margin-top: 30px;
	margin-bottom: 45px;
}

.info-section__icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.info-section__icon img {
	width: 24px;
	height: 24px;
}

.info-section__content {
	flex: 1;
}

.info-section__title {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 8px;
	color: #333333;
}

.info-section__text {
	font-size: 14px;
	color: #666666;
	line-height: 1.5;
	margin: 0;
}

/* ============================
   BUTTONS
   ============================ */

.btn-continue {
	background-color: var(--color-main);
	color: #ffffff;
	border: none;
	border-radius: 12px;
	padding: 8px 12px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.btn-continue__icon {
	width: 18px;
	height: 18px;
	display: block;
	color: currentColor;
}

.btn-continue:hover {
	opacity: 0.9;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(236, 90, 19, 0.3);
}

.btn-postwire {
	width: fit-content;
	text-decoration: none;
}

/* ============================
   CONTENT SECTIONS
   ============================ */

.details-section {
	font-size: 12px;
}

.details-section a {
	color: inherit;
	text-decoration: underline;
}

.details-section a:hover {
	text-decoration: underline;
}

.infosuite-content {
	font-size: 12px;
	line-height: 1.6;
	color: #555555;
	background-color: rgb(244 249 254);
	padding: 16px;
	border-radius: 8px;
	margin-top: 40px;
}

.infosuite-content p {
	margin-bottom: 12px;
}

.infosuite-content p:last-child {
	margin-bottom: 0;
}

/* ============================
   PARTNERSHIP SECTION
   ============================ */

.partnership-section {
	border-top: 1px solid #e0e0e0;
	padding-top: 20px;
}

.partnership-section__title {
	font-size: 12px;
	color: #666666;
	line-height: 1.5;
	margin-bottom: 6px;
}

.partnership-section__logo {
	height: 24px;
	margin-bottom: 12px;
	display: block;
}

.partnership-section__text {
	font-size: 12px;
	color: #666666;
	line-height: 1.5;
	margin: 0;
}

/* ============================
   FOOTER
   ============================ */

.footer {
	background-color: rgb(43, 52, 65);
	margin-top: 50px;
	padding: 24px;
}

.footer__content {
	max-width: 1066px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
}

.footer__section {
	flex: 1;
	color: #ffffff;
	font-size: 14px;
}

.footer__trustpilot {
	text-align: right;
	display: flex;
	justify-content: flex-end;
}

.trustpilot-link {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: #ffffff;
	transition: opacity 0.3s ease;
	margin-left: auto;
}

.trustpilot-link:hover {
	opacity: 0.8;
}

.trustpilot-rating {
	font-size: 14px;
	font-weight: 600;
}

.trustpilot-stars {
	font-size: 12px;
	color: #ffd700;
	letter-spacing: 2px;
	height: 18px;
	width: auto;
}

.trustpilot-reviews {
	font-size: 12px;
	color: #cccccc;
}

.postwire-title{
	font-size: 20px;
	font-weight: 700;
}

.card-2{
	display: flex;
	flex-direction: column;
	padding: 20px 10%;
	border-radius: 12px;
	box-shadow: 0 4px 8px 0 var(--color-shadow);
	transition: all 0.3s ease;
}

.posttimeline{
	padding-left: 20px !important;
}
.posttimeline::before{
	left: 24px !important;
	top: 14px;
	bottom: 24px;
	background-color: rgba(21, 34, 51, .1) !important;
}

.postwiredot{
	background-color:rgba(21, 34, 51, .4) !important;
	width: 9px;
	height: 9px;
}

.wirelabel{
	font-weight: 400;
	font-size: 14px;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.grabb{
	height: 95px;
    width: auto;
}

.roboto{
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* ============================
   MODAL STYLES
   ============================ */

.modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 9998;
}

.modal-overlay.active {
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-box {
	background: white;
	border-radius: 12px;
	padding: 30px;
	max-width: 400px;
	width: 90%;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	z-index: 9999;
	animation: modalSlideIn 0.3s ease-out;
		font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}

@keyframes modalSlideIn {
	from {
		transform: translateY(-30px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.modal-box h3 {
	/* color: #ec5a13; */
	margin-bottom: 15px;
	font-weight: 400;
	font-size: 16px;
}

.modal-box p {
	color: #333;
	margin-bottom: 20px;
	line-height: 1.5;
	white-space: pre-wrap;
	word-wrap: break-word;
}

.modal-buttons {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
}

.modal-btn {
	padding: 10px 20px;
	border: none;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
}

.modal-btn-cancel {
	background-color: #6c757d;
	color: white;
}

.modal-btn-cancel:hover {
	background-color: #5a6268;
}

.modal-btn-confirm {
	background-color: #ec5a13;
	color: white;
}

.modal-btn-confirm:hover {
	background-color: #d84a0a;
}

.modal-btn-ok {
	background-color: #ec5a13;
	color: white;
	border-radius: var(--radius-default);
}

.modal-btn-ok:hover {
	background-color: #d84a0a;
}