/* WEB INVITES */
section#webinvites {
	background: var(--invite-tint);
	padding-top: 3rem;
	border-left: 3px solid var(--rose);
}

.sec-badge.rose {
	color: var(--rose);
	border-color: var(--rose);
	background: var(--rose-bg);
}

#webinvites .addons {
	background: var(--rose-bg);
	border: 0.5px solid rgba(190, 24, 93, 0.15);
	border-top: 3px solid var(--rose);
	margin-bottom: 2rem;
	padding: 1.5rem;
}

#webinvites .faq-section-header {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--rose);
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

#webinvites .addon {
	border-left: 3px solid var(--rose);
	cursor: pointer;
}

#webinvites .addon-ico {
	background: var(--rose-bg);
}

#webinvites .addon-name span {
	color: var(--rose);
	font-weight: 400;
	font-size: 12px;
}

.wi-accordion {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	margin-bottom: 2.5rem;
}

.wi-acc-item {
	border: 0.5px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: border-color 0.2s, background-color 0.2s;
	background: var(--bg);
}

.wi-acc-item:hover {
	border-color: var(--rose);
}

.wi-acc-btn {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.25rem;
	background: var(--bg);
	border: none;
	cursor: pointer;
	font-size: 15px;
	font-weight: 500;
	font-family: var(--sans);
	color: var(--ink);
	text-align: left;
	transition: background 0.2s;
	border-left: 3px solid var(--rose);
	border-radius: 10px;
}

.wi-acc-btn em {
	font-style: italic;
	color: var(--mute);
	font-size: 14px;
}

.wi-acc-btn:hover {
	background: var(--rose-bg);
}

.wi-acc-ico {
	font-size: 1.2rem;
	color: var(--rose);
	flex-shrink: 0;
	transition: transform 0.25s;
}

.wi-acc-item.open .wi-acc-ico {
	transform: rotate(45deg);
}

.wi-acc-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}

.pgrid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 1.4rem;
}

@media (max-width: 640px) {
	.pgrid { grid-template-columns: 1fr; }
}

.pc {
	border: 0.5px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: border-color 0.2s, transform 0.25s, box-shadow 0.25s;
	cursor: pointer;
	background: var(--bg);
	border-left: 3px solid var(--rose);
}

.pc:hover {
	border-color: var(--rose);
	transform: translateY(-5px);
	box-shadow: 0 12px 32px rgba(190, 24, 93, 0.12);
}

.pthumb-pink {
	height: 160px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	background: linear-gradient(135deg, #fdf0f1 0%, #f9e0e3 50%, #f5cfd4 100%);
}

.p-logo {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #1a1a1a;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--serif);
	font-size: 1.05rem;
	color: var(--gold);
	letter-spacing: 0.05em;
	transition: transform 0.3s;
}

.pc:hover .p-logo {
	transform: scale(1.12) rotate(5deg);
}

.p-tlbl {
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #9d174d;
	font-weight: 600;
	background: rgba(255, 255, 255, 0.6);
	padding: 3px 10px;
	border-radius: 4px;
}

.p-info {
	padding: 1rem 1.1rem;
	border-top: 0.5px solid var(--border);
	background: var(--bg);
}

.p-tag {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	margin-bottom: 0.3rem;
	color: var(--rose);
}

.p-info h4 {
	font-size: 1rem;
	font-weight: 500;
	margin-bottom: 0.4rem;
}

.p-lks {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.p-lks a {
	font-size: 12px;
	color: var(--mute);
	text-decoration: none;
	border-bottom: 0.5px solid var(--border);
	display: inline-block;
	width: fit-content;
	transition: color 0.2s;
}

.p-lks a:hover {
	color: var(--rose);
}

.proc-steps {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-top: 2rem;
	position: relative;
	padding-left: 2.5rem;
}

.proc-steps::before {
	content: '';
	position: absolute;
	left: 0.8rem;
	top: 0.5rem;
	bottom: 0.5rem;
	width: 3px;
	background: linear-gradient(to bottom, var(--rose-bg), var(--rose), var(--rose-dark));
	border-radius: 2px;
}

.step {
	position: relative;
	padding: 1.25rem 1.25rem 1.25rem 1.5rem;
	margin-bottom: 1rem;
	background: var(--bg);
	border: 0.5px solid var(--border);
	border-radius: var(--radius-lg);
	transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
	cursor: pointer;
	border-left: 3px solid var(--rose);
}

.step::before {
	content: '';
	position: absolute;
	left: -2.15rem;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: linear-gradient(to bottom, var(--rose-bg), var(--rose), var(--rose-dark));
	border: 3px solid var(--bg);
	box-shadow: 0 0 0 2px var(--rose);
	transition: transform 0.2s, box-shadow 0.2s;
}

.step:hover {
	border-color: var(--rose);
	transform: translateX(6px);
	box-shadow: 0 4px 16px rgba(37, 99, 235, 0.1);
}

.step:hover::before {
	transform: translateY(-50%) scale(1.3);
}

.step-w {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--rose);
	margin-bottom: 0.3rem;
}

#webinvites .pcard {
	background: var(--bg);
	border-left: 3px solid var(--rose);
}

