/* CSS-only animated gradient for WalliPass home hero */

/* Hide Element Pack's canvas overlay to avoid double rendering cost */
.element-pack-agbg-yes .bdt-animated-gradient-background {
	display: none !important;
}

/* Target the specific Elementor container on /home (data-id 2d6fee5) */
.elementor-element-2d6fee5 {
	position: relative;
	background: linear-gradient(135deg, #002F6C, #005BBB, #007BFF, #00A8E8);
	background-size: 200% 200%;
	animation: wallipass-agbg-shift 18s ease-in-out infinite;
}

@keyframes wallipass-agbg-shift {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
	.elementor-element-2d6fee5 {
		animation: none;
		background-position: 50% 50%;
	}
}

/* Apple-style gradient for rotating text in Animated Headline */
.elementor-element-cbbc7a3 .elementor-headline-dynamic-text {
    /* Lighter, silver-toned gradient */
    background: linear-gradient(135deg, #ffffff 0%, #e7edf4 45%, #cfd8e3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    /* Softer contrast aids */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
    -webkit-text-stroke: 0.25px rgba(0, 0, 0, 0.18);
    font-weight: 700;
}

/* Hero description line clamp */
@media (min-width: 921px) {
    .elementor-element-c6eccce p {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

@media (max-width: 920px) and (min-width: 545px) {
    .elementor-element-c6eccce p {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

@media (max-width: 544px) {
    .elementor-element-c6eccce p {
        display: block;
        -webkit-line-clamp: initial;
        line-clamp: initial;
        -webkit-box-orient: initial;
        overflow: visible;
    }
}

/* WalliPass Get Started Button */
.wallipass-btn-primary {
	background: #ffffff;
	color: #002F6C;
	font-weight: 700;
	font-size: 1.375rem;
	padding: 1rem 2rem;
	border-radius: 1rem;
	border: 2px solid rgba(255, 255, 255, 0.3);
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
	display: inline-block;
	text-align: center;
	text-decoration: none;
	line-height: 1.5;
}

.wallipass-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.15);
	background: #f8f9fa;
	color: #002F6C;
}

.wallipass-btn-primary:active {
	transform: translateY(0);
}

.wallipass-btn-primary:focus-visible {
	outline: 2px solid #007BFF;
	outline-offset: 2px;
}

/* Modal Overlay */
#wallipass-setup-modal {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	z-index: 999999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	opacity: 0;
	transition: opacity 0.3s ease-out;
}

#wallipass-setup-modal.show {
	display: flex;
	opacity: 1;
}

#wallipass-setup-modal .modal-content {
	background: #ffffff;
	border-radius: 1.5rem;
	width: 100%;
	max-width: 28rem;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	transform: scale(0.95) translateY(20px);
	transition: transform 0.3s ease-out;
}

#wallipass-setup-modal.show .modal-content {
	transform: scale(1) translateY(0);
}

#wallipass-setup-modal .wallipass-redirect-notice {
	display: none;
	margin-top: 1.5rem;
	padding: 1.5rem;
	border-radius: 1rem;
	border: 1px solid #e5e7eb;
	background: #f9fafb;
	display: none;
	align-items: center;
	gap: 1rem;
}

#wallipass-setup-modal .wallipass-redirect-notice.show {
	display: flex;
	flex-direction: column;
	text-align: center;
}

.wallipass-redirect-spinner {
	width: 28px;
	height: 28px;
	margin: 0 auto;
	border-radius: 50%;
	border: 3px solid rgba(0, 43, 108, 0.2);
	border-top-color: #005BBB;
	animation: wallipass-spin 0.8s linear infinite;
}

.wallipass-redirect-text {
	font-size: 1.125rem;
	color: #111827;
	font-weight: 600;
	line-height: 1.5;
}

.wallipass-redirect-subtext {
	display: block;
	margin-top: 0.35rem;
	font-size: 0.95rem;
	font-weight: 400;
	color: #4b5563;
}

.wallipass-step.redirecting .wallipass-search-wrapper,
.wallipass-step.redirecting .wallipass-college-list,
.wallipass-step.redirecting p {
	display: none;
}

