/* ============================================
   Territorium Cotizador — Public Styles
   Scoped under .tc-cot
   ============================================ */

.tc-cot {
	--tc-green: #21B354;
	--tc-green-dark: #295136;
	--tc-btn: #178A41;
	--tc-btn-hover: #147A38;
	--tc-ink: #191919;
	--tc-ink-soft: #555555;
	--tc-bg: #FFFFFF;
	--tc-bg-soft: #F4F7F5;
	--tc-border: #E0E5E1;
	--tc-error: #D32F2F;
	--tc-success: #21B354;
	--tc-radius: 12px;
	--tc-radius-sm: 6px;
	--tc-shadow: 0 4px 12px rgba(0,0,0,0.1);
	--tc-transition: 0.2s ease;
	--tc-font-title: 'Zalando Sans SemiExpanded', 'Segoe UI', system-ui, sans-serif;
	--tc-font-body: 'Stack Sans Text', 'Segoe UI', system-ui, sans-serif;

	font-family: var(--tc-font-body);
	color: var(--tc-ink);
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
	box-sizing: border-box;
}

.tc-cot *, .tc-cot *::before, .tc-cot *::after {
	box-sizing: border-box;
}

.tc-cot__sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}

.tc-cot__honeypot {
	position: absolute !important;
	left: -9999px !important;
	opacity: 0 !important;
	height: 0 !important;
	width: 0 !important;
}

/* Layout */
.tc-cot__layout {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 32px;
	align-items: start;
}

@media (max-width: 1024px) {
	.tc-cot__layout {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

/* Stepper */
.tc-cot__stepper {
	display: flex;
	justify-content: center;
	gap: 0;
	margin-bottom: 32px;
	position: relative;
}

.tc-cot__step {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
	position: relative;
	cursor: default;
}

.tc-cot__step--completed {
	cursor: pointer;
}

.tc-cot__step--completed:hover .tc-cot__step-circle {
	border-color: var(--tc-green);
}

.tc-cot__step-circle {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid var(--tc-border);
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--tc-bg);
	transition: var(--tc-transition);
	position: relative;
	z-index: 1;
}

.tc-cot__step--active .tc-cot__step-circle {
	border-color: var(--tc-green);
	background: var(--tc-green);
}

.tc-cot__step--completed .tc-cot__step-circle {
	border-color: var(--tc-green);
	background: var(--tc-green);
}

.tc-cot__step-number {
	font-size: 14px;
	font-weight: 700;
	color: var(--tc-ink-soft);
}

.tc-cot__step--active .tc-cot__step-number,
.tc-cot__step--completed .tc-cot__step-number {
	color: #fff;
}

.tc-cot__step-check {
	display: none;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
}

.tc-cot__step--completed .tc-cot__step-number { display: none; }
.tc-cot__step--completed .tc-cot__step-check { display: block; }

.tc-cot__step-label {
	font-size: 12px;
	color: var(--tc-ink-soft);
	margin-top: 8px;
	text-align: center;
}

.tc-cot__step--active .tc-cot__step-label {
	color: var(--tc-green);
	font-weight: 700;
}

.tc-cot__step--completed .tc-cot__step-label {
	color: var(--tc-green);
}

/* Step content */
.tc-cot__step-content {
	animation: tcFadeIn 0.3s ease;
}

@keyframes tcFadeIn {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Fields */
.tc-cot__field {
	margin-bottom: 24px;
}

.tc-cot__label {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: var(--tc-ink);
	margin-bottom: 8px;
}

.tc-cot__form-title {
	margin: 0 0 20px;
	font-family: var(--tc-font-title);
	font-size: 28px;
	line-height: 1.15;
	color: var(--tc-green-dark);
}

.tc-cot input.tc-cot__input,
.tc-cot__select {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--tc-border) !important;
	border-radius: var(--tc-radius-sm);
	font-size: 16px;
	font-family: var(--tc-font-body);
	color: var(--tc-ink);
	background: var(--tc-bg);
	transition: var(--tc-transition);
	appearance: none;
	-webkit-appearance: none;
}

.tc-cot input.tc-cot__input {
	width: 100% !important;
	padding: 12px 16px !important;
	border-radius: var(--tc-radius-sm) !important;
	font-size: 16px !important;
	font-family: var(--tc-font-body) !important;
	color: var(--tc-ink) !important;
	background: var(--tc-bg) !important;
	transition: var(--tc-transition) !important;
	appearance: none !important;
	-webkit-appearance: none !important;
}

.tc-cot__select--multiple {
	min-height: 132px;
	padding: 8px;
	background-image: none;
}

.tc-cot__select--multiple option {
	padding: 7px 8px;
}

.tc-cot__select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23555' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 40px;
}