#webinvites .pbadge {
	background: linear-gradient(135deg, var(--rose), var(--rose-dark));
}

#webinvites .pprice {
	background: linear-gradient(135deg, var(--rose), var(--rose-dark));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.pf-ck-web-inivites {
	color: var(--rose);
	font-weight: 600;
	flex-shrink: 0;
}

#webinvites .pbtn {
	background: linear-gradient(135deg, var(--rose), var(--rose-dark));
	color: #fff;
	border-color: transparent;
}

.cmp-block {
	border: 0.5px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin-bottom: 1.5rem;
}

.cmp-btn {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem;
	background: var(--bg);
	border: none;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	font-family: var(--sans);
	color: var(--rose);
	border-left: 3px solid var(--rose);
}

.cmp-ico {
	font-size: 1rem;
	transition: transform 0.3s;
	color: var(--rose);
}

.cmp-block.open .cmp-ico {
	transform: rotate(180deg);
}

.cmp-wrap {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
	background: var(--bg);
}

.cmp-block.open .cmp-wrap {
	max-height: 700px;
}

.ctbl {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
	min-width: 550px;
}

.ctbl th,
.ctbl td {
	padding: 10px;
	border-bottom: 0.5px solid var(--border);
	text-align: left;
}

.ctbl th:not(:first-child),
.ctbl td:not(:first-child) {
	text-align: center;
}

.ctbl th {
	background: var(--bg);
	font-weight: 700;
}

.cy {
	color: var(--rose) !important;
	font-size: 15px;
}

.cn {
	color: #dc2626 !important;
	font-size: 15px;
}

/* FAQs */
#webinvites .faq-item {
	background: var(--bg) !important;
	border-left: 3px solid var(--rose) !important;
}

#webinvites .faq-ico {
	color: var(--rose) !important;
}

#webinvites .faq-item:hover {
	border-color: var(--rose) !important;
	border-left: 3px solid var(--rose) !important;
	background: var(--rose-bg) !important;
	background-color: var(--rose-bg) !important;
}

#webinvites .faq-item:hover .faq-q {
	color: #ffffff !important;
}

#webinvites .faq-item:hover .faq-ico {
	color: #ffffff !important;
}

#webinvites .faq-item.open:not(:hover) {
	background: var(--bg) !important;
	background-color: var(--bg) !important;
	border-color: var(--rose) !important;
	border-left: 3px solid var(--rose) !important;
}

#webinvites .faq-item.open:not(:hover) .faq-q {
	color: var(--ink) !important;
}

#webinvites .faq-item.open:not(:hover) .faq-ico {
	color: var(--rose) !important;
}

/* Card pulse trigger */
@keyframes cardPulseRose {
	0% { box-shadow: 0 0 0 0 rgba(190, 24, 93, 0.65); }
	70% { box-shadow: 0 0 0 16px rgba(190, 24, 93, 0); }
	100% { box-shadow: 0 0 0 0 rgba(190, 24, 93, 0); }
}

.card-highlight-rose {
	animation: cardPulseRose 1s ease;
	border-color: var(--rose) !important;
}

/* Accordion & FAQ dividers */
#webinvites .wi-acc-btn {
	border-bottom: none !important;
	outline: none !important;
	box-shadow: none !important;
}

#webinvites .wi-acc-body {
	border-top: 1px solid rgba(190, 24, 93, 0.2) !important;
}

#webinvites .faq-item.open .faq-a {
	border-top: 1px solid rgba(190, 24, 93, 0.2) !important;
}