.wallipass-step.redirecting {
	align-items: center;
	text-align: center;
}

@keyframes wallipass-spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* Progress Bar */
.wallipass-progress-bar {
	position: sticky;
	top: 0;
	background: #ffffff;
	border-bottom: 1px solid #e5e7eb;
	border-radius: 1.5rem 1.5rem 0 0;
	z-index: 10;
}

.wallipass-progress-bar .progress-track {
	height: 6px;
	background: #e5e7eb;
	border-radius: 1.5rem 1.5rem 0 0;
	overflow: hidden;
}

.wallipass-progress-bar .progress-fill {
	height: 100%;
	background: #9ca3af;
	transition: width 0.5s ease-out;
	border-radius: 1.5rem 0 0 0;
}

.wallipass-progress-bar .progress-header {
	padding: 1.25rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.wallipass-progress-bar .back-btn {
	background: none;
	border: none;
	color: #4b5563;
	font-weight: 500;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem;
	border-radius: 0.5rem;
	transition: all 0.2s;
}

.wallipass-progress-bar .back-btn:hover {
	background: #f3f4f6;
	color: #1f2937;
}

.wallipass-progress-bar .back-btn.hidden {
	visibility: hidden;
}

.wallipass-progress-bar .close-btn {
	background: none;
	border: none;
	color: #9ca3af;
	cursor: pointer;
	padding: 0.5rem;
	border-radius: 0.5rem;
	transition: all 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wallipass-progress-bar .close-btn:hover {
	background: #f3f4f6;
	color: #4b5563;
}

/* Modal Steps */
.wallipass-step {
	padding: 2rem;
	display: none;
	animation: stepEnter 0.4s ease-out;
}

.wallipass-step.active {
	display: block;
}

@keyframes stepEnter {
	from {
		opacity: 0;
		transform: translateX(20px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.wallipass-step h2 {
	font-size: 1.875rem;
	font-weight: 700;
	color: #111827;
	margin-bottom: 0.75rem;
}

.wallipass-step p {
	color: #4b5563;
	font-size: 1.125rem;
	margin-bottom: 2rem;
}

/* Platform Selection */
.wallipass-platform-btn {
	width: 100%;
	background: #f9fafb;
	border: 2px solid #e5e7eb;
	border-radius: 1rem;
	padding: 1.5rem;
	text-align: left;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	align-items: center;
	gap: 1.25rem;
	cursor: pointer;
	margin-bottom: 1rem;
}

.wallipass-platform-btn:hover {
	background: linear-gradient(to right, #f9fafb, #eff6ff);
	border-color: #007BFF;
	transform: translateY(-2px);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.wallipass-platform-btn:active {
	transform: scale(0.98);
}

.wallipass-platform-icon {
	width: 4rem;
	height: 4rem;
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.wallipass-platform-btn[data-platform="apple"] .wallipass-platform-icon {
	background: #000000;
}

.wallipass-platform-btn[data-platform="google"] .wallipass-platform-icon {
	background: #f3f4f6;
}

.wallipass-platform-btn[data-platform="google"].disabled {
	opacity: 0.6;
	cursor: not-allowed;
	pointer-events: none;
}

.wallipass-platform-btn[data-platform="google"].disabled:hover {
	background: #f9fafb;
	border-color: #e5e7eb;
	transform: none;
	box-shadow: none;
}

.wallipass-coming-soon {
	font-size: 0.75rem;
	color: #9ca3af;
	font-weight: 500;
	margin-top: 0.25rem;
}

.wallipass-platform-btn .platform-info {
	flex: 1;
}

.wallipass-platform-btn .platform-name {
	font-weight: 700;
	color: #111827;
	font-size: 1.125rem;
	margin-bottom: 0.25rem;
}

.wallipass-platform-btn .platform-desc {
	font-size: 0.875rem;
	color: #6b7280;
}

.wallipass-platform-btn .arrow-icon {
	width: 1.5rem;
	height: 1.5rem;
	color: #9ca3af;
	flex-shrink: 0;
}

/* College Search */
.wallipass-search-wrapper {
	position: relative;
	margin-bottom: 1.5rem;
}

.wallipass-search-input {
	width: 100%;
	padding: 1rem 3rem 1rem 1.25rem;
	border: 2px solid #e5e7eb;
	border-radius: 1rem;
	font-size: 1.125rem;
	background: #f9fafb;
	transition: all 0.2s;
}

.wallipass-search-input:focus {
	outline: none;
	border-color: #007BFF;
	background: #ffffff;
	box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.wallipass-search-icon {
	position: absolute;
	right: 1.25rem;
	top: 50%;
	transform: translateY(-50%);
	width: 1.5rem;
	height: 1.5rem;
	color: #9ca3af;
	pointer-events: none;
}

.wallipass-college-list {
	max-height: 20rem;
	overflow-y: auto;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

.wallipass-college-item {
	width: 100%;
	background: #f9fafb;
	border: 2px solid #e5e7eb;
	border-radius: 1rem;
	padding: 1.25rem;
	text-align: left;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	margin-bottom: 0.75rem;
}

.wallipass-college-item:hover {
	background: #eff6ff;
	border-color: #007BFF;
	transform: translateY(-2px);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.wallipass-college-item:active {
	transform: scale(0.98);
}

.wallipass-college-item.selected {
	background: #f3f4f6;
	border-color: #d1d5db;
}

.wallipass-college-item.selected:hover {
	background: #f3f4f6;
	border-color: #d1d5db;
}

.wallipass-college-item.hidden {
	display: none;
}

.wallipass-college-item.disabled {
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none;
}

.wallipass-college-item.disabled:hover {
	background: #f9fafb;
	border-color: #e5e7eb;
	transform: none;
	box-shadow: none;
}

.wallipass-college-name {
	font-weight: 700;
	color: #111827;
	font-size: 1.125rem;
}

.wallipass-college-location {
	font-size: 0.875rem;
	color: #6b7280;
	margin-top: 0.25rem;
}

.wallipass-college-coming-soon {
	font-size: 0.75rem;
	color: #9ca3af;
	font-weight: 500;
	margin-top: 0.25rem;
}

/* Email Input */
.wallipass-email-wrapper {
	margin-bottom: 1.5rem;
}

.wallipass-email-label {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	color: #374151;
	margin-bottom: 0.75rem;
}

.wallipass-email-input {
	width: 100%;
	padding: 1rem 1.25rem;
	border: 2px solid #e5e7eb;
	border-radius: 1rem;
	font-size: 1.125rem;
	background: #f9fafb;
	transition: all 0.2s;
}

.wallipass-email-input:focus {
	outline: none;
	border-color: #007BFF;
	background: #ffffff;
	box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.wallipass-email-error {
	color: #dc2626;
	font-size: 0.875rem;
	margin-top: 0.75rem;
	display: none;
}

.wallipass-email-error.show {
	display: block;
}

/* Submit Button */
.wallipass-submit-btn {
	width: 100%;
	background: linear-gradient(135deg, #002F6C 0%, #005BBB 50%, #007BFF 100%);
	color: #ffffff;
	font-weight: 600;
	font-size: 1.125rem;
	padding: 1rem 1.5rem;
	border-radius: 1rem;
	border: none;
	cursor: pointer;
	transition: all 0.3s;
	box-shadow: 0 10px 15px -3px rgba(0, 47, 108, 0.3);
}

.wallipass-submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 25px -5px rgba(0, 47, 108, 0.4);
}

.wallipass-submit-btn:active {
	transform: translateY(0);
}

/* Success Step */
.wallipass-success {
	text-align: center;
	padding: 3rem 2rem;
}

.wallipass-success-icon {
	width: 5rem;
	height: 5rem;
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
}

.wallipass-success-icon svg {
	width: 2.5rem;
	height: 2.5rem;
	color: #ffffff;
}

.wallipass-success h2 {
	font-size: 1.875rem;
	font-weight: 700;
	color: #111827;
	margin-bottom: 1rem;
}

.wallipass-success p {
	color: #4b5563;
	font-size: 1.125rem;
	margin-bottom: 2rem;
	line-height: 1.6;
}

/* Responsive */
@media (max-width: 640px) {
	.wallipass-step {
		padding: 1.5rem;
	}

	.wallipass-step h2 {
		font-size: 1.5rem;
	}

	.wallipass-platform-btn {
		padding: 1.25rem;
		gap: 1rem;
	}

	.wallipass-platform-icon {
		width: 3.5rem;
		height: 3.5rem;
	}
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
	.wallipass-step,
	#wallipass-setup-modal,
	#wallipass-setup-modal .modal-content {
		animation: none;
		transition: none;
	}

	.wallipass-platform-btn:hover,
	.wallipass-college-item:hover {
		transform: none;
	}
}

/* ============================================
   Homepage Content Sections
   ============================================ */

/* Section Container */
.wallipass-content-section {
	padding: 4rem 1.5rem;
	background: #ffffff;
}

/* Force sections inserted via Elementor HTML widget to span full viewport width */
.elementor-widget-html .wallipass-content-section {
	position: relative;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	max-width: 100vw;
	width: 100vw;
}

.elementor-widget-html .wallipass-section-container {
	max-width: min(1200px, calc(100vw - 3rem));
	margin: 0 auto;
	width: 100%;
	box-sizing: border-box;
}

.wallipass-section-container {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
}

/* Section Headers */
.wallipass-section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.wallipass-section-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #111827;
	margin-bottom: 0.75rem;
	line-height: 1.2;
}

.wallipass-section-subtitle {
	font-size: 1.25rem;
	color: #6b7280;
	font-weight: 500;
}

.wallipass-section-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.wallipass-lead-text {
	font-size: 1.25rem;
	color: #374151;
	line-height: 1.7;
	margin-bottom: 1.5rem;
	font-weight: 500;
}

.wallipass-section-content p {
	font-size: 1.125rem;
	color: #4b5563;
	line-height: 1.7;
	margin-bottom: 1rem;
}

/* Features Section */
.wallipass-features-section {
	background: #f9fafb;
}

.wallipass-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.wallipass-feature-card {
	background: #ffffff;
	padding: 2rem;
	border-radius: 1rem;
	border: 1px solid #e5e7eb;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-align: center;
}

.wallipass-feature-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	border-color: #007BFF;
}

.wallipass-feature-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 1.5rem;
	background: linear-gradient(135deg, #002F6C 0%, #005BBB 50%, #007BFF 100%);
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
}

.wallipass-feature-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #111827;
	margin-bottom: 1rem;
}

.wallipass-feature-description {
	font-size: 1rem;
	color: #4b5563;
	line-height: 1.6;
}

/* Story Section */
.wallipass-story-section {
	background: #ffffff;
}

.wallipass-story-content {
	max-width: 900px;
	margin: 0 auto;
}

.wallipass-story-text {
	text-align: center;
}

.wallipass-story-highlight {
	background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
	border-left: 4px solid #007BFF;
	padding: 1.5rem;
	border-radius: 0.5rem;
	margin-top: 2rem;
	text-align: left;
}

.wallipass-highlight-text {
	font-size: 1.125rem;
	color: #1e40af;
	line-height: 1.7;
	margin: 0;
}

/* Roadmap Section */
.wallipass-roadmap-section {
	background: #f9fafb;
}

.wallipass-roadmap-content {
	max-width: 900px;
	margin: 0 auto;
}

.wallipass-roadmap-timeline {
	position: relative;
	padding-left: 2rem;
	margin-top: 3rem;
}

.wallipass-roadmap-timeline::before {
	content: '';
	position: absolute;
	left: 0.75rem;
	top: 0;
	bottom: 0;
	width: 2px;
	background: #e5e7eb;
}

.wallipass-timeline-item {
	position: relative;
	margin-bottom: 3rem;
	padding-left: 2rem;
}

.wallipass-timeline-marker {
	position: absolute;
	left: -1.5rem;
	top: 0.25rem;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 50%;
	border: 3px solid #ffffff;
	z-index: 1;
}

.wallipass-timeline-current {
	background: linear-gradient(135deg, #002F6C 0%, #005BBB 50%, #007BFF 100%);
	box-shadow: 0 0 0 4px #e5e7eb;
}

.wallipass-timeline-upcoming {
	background: #9ca3af;
	box-shadow: 0 0 0 4px #e5e7eb;
}

.wallipass-timeline-future {
	background: #d1d5db;
	box-shadow: 0 0 0 4px #e5e7eb;
}

.wallipass-timeline-content {
	background: #ffffff;
	padding: 1.5rem;
	border-radius: 0.75rem;
	border: 1px solid #e5e7eb;
}

.wallipass-timeline-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #111827;
	margin-bottom: 0.5rem;
}

.wallipass-timeline-description {
	font-size: 1rem;
	color: #4b5563;
	line-height: 1.6;
	margin: 0;
}

/* How It Works Section */
.wallipass-how-it-works-section {
	background: #ffffff;
}

.wallipass-steps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.wallipass-step-card {
	text-align: center;
	padding: 2rem;
	background: #f9fafb;
	border-radius: 1rem;
	border: 1px solid #e5e7eb;
	transition: all 0.3s;
}

.wallipass-step-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
	border-color: #007BFF;
}

.wallipass-step-number {
	width: 64px;
	height: 64px;
	margin: 0 auto 1.5rem;
	background: linear-gradient(135deg, #002F6C 0%, #005BBB 50%, #007BFF 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 1.75rem;
	font-weight: 700;
}

.wallipass-step-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #111827;
	margin-bottom: 1rem;
}

.wallipass-step-description {
	font-size: 1rem;
	color: #4b5563;
	line-height: 1.6;
}

.wallipass-cta-wrapper {
	text-align: center;
	margin-top: 3rem;
}

/* Benefits Section */
.wallipass-benefits-section {
	background: #f9fafb;
}

.wallipass-benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 3rem;
	margin-top: 2rem;
}

.wallipass-benefit-column {
	background: #ffffff;
	padding: 2.5rem;
	border-radius: 1rem;
	border: 1px solid #e5e7eb;
}

.wallipass-benefit-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: #111827;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid #e5e7eb;
}

.wallipass-benefit-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.wallipass-benefit-list li {
	font-size: 1.125rem;
	color: #374151;
	padding: 0.75rem 0;
	padding-left: 2rem;
	position: relative;
	line-height: 1.6;
}

.wallipass-benefit-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #007BFF;
	font-weight: 700;
	font-size: 1.25rem;
}

/* Final CTA Section */
.wallipass-final-cta-section {
	background: linear-gradient(135deg, #002F6C 0%, #005BBB 50%, #007BFF 100%);
	color: #ffffff;
}

.wallipass-cta-content {
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

.wallipass-cta-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 1rem;
}

.wallipass-cta-description {
	font-size: 1.25rem;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.7;
	margin-bottom: 2rem;
}

.wallipass-final-cta-section .wallipass-btn-primary {
	background: #ffffff;
	color: #002F6C;
	border-color: rgba(255, 255, 255, 0.5);
}

.wallipass-final-cta-section .wallipass-btn-primary:hover {
	background: #f8f9fa;
	color: #002F6C;
}

/* Responsive Design */
@media (max-width: 768px) {
	.wallipass-content-section {
		padding: 3rem 1rem;
	}

	.elementor-widget-html .wallipass-content-section {
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
	}

	.elementor-widget-html .wallipass-section-container {
		max-width: min(1200px, calc(100vw - 2rem));
	}

	.wallipass-section-title {
		font-size: 2rem;
	}

	.wallipass-section-subtitle {
		font-size: 1.125rem;
	}

	.wallipass-features-grid,
	.wallipass-steps-grid,
	.wallipass-benefits-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.wallipass-roadmap-timeline {
		padding-left: 1.5rem;
	}

	.wallipass-timeline-item {
		padding-left: 1.5rem;
	}

	.wallipass-cta-title {
		font-size: 2rem;
	}

	.wallipass-cta-description {
		font-size: 1.125rem;
	}
}