.tc-cot input.tc-cot__input:focus,
.tc-cot__select:focus {
	outline: none;
	border-color: var(--tc-green) !important;
	box-shadow: 0 0 0 3px rgba(33,179,84,0.15);
}

.tc-cot input.tc-cot__input.tc-cot__input--error,
.tc-cot__select--error {
	border-color: var(--tc-error) !important;
}

.tc-cot__error {
	font-size: 13px;
	color: var(--tc-error);
	margin-top: 4px;
	min-height: 18px;
}

/* Radio cards */
.tc-cot__radio-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
	border: none;
	padding: 0;
	margin: 0;
}

.tc-cot__radio-group--horizontal {
	flex-direction: row;
	flex-wrap: wrap;
}

.tc-cot__radio-card {
	position: relative;
	display: block;
	border: 2px solid var(--tc-border);
	border-radius: var(--tc-radius);
	padding: 16px;
	cursor: pointer;
	transition: var(--tc-transition);
	background: var(--tc-bg);
}

.tc-cot__radio-card:hover {
	border-color: rgba(33,179,84,0.5);
}

.tc-cot__radio-card--disabled {
	opacity: 0.48;
	cursor: not-allowed;
	background: var(--tc-bg-soft);
}

.tc-cot__radio-card--disabled:hover {
	border-color: var(--tc-border);
}

.tc-cot__check {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 12px 14px;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius-sm);
	font-size: 14px;
	line-height: 1.4;
	cursor: pointer;
}

.tc-cot__check input {
	width: 18px;
	height: 18px;
	margin: 1px 0 0;
	accent-color: var(--tc-green);
	flex: 0 0 auto;
}

.tc-cot__turbo-confirmations {
	margin: 20px 0 24px;
	padding: 18px;
	border: 1px solid var(--tc-green);
	border-radius: var(--tc-radius);
	background: var(--tc-bg-soft);
}

.tc-cot__turbo-confirmations .tc-cot__check {
	margin-bottom: 10px;
	background: var(--tc-bg);
}

.tc-cot__radio-card input[type="radio"],
.tc-cot__radio-card input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.tc-cot__radio-card input:checked + .tc-cot__radio-card-content,
.tc-cot__doc-card input:checked ~ .tc-cot__doc-name {
	color: var(--tc-green-dark);
}

.tc-cot__radio-card:has(input:checked) {
	border-color: var(--tc-green);
	background: var(--tc-bg-soft);
}

.tc-cot__radio-card--compact {
	padding: 12px 16px;
	flex: 1;
	min-width: 120px;
}

.tc-cot__radio-card-content {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.tc-cot__radio-card-title {
	font-size: 15px;
	font-weight: 700;
	color: var(--tc-ink);
}

.tc-cot__radio-card-desc {
	font-size: 13px;
	color: var(--tc-ink-soft);
	line-height: 1.4;
}

.tc-cot__radio-card-price {
	font-size: 13px;
	font-weight: 700;
	color: var(--tc-green);
	margin-top: 4px;
}

.tc-cot__free {
	color: var(--tc-ink-soft);
	font-weight: 400;
}

/* Tooltip */
.tc-cot__tooltip-trigger {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--tc-bg-soft);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: var(--tc-ink-soft);
	cursor: help;
	border: none;
}

.tc-cot__tooltip-trigger:focus {
	outline: 2px solid var(--tc-green);
	outline-offset: 2px;
}

