/* EOR Margin Calculator Page */

/* Hero Section */
.eor-calc-hero {
	padding: 160px 50px 60px;
	background: #faf9f7;
}

@media (max-width: 1024px) {
	.eor-calc-hero {
		padding: 120px 24px 48px;
	}
}

@media (max-width: 600px) {
	.eor-calc-hero {
		padding: 100px 20px 36px;
	}
}

.eor-calc-hero-container {
	max-width: 1180px;
	margin: 0 auto;
}

.eor-calc-hero-content {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
}

.eor-calc-hero-label {
	font-family: 'TWK Everett', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #9b51e0;
	margin-bottom: 16px;
}

.eor-calc-hero-title {
	font-family: 'TWK Everett', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 56px;
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -1.5px;
	color: #000;
	margin-bottom: 24px;
}

@media (max-width: 1024px) {
	.eor-calc-hero-title {
		font-size: 44px;
	}
}

@media (max-width: 600px) {
	.eor-calc-hero-title {
		font-size: 32px;
		letter-spacing: -1px;
	}
}

.eor-calc-hero-subtitle {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.5;
	color: #656672;
	margin-bottom: 0;
}

@media (max-width: 600px) {
	.eor-calc-hero-subtitle {
		font-size: 16px;
	}
}

/* Calculator Section */
.eor-calc-section {
	padding: 0 50px 80px;
}

@media (max-width: 1024px) {
	.eor-calc-section {
		padding: 0 24px 60px;
	}
}

@media (max-width: 600px) {
	.eor-calc-section {
		padding: 0 20px 48px;
	}
}

.eor-calc-container {
	max-width: 720px;
	margin: 0 auto;
}

.eor-calc-card {
	background: #fff;
	border: 1px solid #ede8e4;
	border-radius: 24px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
	overflow: hidden;
}

.eor-calc-card-content {
	padding: 40px;
}

@media (max-width: 600px) {
	.eor-calc-card-content {
		padding: 24px;
	}
}

/* Form Styles */
.eor-calc-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.eor-calc-form-row {
	display: flex;
	gap: 16px;
}

@media (max-width: 600px) {
	.eor-calc-form-row {
		flex-direction: column;
	}
}

.eor-calc-input-group {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.eor-calc-input-group--full {
	width: 100%;
}

.eor-calc-label {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #191a23;
}

.eor-calc-label-hint {
	font-weight: 400;
	color: #656672;
	font-size: 13px;
}

.eor-calc-select-wrapper {
	position: relative;
}

.eor-calc-select-wrapper::after {
	content: '';
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #656672;
	pointer-events: none;
}

.eor-calc-select,
.eor-calc-input {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid #ede8e4;
	border-radius: 12px;
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 15px;
	color: #191a23;
	background: #fff;
	transition: border-color 0.2s, box-shadow 0.2s;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	box-sizing: border-box;
}

.eor-calc-select {
	padding-right: 40px;
	cursor: pointer;
}

.eor-calc-select:focus,
.eor-calc-input:focus {
	outline: none;
	border-color: #9b51e0;
	box-shadow: 0 0 0 3px rgba(155, 81, 224, 0.1);
}

.eor-calc-input::placeholder {
	color: #a5a6b0;
}

/* State field show/hide */
.eor-calc-state-row {
	display: none;
}

.eor-calc-state-row.is-visible {
	display: flex;
}

/* Divider */
.eor-calc-divider {
	height: 1px;
	background: #ede8e4;
	margin: 8px 0;
}

.eor-calc-divider-label {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #a5a6b0;
	margin-bottom: -8px;
}

/* Currency prefix on inputs */
.eor-calc-input-with-prefix {
	position: relative;
}

.eor-calc-input-prefix {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: #656672;
	pointer-events: none;
}

.eor-calc-input-with-prefix .eor-calc-input {
	padding-left: 36px;
}

/* Submit Button */
.eor-calc-submit {
	width: 100%;
	padding: 16px 32px;
	background: #9b51e0;
	color: #fff;
	border: none;
	border-radius: 12px;
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s, transform 0.1s;
}

.eor-calc-submit:hover {
	background: #8a3fd4;
}

.eor-calc-submit:active {
	transform: scale(0.99);
}

.eor-calc-submit:disabled {
	background: #c8a8e8;
	cursor: not-allowed;
}

/* Upload Toggle Button */
.eor-calc-upload-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 12px;
	background: none;
	border: none;
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #9b51e0;
	cursor: pointer;
	transition: color 0.2s;
}

