/**
 * Smart Leading Net — Accomplishments Section
 * Scoped styles only. Uses theme tokens — no global overrides.
 */

.accomplishments {
	padding-top: var(--section-spacing);
	padding-bottom: var(--section-spacing);
	background: var(--white);
}

.accomplishments__container {
	width: 100%;
}

.accomplishments__header {
	text-align: center;
}

.accomplishments__label {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin: 0 0 24px;
	font-size: var(--paragraph-size);
	font-weight: var(--font-weight-semibold);
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-transform: capitalize;
	color: var(--primary-color);
}

.accomplishments__label::before,
.accomplishments__label::after {
	content: "";
	flex: 0 1 80px;
	width: 100%;
	max-width: 65px;
	height: 1px;
	background: var(--primary-color);
}

.accomplishments__heading {
	margin: 0 0 20px;
	line-height: 1.2;
}

.accomplishments__heading-part {
	display: inline;
}

.accomplishments__heading-part--blue {
	color: var(--primary-color);
}

.accomplishments__heading-part--dark {
	color: var(--heading-color);
}

.accomplishments__description {
	max-width: 650px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.accomplishments__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin-top: 48px;
}

.accomplishments__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 25px;
	background: #FBFBFC;
	border: 1px solid #E9E9E9;
	border-radius: var(--card-radius);
	text-align: center;
	position: relative;
	overflow: hidden;
	isolation: isolate;
	transition: border-color 0.4s ease;
}

.accomplishments__card::before {
	content: "";
    position: absolute;
    top: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    transform: scale(1);
    transform-origin: top right;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    pointer-events: none;
}

.accomplishments__card::after {
	content: "→";
    position: absolute;
    top: 10px;
    right: 12px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    z-index: 3;
    line-height: 1;
    pointer-events: none;
}

.accomplishments__card > * {
	position: relative;
	z-index: 1;
}

.accomplishments__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 90px;
	height: 90px;
	margin-bottom: 20px;
	border-radius: 50%;
	flex-shrink: 0;
	transition:
		background-color 0.4s ease,
		color 0.4s ease;
}

.accomplishments__icon svg {
	width: 50px;
	height: 55px;
	display: block;
	transition:
		stroke 0.4s ease,
		fill 0.4s ease,
		color 0.4s ease;
}

.accomplishments__icon--blue {
	background: rgba(31, 78, 158, 0.1);
	color: #1f4e9e;
}

.accomplishments__icon--green {
	background: rgba(22, 163, 74, 0.1);
	color: #16a34a;
}

.accomplishments__icon--orange {
	background: rgba(243, 107, 50, 0.1);
	color: #f36b32;
}

.accomplishments__icon--purple {
	background: rgba(139, 92, 246, 0.1);
	color: #8b5cf6;
}

.accomplishments__icon--blue svg {

	fill: none;
}

.accomplishments__icon--green svg {
	fill: none;
}

.accomplishments__icon--orange svg {

	fill: none;
}

.accomplishments__icon--purple svg {
	fill: none;
}

.accomplishments__number {
	margin: 0 0 8px;
	font-size: var(--h1-size);
	font-weight: var(--font-weight-bold);
	line-height: 1.1;
	transition: color 0.4s ease;
}

.accomplishments__card-title {
	margin: 0;
	font-size: var(--h5-size);
	font-weight: var(--font-weight-medium);
	line-height: 1.3;
	color: var(--text-color);
	transition: color 0.4s ease;
}

.accomplishments__divider {
	width: 100%;
	margin: 18px auto;
}

.accomplishments__divider-colored {
	width: 60px;
	height: 2px;
	display: block;
	margin: 0 auto;
	transition: background-color 0.4s ease;
	z-index: 2;
    position: relative;
}

.accomplishments__divider-gray {
	width: 100%;
	height: 1px;
	background: #e7e7e7;
	display: block;
	margin-top: -1px;
	transition: background-color 0.4s ease;
}

.accomplishments__card--blue .accomplishments__divider-colored {
	background: #1f4e9e;
}

.accomplishments__card--green .accomplishments__divider-colored {
	background: #16a34a;
}

.accomplishments__card--orange .accomplishments__divider-colored {
	background: #f36b32;
}

.accomplishments__card--purple .accomplishments__divider-colored {
	background: #8b5cf6;
}

.accomplishments__card-desc {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	width: 100%;
	margin: 0;
	font-size: var(--paragraph-size);
	font-weight: var(--paragraph-weight);
	line-height: 1.5;
	color: var(--text-color);
	text-align: left;
	transition: color 0.4s ease;
}