.tc-cot__tooltip-content {
	display: none;
	position: absolute;
	bottom: calc(100% + 8px);
	right: 0;
	width: 240px;
	padding: 12px;
	background: var(--tc-ink);
	color: #fff;
	font-size: 13px;
	line-height: 1.4;
	border-radius: var(--tc-radius-sm);
	z-index: 100;
	box-shadow: var(--tc-shadow);
}

.tc-cot__tooltip-content::after {
	content: '';
	position: absolute;
	top: 100%;
	right: 12px;
	border: 6px solid transparent;
	border-top-color: var(--tc-ink);
}

.tc-cot__tooltip-trigger:hover .tc-cot__tooltip-content,
.tc-cot__tooltip-trigger:focus .tc-cot__tooltip-content {
	display: block;
}

/* Info card (cronología) */
.tc-cot__info-card {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px;
	background: var(--tc-bg-soft);
	border-radius: var(--tc-radius);
	border-left: 3px solid var(--tc-green);
	font-size: 14px;
	color: var(--tc-ink);
}

.tc-cot__info-icon {
	font-size: 20px;
}

/* Number stepper */
.tc-cot__stepper-number {
	display: flex;
	align-items: center;
	gap: 0;
	border: 1px solid var(--tc-border);
	border-radius: 30px;
	overflow: hidden;
	width: fit-content;
}

.tc-cot__stepper-btn {
	width: 44px;
	height: 44px;
	border: none;
	background: var(--tc-bg-soft);
	font-size: 20px;
	font-weight: 700;
	color: var(--tc-ink);
	cursor: pointer;
	transition: var(--tc-transition);
	display: flex;
	align-items: center;
	justify-content: center;
}

.tc-cot__stepper-btn:hover {
	background: var(--tc-border);
}

.tc-cot__stepper-btn:focus {
	outline: 2px solid var(--tc-green);
	outline-offset: -2px;
}

.tc-cot__stepper-input {
	width: 64px;
	height: 44px;
	border: none;
	border-left: 1px solid var(--tc-border);
	border-right: 1px solid var(--tc-border);
	appearance: textfield;
	-moz-appearance: textfield;
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	font-family: var(--tc-font-body);
	color: var(--tc-ink);
}

.tc-cot__stepper-input::-webkit-inner-spin-button,
.tc-cot__stepper-input::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.tc-cot__stepper-input:focus {
	outline: none;
}

/* Tier badge & table */
.tc-cot__tier-badge {
	display: inline-block;
	margin-top: 8px;
	padding: 6px 12px;
	background: var(--tc-bg-soft);
	border: 1px solid var(--tc-green);
	border-radius: 20px;
	font-size: 13px;
	font-weight: 700;
	color: var(--tc-green);
}

.tc-cot__tier-table {
	margin-top: 12px;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius-sm);
	overflow: hidden;
}

.tc-cot__tier-row {
	display: flex;
	justify-content: space-between;
	padding: 8px 16px;
	font-size: 13px;
	border-bottom: 1px solid var(--tc-border);
}

.tc-cot__tier-row:last-child {
	border-bottom: none;
}

.tc-cot__tier-row--active {
	background: var(--tc-bg-soft);
	font-weight: 700;
	color: var(--tc-green);
}

/* Documents microform */
.tc-cot__documents-microform {
	margin-top: 16px;
	padding: 16px;
	background: var(--tc-bg-soft);
	border-radius: var(--tc-radius);
}

.tc-cot__docs-title {
	font-size: 14px;
	font-weight: 700;
	margin: 0 0 12px;
}

.tc-cot__doc-card {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius-sm);
	margin-bottom: 8px;
	cursor: pointer;
	transition: var(--tc-transition);
	background: var(--tc-bg);
}

.tc-cot__doc-card:hover {
	border-color: rgba(33,179,84,0.5);
}

.tc-cot__doc-card:has(input:checked) {
	border-color: var(--tc-green);
	background: var(--tc-bg-soft);
}

.tc-cot__doc-card input[type="checkbox"] {
	width: 18px;
	height: 18px;
	accent-color: var(--tc-green);
}