.eor-calc-upload-toggle:hover {
	color: #8a3fd4;
}

.eor-calc-upload-toggle.is-active {
	color: #7a2fc4;
}

/* Upload Panel */
.eor-calc-upload-panel {
	display: none;
	padding: 24px;
	background: #faf9f7;
	border-radius: 16px;
	border: 1px solid #ede8e4;
}

.eor-calc-upload-panel.is-open {
	display: block;
}

.eor-calc-upload-description {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 14px;
	color: #656672;
	line-height: 1.5;
	margin-bottom: 16px;
}

/* Dropzone */
.eor-calc-upload-dropzone {
	position: relative;
	border: 2px dashed #d4d0cc;
	border-radius: 12px;
	padding: 32px 16px;
	text-align: center;
	transition: border-color 0.2s, background 0.2s;
	cursor: pointer;
}

.eor-calc-upload-dropzone.is-dragover {
	border-color: #9b51e0;
	background: rgba(155, 81, 224, 0.04);
}

.eor-calc-file-input {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
	z-index: -1;
}

.eor-calc-dropzone-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.eor-calc-dropzone-text {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 14px;
	color: #656672;
}

.eor-calc-dropzone-browse {
	color: #9b51e0;
	font-weight: 500;
	cursor: pointer;
}

.eor-calc-dropzone-browse:hover {
	text-decoration: underline;
}

.eor-calc-dropzone-hint {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 12px;
	color: #a5a6b0;
}

/* Selected file display */
.eor-calc-dropzone-file {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: center;
}

.eor-calc-dropzone-filename {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #191a23;
	max-width: 240px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.eor-calc-dropzone-remove {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: none;
	border: 1px solid #d4d0cc;
	border-radius: 6px;
	color: #656672;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
	flex-shrink: 0;
}

.eor-calc-dropzone-remove:hover {
	background: #fef2f2;
	border-color: #fecaca;
	color: #dc2626;
}

/* Upload Submit */
.eor-calc-upload-submit {
	width: 100%;
	padding: 14px 24px;
	margin-top: 16px;
	background: #191a23;
	color: #fff;
	border: none;
	border-radius: 12px;
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s;
}

.eor-calc-upload-submit:hover {
	background: #333;
}

.eor-calc-upload-submit:disabled {
	background: #c8c8cc;
	cursor: not-allowed;
}

/* Upload Loading */
.eor-calc-upload-loading {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px;
	margin-top: 16px;
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 14px;
	color: #656672;
}

/* Upload Success */
.eor-calc-upload-success {
	display: none;
	align-items: center;
	gap: 10px;
	padding: 16px;
	margin-top: 16px;
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	border-radius: 12px;
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 14px;
	color: #166534;
}

/* Upload Error */
.eor-calc-upload-error {
	display: none;
	padding: 12px 16px;
	margin-top: 12px;
	background: #fef2f2;
	border: 1px solid #fecaca;
	border-radius: 12px;
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 14px;
	color: #dc2626;
}

.eor-calc-upload-error.is-visible {
	display: block;
}

/* Upload Privacy Notice */
.eor-calc-upload-privacy {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 12px;
	color: #a5a6b0;
	line-height: 1.5;
	margin-top: 12px;
	text-align: center;
}

/* Loading State */
.eor-calc-loading {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 20px;
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 15px;
	color: #656672;
}

.eor-calc-loading.is-visible {
	display: flex;
}

.eor-calc-spinner {
	width: 20px;
	height: 20px;
	border: 2px solid #ede8e4;
	border-top-color: #9b51e0;
	border-radius: 50%;
	animation: eor-spin 0.6s linear infinite;
}

@keyframes eor-spin {
	to { transform: rotate(360deg); }
}

/* Error Message */
.eor-calc-error {
	display: none;
	padding: 16px;
	background: #fef2f2;
	border: 1px solid #fecaca;
	border-radius: 12px;
	color: #dc2626;
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 14px;
}

.eor-calc-error.is-visible {
	display: block;
}

/* =============================
   RESULTS SECTION
   ============================= */
.eor-calc-results {
	display: none;
	padding: 0 50px 80px;
}

.eor-calc-results.is-visible {
	display: block;
}

@media (max-width: 1024px) {
	.eor-calc-results {
		padding: 0 24px 60px;
	}
}

@media (max-width: 600px) {
	.eor-calc-results {
		padding: 0 20px 48px;
	}
}

.eor-calc-results-container {
	max-width: 720px;
	margin: 0 auto;
}

/* Headline Card */
.eor-calc-headline-card {
	background: linear-gradient(135deg, #1a1a2e 0%, #2d1b69 100%);
	border-radius: 24px;
	padding: 48px 40px;
	text-align: center;
	margin-bottom: 24px;
	position: relative;
	overflow: hidden;
}

.eor-calc-headline-card::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(155, 81, 224, 0.15) 0%, transparent 70%);
	pointer-events: none;
}