.accomplishments__check {
	display: inline-flex;
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	margin-top: 3px;
	transition: color 0.4s ease;
}

.accomplishments__check svg {
	display: block;
	width: 30px;
	height: 30px;
	transition: color 0.4s ease;
}

.accomplishments__card-desc-text {
	max-width: 100%;
}

/* Card color themes */
.accomplishments__card--blue .accomplishments__number,
.accomplishments__card--blue .accomplishments__check {
	color: var(--primary-color);
}

.accomplishments__card--green .accomplishments__number,
.accomplishments__card--green .accomplishments__check {
	color: #16a34a;
}

.accomplishments__card--orange .accomplishments__number,
.accomplishments__card--orange .accomplishments__check {
	color: var(--secondary-color);
}

.accomplishments__card--purple .accomplishments__number,
.accomplishments__card--purple .accomplishments__check {
	color: #8b5cf6;
}

/* --------------------------------------------------------------------------
   Card Hover
   -------------------------------------------------------------------------- */

.accomplishments__card--blue::before {
	background: #1f4e9e;
}

.accomplishments__card--green::before {
	background: #16a34a;
}

.accomplishments__card--orange::before {
	background: #f36b32;
}

.accomplishments__card--purple::before {
	background: #8b5cf6;
}

.accomplishments__card:hover::before {
	transform: scale(6);
    border-radius: 0;
}

.accomplishments__card:hover {
	border-color: transparent;
}

.accomplishments__card:hover .accomplishments__number,
.accomplishments__card:hover .accomplishments__card-title,
.accomplishments__card:hover .accomplishments__card-desc,
.accomplishments__card:hover .accomplishments__check {
	color: var(--white);
}

.accomplishments__card:hover .accomplishments__divider-colored,
.accomplishments__card:hover .accomplishments__divider-gray {
	background: var(--white);
}

.accomplishments__card--blue:hover .accomplishments__icon--blue {
	background: var(--white);
	color: #1f4e9e;
}

.accomplishments__card--green:hover .accomplishments__icon--green {
	background: var(--white);
	color: #16a34a;
}

.accomplishments__card--orange:hover .accomplishments__icon--orange {
	background: var(--white);
	color: #f36b32;
}

.accomplishments__card--purple:hover .accomplishments__icon--purple {
	background: var(--white);
	color: #8b5cf6;
}

.accomplishments__card--blue:hover .accomplishments__icon--blue svg,
.accomplishments__card--green:hover .accomplishments__icon--green svg,
.accomplishments__card--orange:hover .accomplishments__icon--orange svg,
.accomplishments__card--purple:hover .accomplishments__icon--purple svg {
	stroke: none;
}

.accomplishments__card--blue:hover .accomplishments__icon--blue svg path,
.accomplishments__card--green:hover .accomplishments__icon--green svg path,
.accomplishments__card--orange:hover .accomplishments__icon--orange svg path,
.accomplishments__card--purple:hover .accomplishments__icon--purple svg path {
	fill: currentColor;
}

@media (prefers-reduced-motion: reduce) {
	.accomplishments__card::before,
	.accomplishments__card,
	.accomplishments__icon,
	.accomplishments__icon svg,
	.accomplishments__number,
	.accomplishments__card-title,
	.accomplishments__card-desc,
	.accomplishments__check,
	.accomplishments__check svg,
	.accomplishments__divider-colored,
	.accomplishments__divider-gray {
		transition: none;
	}

	.accomplishments__card:hover::before {
		transform: scale(12);
		border-radius: 0;
	}
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (min-width: 992px) {
	.accomplishments__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 24px;
	}
}

@media (max-width: 767.98px) {
	.accomplishments__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
		margin-top: 36px;
	}

	.accomplishments__card {
		padding: 20px 14px;
	}

	.accomplishments__icon {
		width: 72px;
		height: 72px;
		margin-bottom: 16px;
	}

	.accomplishments__icon svg {
		width: 36px;
		height: 36px;
	}

	.accomplishments__number {
		font-size: var(--heading-md-size);
	}

	.accomplishments__card-title {
		margin: 0;
		font-size:  var(--paragraph-size-mobile);
	}
    .accomplishments__label::before,
    .accomplishments__label::after {
	  max-width: 45px;
    }
	.accomplishments__label{
		gap: 10px;
	}
	
	.accomplishments__divider {
		width: 100%;
		margin: 18px auto;
		display: none;
		
	}

	.accomplishments__card-desc {
		font-size: var(--paragraph-size-mobile);
		line-height: 1.45;
		gap: 10px;
		display: none;
	}

	.accomplishments__check,
	.accomplishments__check svg {
		width: 18px;
		height: 18px;
	}
}