.tc-cot__doc-name {
	flex: 1;
	font-size: 14px;
}

.tc-cot__doc-price {
	font-size: 14px;
	font-weight: 700;
	color: var(--tc-ink);
}

.tc-cot__docs-subtotal {
	display: flex;
	justify-content: space-between;
	padding-top: 12px;
	border-top: 1px solid var(--tc-border);
	font-size: 14px;
	font-weight: 700;
}

.tc-cot__docs-subtotal-value {
	color: var(--tc-green);
}

/* Preliminary value */
.tc-cot__preliminary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 16px;
	background: var(--tc-bg-soft);
	border-radius: var(--tc-radius-sm);
	font-size: 14px;
	margin-top: 16px;
}

.tc-cot__preliminary-value {
	font-size: 18px;
	font-weight: 700;
	color: var(--tc-green);
}

/* Study info container */
.tc-cot__study-info {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 16px;
	margin-top: 16px;
	background: var(--tc-bg-soft);
	border-left: 3px solid var(--tc-green);
	border-radius: var(--tc-radius-sm);
	animation: tcFadeIn 0.3s ease;
}

.tc-cot__study-info[hidden] {
	display: none !important;
}

.tc-cot__study-info__icon {
	font-size: 20px;
	flex-shrink: 0;
}

.tc-cot__study-info__content {
	flex: 1;
}

.tc-cot__study-info__content strong {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: var(--tc-ink);
	margin-bottom: 4px;
}

.tc-cot__study-info__content p {
	margin: 0;
	font-size: 13px;
	color: var(--tc-ink-soft);
	line-height: 1.5;
}

/* Navigation */
.tc-cot__nav {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid var(--tc-border);
}