.eor-calc-headline-label {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #c8a8e8;
	margin-bottom: 16px;
}

.eor-calc-headline-amount {
	font-family: 'TWK Everett', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 52px;
	font-weight: 600;
	color: #ff6b6b;
	margin-bottom: 8px;
	line-height: 1.1;
}

@media (max-width: 600px) {
	.eor-calc-headline-card {
		padding: 36px 24px;
	}

	.eor-calc-headline-amount {
		font-size: 36px;
	}
}

.eor-calc-headline-text {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 18px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.5;
}

/* Rate Comparison Card */
.eor-calc-rate-card {
	background: #fff;
	border: 1px solid #ede8e4;
	border-radius: 24px;
	padding: 32px;
	margin-bottom: 24px;
}

.eor-calc-rate-card-title {
	font-family: 'TWK Everett', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 18px;
	font-weight: 500;
	color: #191a23;
	margin-bottom: 24px;
}

.eor-calc-rate-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 24px;
}

@media (max-width: 600px) {
	.eor-calc-rate-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

.eor-calc-rate-item {
	text-align: center;
}

.eor-calc-rate-item-label {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #a5a6b0;
	margin-bottom: 8px;
}

.eor-calc-rate-item-value {
	font-family: 'TWK Everett', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 24px;
	font-weight: 600;
	color: #191a23;
}

.eor-calc-rate-item--bad .eor-calc-rate-item-value {
	color: #dc2626;
}

.eor-calc-rate-item--diff .eor-calc-rate-item-value {
	color: #ff6b6b;
}

/* Breakdown Table Card */
.eor-calc-breakdown-card {
	background: #fff;
	border: 1px solid #ede8e4;
	border-radius: 24px;
	padding: 32px;
	margin-bottom: 24px;
	overflow-x: auto;
}

.eor-calc-breakdown-card-title {
	font-family: 'TWK Everett', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 18px;
	font-weight: 500;
	color: #191a23;
	margin-bottom: 24px;
}

.eor-calc-breakdown-table {
	width: 100%;
	border-collapse: collapse;
}

.eor-calc-breakdown-table th {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #a5a6b0;
	padding: 0 12px 16px;
	text-align: left;
	border-bottom: 1px solid #ede8e4;
	white-space: nowrap;
}

.eor-calc-breakdown-table th:last-child {
	text-align: right;
}

.eor-calc-breakdown-table td {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 15px;
	color: #191a23;
	padding: 16px 12px;
	border-bottom: 1px solid #f5f3f0;
}

.eor-calc-breakdown-table td:last-child {
	text-align: right;
	font-weight: 600;
}

.eor-calc-breakdown-table tr:last-child td {
	border-bottom: none;
}

.eor-calc-breakdown-table tr.eor-calc-breakdown-total td {
	font-weight: 600;
	border-top: 2px solid #191a23;
	border-bottom: none;
	padding-top: 20px;
}

.eor-calc-breakdown-margin {
	color: #dc2626;
	font-weight: 600;
}

.eor-calc-breakdown-declared {
	color: #a5a6b0;
	font-style: italic;
}

/* Employer Cost Detail (expandable) */
.eor-calc-employer-detail {
	background: #fff;
	border: 1px solid #ede8e4;
	border-radius: 24px;
	margin-bottom: 24px;
	overflow: hidden;
}

.eor-calc-employer-toggle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 32px;
	background: none;
	border: none;
	cursor: pointer;
	font-family: 'TWK Everett', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #191a23;
	transition: background 0.2s;
}