/* Buttons */
.tc-cot__btn {
	padding: 14px 28px;
	border-radius: var(--tc-radius-sm);
	font-size: 16px;
	font-weight: 700;
	font-family: var(--tc-font-body);
	cursor: pointer;
	transition: var(--tc-transition);
	border: none;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.tc-cot__btn:focus {
	outline: 2px solid var(--tc-green);
	outline-offset: 2px;
}

.tc-cot__btn--next,
.tc-cot__btn--submit {
	background: var(--tc-btn);
	color: #fff !important;
	margin-left: auto;
}

.tc-cot__btn--next:hover,
.tc-cot__btn--submit:hover {
	background: var(--tc-btn-hover) !important;
}

.tc-cot__btn--back {
	background: transparent;
	color: var(--tc-ink-soft);
	border: 1px solid var(--tc-border);
}

.tc-cot__btn--back:hover {
	border-color: var(--tc-ink-soft);
	color: var(--tc-ink);
}

.tc-cot__btn--primary {
	background: var(--tc-btn);
	color: #fff !important;
	width: 100%;
	padding: 18px 32px;
	font-size: 18px;
}

.tc-cot__btn--primary:hover {
	background: var(--tc-btn-hover);
}

/* Summary panel (desktop) */
.tc-cot__summary-panel {
	position: sticky;
	top: 100px;
	background: var(--tc-green-dark);
	border-radius: var(--tc-radius);
	color: #fff;
	overflow: hidden;
	box-shadow: var(--tc-shadow);
}

.tc-cot__summary-header {
	padding: 20px 24px;
	border-bottom: 1px solid rgba(255,255,255,0.15);
}

.tc-cot__summary-header h3 {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
}

.tc-cot__summary-body {
	padding: 16px 24px 24px;
}

.tc-cot__summary-row {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
	font-size: 14px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.tc-cot__summary-row:last-of-type {
	border-bottom: none;
}

.tc-cot__summary-row[data-row="discount"] [data-field="discount_total"] {
	color: var(--tc-green);
}

.tc-cot__summary-value {
	font-weight: 700;
}

.tc-cot__summary-total {
	display: flex;
	justify-content: space-between;
	padding-top: 16px;
	margin-top: 8px;
	border-top: 2px solid var(--tc-green);
	font-size: 20px;
	font-weight: 700;
}

.tc-cot__summary-total-value {
	color: var(--tc-green);
}

/* Mobile summary */
.tc-cot__mobile-summary {
	display: none;
}

@media (max-width: 1024px) {
	.tc-cot__summary-panel {
		display: none;
	}

	.tc-cot__mobile-summary {
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 1000;
	}

	.tc-cot__mobile-summary-toggle {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		padding: 16px 24px;
		background: var(--tc-green-dark);
		color: #fff;
		border: none;
		font-size: 16px;
		font-weight: 700;
		font-family: var(--tc-font-body);
		cursor: pointer;
	}

	.tc-cot__mobile-total {
		font-size: 20px;
	}

	.tc-cot__mobile-summary-sheet {
		background: var(--tc-green-dark);
		padding: 0 24px 24px;
		max-height: 300px;
		overflow-y: auto;
	}

	.tc-cot__mobile-summary-sheet .tc-cot__summary-row {
		border-bottom-color: rgba(255,255,255,0.1);
	}

	.tc-cot__mobile-summary-sheet .tc-cot__summary-total {
		border-top-color: var(--tc-green);
	}

	.tc-cot__mobile-summary-sheet .tc-cot__summary-total-value {
		color: var(--tc-green);
	}

	.tc-cot__layout {
		padding-bottom: 80px;
	}
}

/* Success screen */
.tc-cot__success {
	text-align: center;
	padding: 48px 24px;
	animation: tcFadeIn 0.4s ease;
}

.tc-cot__success-icon {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: var(--tc-green);
	color: #fff;
	font-size: 36px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
}

.tc-cot__success-title {
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 8px;
	color: var(--tc-ink);
}

.tc-cot__success-code {
	font-size: 14px;
	color: var(--tc-ink-soft);
	margin: 0 0 24px;
}

.tc-cot__success-summary {
	text-align: left;
	background: var(--tc-bg-soft);
	border-radius: var(--tc-radius);
	padding: 24px;
	margin-bottom: 24px;
}

.tc-cot__success-summary .tc-cot__summary-row {
	color: var(--tc-ink);
	border-bottom-color: var(--tc-border);
}

.tc-cot__success-summary .tc-cot__summary-row span:first-child {
	color: var(--tc-ink-soft);
}

.tc-cot__success-summary .tc-cot__summary-row span:last-child {
	font-weight: 700;
}

.tc-cot__success-summary .tc-cot__summary-row--total {
	border-top: 2px solid var(--tc-green);
	margin-top: 12px;
	padding-top: 12px;
	font-size: 18px;
}

.tc-cot__success-summary .tc-cot__summary-row--total span:last-child {
	color: var(--tc-green);
	font-size: 20px;
}

.tc-cot__cta-buy {
	margin-bottom: 16px;
}

.tc-cot__success-email {
	font-size: 14px;
	color: var(--tc-ink-soft);
	margin: 0 0 8px;
}

.tc-cot__success-validity {
	font-size: 13px;
	color: var(--tc-green);
	font-weight: 700;
	margin: 0;
}

/* FAQ */
.tc-cot__faq {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid var(--tc-border);
}

.tc-cot__faq-title {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 16px;
}

.tc-cot__faq-item {
	border-bottom: 1px solid var(--tc-border);
}

.tc-cot__faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 16px 0;
	background: none;
	border: none;
	font-size: 15px;
	font-weight: 700;
	font-family: var(--tc-font-body);
	color: var(--tc-ink);
	cursor: pointer;
	text-align: left;
}

.tc-cot__faq-question:focus {
	outline: 2px solid var(--tc-green);
	outline-offset: 2px;
}

.tc-cot__faq-icon {
	font-size: 20px;
	transition: transform var(--tc-transition);
	color: var(--tc-green);
}

.tc-cot__faq-question[aria-expanded="true"] .tc-cot__faq-icon {
	transform: rotate(45deg);
}

.tc-cot__faq-answer {
	padding-bottom: 16px;
}

.tc-cot__faq-answer p {
	margin: 0;
	font-size: 14px;
	color: var(--tc-ink-soft);
	line-height: 1.6;
}

/* Loading state */
.tc-cot__btn--loading {
	opacity: 0.7;
	pointer-events: none;
}

.tc-cot__btn--loading::after {
	content: '';
	width: 16px;
	height: 16px;
	border: 2px solid rgba(255,255,255,0.3);
	border-top-color: #fff;
	border-radius: 50%;
	animation: tcSpin 0.6s linear infinite;
}

@keyframes tcSpin {
	to { transform: rotate(360deg); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.tc-cot__stepper {
		margin-bottom: 24px;
	}

	.tc-cot__step-circle {
		width: 32px;
		height: 32px;
	}

	.tc-cot__step-label {
		font-size: 11px;
	}

	.tc-cot__radio-group--horizontal {
		flex-direction: column;
	}

	.tc-cot__radio-card--compact {
		min-width: 100%;
	}

	.tc-cot__nav {
		flex-direction: column-reverse;
	}

	.tc-cot__btn--next,
	.tc-cot__btn--submit {
		margin-left: 0;
		width: 100%;
	}

	.tc-cot__btn--back {
		width: 100%;
	}
}

/* Standalone FAQ (shortcode tipo="faq") */
.tc-cot-faq {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding: 0;
	background: var(--tc-bg);
	box-sizing: border-box;
	overflow: hidden;
}

.tc-cot-faq__inner {
	max-width: 1050px;
	margin: 0 auto;
}

.tc-cot-faq__empty {
	text-align: center;
	color: var(--tc-ink-soft);
	font-size: 16px;
	padding: 48px 24px;
	background: var(--tc-bg-soft);
	border-radius: var(--tc-radius);
}

.tc-cot-faq__title {
	font-size: 28px;
	font-weight: 700;
	margin: 0 0 8px;
	color: var(--tc-ink);
	text-align: center;
}

.tc-cot-faq__subtitle {
	text-align: center;
	color: var(--tc-ink-soft);
	font-size: 15px;
	margin: 0 0 40px;
}

.tc-cot-faq__item {
	background: var(--tc-bg);
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius);
	margin-bottom: 12px;
	transition: box-shadow var(--tc-transition), border-color var(--tc-transition), background var(--tc-transition);
}

.tc-cot-faq__item:hover {
	border-color: rgba(33,179,84,0.3);
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.tc-cot-faq__item:has(.tc-cot-faq__question[aria-expanded="true"]) {
	border-color: var(--tc-green);
	background: var(--tc-bg-soft);
	box-shadow: 0 2px 12px rgba(33,179,84,0.1);
}

.tc-cot-faq__item:last-child {
	margin-bottom: 0;
}

.tc-cot-faq__question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 20px 24px;
	background: none;
	border: none;
	font-size: 16px;
	font-weight: 700;
	font-family: var(--tc-font-body);
	color: var(--tc-ink) !important;
	cursor: pointer;
	text-align: left;
	transition: color var(--tc-transition);
	gap: 16px;
}

.tc-cot-faq__question:hover {
	color: var(--tc-green);
}

.tc-cot-faq__question:focus {
	outline: 2px solid var(--tc-green);
	outline-offset: -2px;
}

.tc-cot-faq__icon {
	font-size: 18px;
	font-weight: 700;
	transition: background var(--tc-transition), color var(--tc-transition);
	color: var(--tc-green);
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--tc-bg-soft);
	border-radius: 50%;
	line-height: 1;
}

.tc-cot-faq__question[aria-expanded="true"] .tc-cot-faq__icon {
	background: var(--tc-green);
	color: #fff;
}

.tc-cot-faq__answer {
	padding: 0 24px 20px;
}

.tc-cot-faq__answer p {
	margin: 0;
	font-size: 15px;
	color: var(--tc-ink-soft);
	line-height: 1.7;
}

@media (max-width: 768px) {
	.tc-cot-faq {
		padding: 32px 16px;
	}

	.tc-cot-faq__title {
		font-size: 22px;
	}

	.tc-cot-faq__question {
		padding: 16px;
		font-size: 15px;
	}

	.tc-cot-faq__answer {
		padding: 0 16px 16px;
	}
}