.eor-calc-employer-toggle:hover {
	background: #faf9f7;
}

.eor-calc-employer-toggle-icon {
	width: 24px;
	height: 24px;
	transition: transform 0.3s;
}

.eor-calc-employer-detail.is-open .eor-calc-employer-toggle-icon {
	transform: rotate(180deg);
}

.eor-calc-employer-content {
	display: none;
	padding: 0 32px 24px;
}

.eor-calc-employer-detail.is-open .eor-calc-employer-content {
	display: block;
}

.eor-calc-employer-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.eor-calc-employer-list li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid #f5f3f0;
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 14px;
	color: #191a23;
}

.eor-calc-employer-list li:last-child {
	border-bottom: none;
}

.eor-calc-employer-list-amount {
	font-weight: 600;
	white-space: nowrap;
	margin-left: 16px;
}

.eor-calc-employer-list-converted {
	font-size: 13px;
	color: #656672;
	font-weight: 400;
}

/* Annual Projection Card */
.eor-calc-annual-card {
	background: #fff;
	border: 2px solid #ff6b6b;
	border-radius: 24px;
	padding: 32px;
	text-align: center;
	margin-bottom: 24px;
}

.eor-calc-annual-label {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #656672;
	margin-bottom: 8px;
}

.eor-calc-annual-amount {
	font-family: 'TWK Everett', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 40px;
	font-weight: 600;
	color: #dc2626;
	margin-bottom: 8px;
}

@media (max-width: 600px) {
	.eor-calc-annual-amount {
		font-size: 32px;
	}
}

.eor-calc-annual-subtext {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 14px;
	color: #656672;
	line-height: 1.5;
}

/* Same Currency Notice */
.eor-calc-same-currency-notice {
	display: none;
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	border-radius: 12px;
	padding: 16px;
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 14px;
	color: #166534;
	margin-bottom: 24px;
}

.eor-calc-same-currency-notice.is-visible {
	display: block;
}

/* CTA Section */
.eor-calc-cta {
	padding: 0 50px 80px;
}

@media (max-width: 1024px) {
	.eor-calc-cta {
		padding: 0 24px 60px;
	}
}

@media (max-width: 600px) {
	.eor-calc-cta {
		padding: 0 20px 48px;
	}
}

.eor-calc-cta-container {
	max-width: 720px;
	margin: 0 auto;
}

.eor-calc-cta-card {
	background: linear-gradient(135deg, #1a1a2e 0%, #2d1b69 100%);
	border-radius: 24px;
	padding: 48px 40px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.eor-calc-cta-card::before {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 250px;
	height: 250px;
	background: radial-gradient(circle, rgba(155, 81, 224, 0.2) 0%, transparent 70%);
	pointer-events: none;
}

@media (max-width: 600px) {
	.eor-calc-cta-card {
		padding: 36px 24px;
	}
}

.eor-calc-cta-title {
	font-family: 'TWK Everett', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 32px;
	font-weight: 500;
	color: #fff;
	margin-bottom: 16px;
	position: relative;
}

@media (max-width: 600px) {
	.eor-calc-cta-title {
		font-size: 24px;
	}
}

.eor-calc-cta-text {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 32px;
	line-height: 1.5;
	position: relative;
}

.eor-calc-cta-button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 16px 32px;
	background: #9b51e0;
	color: #fff;
	border: none;
	border-radius: 12px;
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s, transform 0.1s;
	text-decoration: none;
	position: relative;
}

.eor-calc-cta-button:hover {
	background: #8a3fd4;
	color: #fff;
}

.eor-calc-cta-button:active {
	transform: scale(0.98);
}

/* Negative result state */
.eor-calc-headline-card--good .eor-calc-headline-amount {
	color: #22c55e;
}

/* Number animation */
.eor-calc-animate-number {
	transition: all 0.6s ease-out;
}
