.nw-hero {
	background: linear-gradient(135deg, #07074d 0%, var(--brand-primary) 100%);
	min-height: 90vh;
	position: relative;
	overflow: hidden;
	padding: 4rem 0;
	display: flex;
	align-items: center;
}

.nw-hero-bg-image {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 50%;
	background-image: url('/assets/public_images/YourDealPlan.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
	z-index: 1;
}

.nw-hero-bg-image::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, transparent, transparent);
}

.nw-hero-content {
	position: relative;
	z-index: 10;
	color: #fff;
}

.nw-section-eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 800;
	font-size: 0.75rem;
	display: block;
	margin-bottom: 1.5rem;
	color: var(--brand-secondary);
}

.nw-hero h1 {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1.5rem;
}

.nw-hero h1 em {
	color: var(--brand-secondary);
}

.nw-hero p {
	color: rgba(255, 255, 255, 0.85);
	font-size: clamp(1rem, 2vw, 1.1rem);
	max-width: 500px;
	margin-bottom: 2rem;
	line-height: 1.6;
}

/* Chips/Pills */
.nw-hero-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 2rem;
}

.nw-chip {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	padding: 0.5rem 1rem;
	font-size: 0.8rem;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	text-decoration: none;
}

.nw-chip:hover,
.nw-chip.active {
	background: #fff;
	color: var(--brand-primary);
	border-color: #fff;
}

/* Search Bar */
.nw-search-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	border-radius: 50px;
	box-shadow: var(--shadow-md);
	max-width: 500px;
	padding: 6px;
	border: 3px solid transparent;
	transition: var(--transition);
}

.nw-search-bar:focus-within {
	border-color: var(--brand-secondary);
}

.nw-search-bar .search-icon {
	padding: 0 1.2rem;
	font-size: 1.2rem;
	color: var(--text-muted);
}

.nw-search-bar input {
	border: none;
	outline: none;
	flex: 1;
	padding: 0.8rem 0;
	font-size: 1rem;
	color: #333;
}

.nw-search-bar input::placeholder {
	color: var(--text-muted);
}

.nw-search-bar button {
	background: var(--brand-secondary);
	color: #fff;
	border: none;
	padding: 0.8rem 1.8rem;
	font-weight: 700;
	border-radius: 50px;
	transition: var(--transition);
	cursor: pointer;
}

.nw-search-bar button:hover {
	background: var(--brand-secondary-hover);
	transform: scale(1.02);
}

.micro-text {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 0.8rem;
	padding-left: 1.5rem;
}

.hero-rating {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: 2rem;
	margin-bottom: 2rem;
	font-size: 0.9rem;
}

.hero-rating .stars {
	color: #fbbf24;
	font-size: 1.2rem;
}

.hero-rating span {
	color: rgba(255, 255, 255, 0.9);
}

/* Responsive Hero */
@media (max-width: 991px) {
	.nw-hero {
		min-height: 500px;
		padding: 3rem 0;
	}

	.nw-hero-bg-image {
		width: 100%;
		opacity: 0.3;
	}

	.nw-hero-bg-image::before {
		background: linear-gradient(to bottom, transparent, var(--brand-primary));
		opacity: 0.8;
	}

	.nw-hero-content {
		text-align: center;
	}

	.nw-hero-chips {
		justify-content: center;
	}

	.nw-search-bar {
		max-width: 100%;
	}
}

@media (max-width: 576px) {
	.nw-hero {
		min-height: 400px;
		padding: 2rem 0;
	}

	.nw-hero h1 {
		font-size: 1.5rem;
	}

	.nw-hero p {
		font-size: 0.95rem;
	}

	.nw-chip {
		font-size: 0.75rem;
		padding: 0.4rem 0.8rem;
	}

	.nw-search-bar {
		flex-direction: column;
		border-radius: 12px;
	}

	.nw-search-bar input,
	.nw-search-bar button {
		width: 100%;
	}

	.nw-search-bar button {
		border-radius: 8px;
		margin-top: 0.5rem;
	}
}

/* ============================================
        SERVICES GRID SECTION
        ============================================ */
.services-grid-wrapper {
	background-color: #f2faf7;
	padding: 4rem 0;
	border-radius: 24px;
	margin-top: -4rem;
	position: relative;
	z-index: 20;
}

.service-card {
	background: #ffffff;
	border-radius: var(--card-radius);
	text-align: center;
	height: 100%;
	transition: var(--transition);
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	border: 1px solid transparent;
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
	border-color: var(--brand-secondary);
}

.service-card .arrow-link {
	position: absolute;
	top: 15px;
	right: 15px;
	color: #d1d5db;
	font-size: 1rem;
	transition: var(--transition);
}

.service-card:hover .arrow-link {
	color: var(--brand-secondary);
}

.service-icon-wrap {
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	font-size: 3.5rem;
}

.service-card h3 {
	color: #000;
	font-weight: 800;
	font-size: 1.1rem;
	margin-bottom: 0.75rem;
}

.service-card p {
	color: var(--text-muted);
	font-size: 0.85rem;
	line-height: 1.5;
	margin: 0;
}

/* ============================================
        TRUST SECTION
        ============================================ */
.trust-section {
	padding: 4rem 0;
	background-color: #fff;
}

.trust-header h2 {
	font-weight: 800;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	margin-bottom: 2.5rem;
}

.stat-number {
	display: block;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 0.9rem;
	color: var(--text-muted) !important;
	line-height: 1.5;
}

.partner-label {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #9ca3af;
	margin: 2rem 0 1.5rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.partner-label::after {
	content: "";
	flex: 1;
	height: 1px;
	background: #e5e7eb;
}

.brand-logo-card {
	transition: var(--transition);
	filter: grayscale(100%);
	opacity: 0.6;
	min-height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.brand-logo-card:hover {
	filter: grayscale(0%);
	opacity: 1;
}

.brand-logo-card img {
	max-width: 90%;
	max-height: 40px;
	object-fit: contain;
}

@media (max-width: 991px) {
	.trust-visual::before {
		display: none;
	}

	.trust-visual img {
		max-width: 100%;
	}
}

/* ============================================
        NEWS SECTION
        ============================================ */
.nw-news-section {
	padding: 4rem 0;
	background: #fff;
}

.nw-news-header {
	text-align: center;
	margin-bottom: 3rem;
}

.nw-news-header h2 {
	font-weight: 800;
	font-size: clamp(1.5rem, 4vw, 2.2rem);
	color: #000;
	margin-bottom: 1rem;
}

.view-all-link {
	color: var(--brand-primary);
	text-decoration: none;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 0.05em;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: var(--transition);
}

.view-all-link:hover {
	text-decoration: underline;
}

.news-slider-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	position: relative;
}

.news-card {
	position: relative;
	border-radius: var(--card-radius);
	overflow: hidden;
	aspect-ratio: 3 / 4;
	flex: 0 0 300px;
	transition: all 0.5s ease;
	cursor: pointer;
}

.news-card.active {
	flex: 1 0 550px;
	aspect-ratio: 16 / 9;
}

.news-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.85) 0%,
		rgba(0, 0, 0, 0.2) 50%,
		transparent 100%
	);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.5rem;
	color: #fff;
}

.news-card:not(.active) .news-card-overlay {
	background: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(2px);
}

.news-card h3 {
	font-size: 1.5rem;
	font-weight: 800;
	margin: 0;
	line-height: 1.2;
}

.news-card:not(.active) h3 {
	font-size: 1rem;
	color: #000;
}

.author-meta {
	display: none;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
	font-size: 0.85rem;
}

.news-card.active .author-meta {
	display: flex;
}

.author-img {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	object-fit: cover;
}

.slider-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	margin-top: 2rem;
}

.nav-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid #e5e7eb;
	background: #f9fafb;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--transition);
}

.nav-btn:hover {
	background: #fff;
	box-shadow: var(--shadow-md);
}

.slider-dots {
	display: flex;
	gap: 0.5rem;
}

.dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #d1d5db;
	cursor: pointer;
	transition: var(--transition);
}

.dot.active {
	background: var(--brand-primary);
}

@media (max-width: 768px) {
	.news-card:not(.active) {
		display: none;
	}

	.news-card.active {
		flex: 0 0 100%;
	}
}

/* ============================================
        RATES SECTION
        ============================================ */
.rates-section {
	background: linear-gradient(180deg, #f4f2fa 0%, #c3c1ff 100%);
	border-radius: 30px;
	margin-top: 2rem;
}

.rates-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 3rem;
}

.rates-header h2 {
	font-weight: 800;
	font-size: clamp(1.5rem, 4vw, 2.5rem);
	margin-bottom: 1rem;
}

.rates-header p {
	color: var(--text-muted);
	font-size: 0.95rem;
}

.rates-tabs {
	display: flex;
	justify-content: center;
	gap: 2.5rem;
	margin-bottom: 3rem;
	border-bottom: 1px solid #e5e7eb;
	flex-wrap: wrap;
}

.rate-tab-btn {
	background: none;
	border: none;
	padding: 1rem 0;
	font-weight: 700;
	color: var(--text-muted);
	position: relative;
	cursor: pointer;
	transition: var(--transition);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}

.rate-tab-btn .tab-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	background: #fff;
	border: 1px solid #e5e7eb;
	transition: var(--transition);
}

.rate-tab-btn.active {
	color: var(--brand-primary);
}

.rate-tab-btn.active .tab-icon {
	background: var(--brand-primary);
	color: #fff;
	border-color: var(--brand-primary);
}

.rate-tab-btn.active::after {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--brand-primary);
}

.rate-card {
	background: #fff;
	border-radius: 20px;
	padding: 1.5rem;
	height: 100%;
	border: 1px solid #e5e7eb;
	position: relative;
	transition: var(--transition);
}

.rate-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.badge-compare {
	position: absolute;
	top: -12px;
	left: 20px;
	background: #dcfce7;
	color: var(--brand-primary);
	font-size: 0.75rem;
	font-weight: 800;
	padding: 0.25rem 0.75rem;
	border-radius: 50px;
	border: 1px solid #bbf7d0;
}

.rate-card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
}

.rate-card-header h3 {
	font-size: 1.25rem;
	font-weight: 800;
	margin: 0;
}

.arrow-circle {
	width: 32px;
	height: 32px;
	background: #f3f4f6;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--brand-primary);
}

.rate-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 0.75rem;
	font-size: 0.9rem;
}

.rate-label {
	color: #4b5563;
}

.rate-value-big {
	font-size: 1.6rem;
	font-weight: 800;
	color: var(--brand-primary);
}

.rate-value-avg {
	font-size: 1rem;
	font-weight: 700;
	color: #9ca3af;
}

.disclaimer-text {
	font-size: 0.75rem;
	color: #9ca3af;
	text-align: center;
	margin-top: 2rem;
	padding: 0 1rem;
}

.trust-badges {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-top: 2.5rem;
	font-size: 0.9rem;
	font-weight: 700;
	flex-wrap: wrap;
}

@media (max-width: 768px) {
	.rates-tabs {
		gap: 1rem;
	}

	.rate-tab-btn {
		font-size: 0.85rem;
	}

	.rate-tab-btn .tab-icon {
		width: 40px;
		height: 40px;
		font-size: 1.2rem;
	}
}

/* ============================================
        PROMO SECTION
        ============================================ */
.promo-section {
	padding: 4rem 0;
	background-color: #ffffff;
}

.promo-visual-wrap {
	position: relative;
	border-radius: 24px;
	overflow: visible;
}

.main-promo-img {
	width: 100%;
	border-radius: 24px;
	display: block;
	height: 30rem;
	object-fit: cover;
}

.ad-badge {
	position: absolute;
	top: 1.25rem;
	left: 1.25rem;
	background: rgba(0, 0, 0, 0.2);
	color: #fff;
	padding: 0.25rem 0.5rem;
	font-size: 0.65rem;
	font-weight: 700;
	border-radius: 4px;
	text-transform: uppercase;
	z-index: 5;
}

.floating-stat-card {
	position: absolute;
	top: 15%;
	right: -10%;
	background: #f0faf6;
	padding: 1.5rem;
	border-radius: 16px;
	box-shadow: var(--shadow-lg);
	width: 240px;
	z-index: 10;
	border: 1px solid rgba(255, 255, 255, 0.8);
}

.floating-stat-card h4 {
	font-size: 0.85rem;
	color: #4b5563;
	margin-bottom: 0.75rem;
	font-weight: 600;
}

.floating-stat-card .balance {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--brand-primary);
	display: block;
	margin-bottom: 0.5rem;
}

.earnings-footer {
	display: flex;
	justify-content: space-between;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--brand-primary);
}

.promo-content {
	padding-left: 3rem;
}

.promo-content h2 {
	font-size: clamp(1.75rem, 4vw, 3rem);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	color: #000;
}

.promo-content p {
	font-size: 1.05rem;
	color: #4b5563;
	line-height: 1.6;
	margin-bottom: 2rem;
	max-width: 520px;
}

.btn-promo-cta {
	background-color: var(--brand-primary);
	color: #ffffff;
	padding: 1rem 2.5rem;
	border-radius: 8px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border: none;
	transition: var(--transition);
	display: inline-block;
	text-decoration: none;
	font-size: 0.9rem;
}

.btn-promo-cta:hover {
	background-color: #036b37;
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.promotion-label {
	display: block;
	font-size: 0.7rem;
	color: #9ca3af;
	margin-top: 1rem;
	text-align: center;
	width: fit-content;
	margin-left: 2.5rem;
}

.disclaimer-bottom {
	font-size: 0.7rem;
	color: #9ca3af;
	margin-top: 1.25rem;
	line-height: 1.5;
}

@media (max-width: 991px) {
	.promo-content {
		padding-left: 0;
		margin-top: 2rem;
	}

	.floating-stat-card {
		right: 0;
		top: -30px;
		width: 200px;
	}

	.promo-section {
		padding: 2rem 0;
	}
}

@media (max-width: 576px) {
	.floating-stat-card {
		display: none;
	}

	.promo-content h2 {
		text-align: center;
	}

	.promo-content p {
		text-align: center;
		margin: 0 auto 2rem;
	}

	.promotion-label {
		margin-left: 0;
		text-align: center;
	}
}

/* ============================================
        RESOURCES SECTION
        ============================================ */
.resources-section {
	padding: 100px 0;
	background-color: var(--bg-light);
	font-family: "SN Pro", sans-serif;
}

/* Titles */
.section-title {
	font-size: 2.8rem;
	font-weight: 800;
	color: var(--dark-text);
	letter-spacing: -1px;
}

.text-gradient {
	background: var(--button-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* Tabs Styling */
.resource-tab-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.resource-tab-item {
	background: #fff;
	border: 1px solid transparent;
	padding: 20px 24px;
	border-radius: 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--dark-text);
	font-weight: 600;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
	transition: var(--transition);
}

.resource-tab-item:hover {
	transform: translateX(8px);
	border-color: #e2e8f0;
}

.resource-tab-item.active {
	background: #fff;
	border-left: 5px solid var(--brand-primary);
	box-shadow: 0 20px 25px -5px rgba(51, 0, 255, 0.1);
	color: var(--brand-primary);
}

.tab-dot {
	height: 8px;
	width: 8px;
	background: #cbd5e1;
	border-radius: 50%;
	display: inline-block;
	margin-right: 12px;
	transition: var(--transition);
}

.active .tab-dot {
	background: var(--brand-primary);
	box-shadow: 0 0 10px var(--brand-primary);
}

/* Display Card */
.resource-display-card {
	background: #ffffff;
	border-radius: 32px;
	padding: 50px;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
	position: relative;
	overflow: hidden;
}

.badge-category {
	background: rgba(51, 0, 255, 0.1);
	color: var(--brand-primary);
	padding: 6px 14px;
	border-radius: 99px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	display: inline-block;
	margin-bottom: 20px;
}

.resource-display-card h3 {
	font-weight: 800;
	font-size: 2rem;
	margin-bottom: 1.2rem;
	color: var(--dark-text);
}

/* Gradient Button */
.btn-gradient-cta {
	background: var(--button-gradient-2);
	color: white;
	border: none;
	padding: 16px 32px;
	border-radius: 12px;
	font-weight: 700;
	font-size: 1rem;
	box-shadow: 0 10px 20px rgba(42, 16, 255, 0.2);
	transition: var(--transition);
	margin-bottom: 30px;
}

.btn-gradient-cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 30px rgba(42, 16, 255, 0.3);
}

/* Image Visual */
.resource-img-visual {
	position: relative;
	background: radial-gradient(
		circle,
		rgba(51, 0, 255, 0.05) 0%,
		rgba(255, 255, 255, 0) 70%
	);
	padding: 20px;
	text-align: center;
}

.resource-img-visual img {
	width: 100%;
	max-width: 240px;
	filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
}

.floating-badge {
	position: absolute;
	top: 0;
	right: 10%;
	background: var(--brand-secondary);
	color: var(--dark-text);
	padding: 8px 15px;
	border-radius: 10px;
	font-weight: 800;
	font-size: 0.8rem;
	box-shadow: 0 5px 15px rgba(224, 217, 0, 0.4);
	animation: float 3s ease-in-out infinite;
}

/* Grid Links */
.resource-links-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 15px;
	border-top: 1px solid #f1f5f9;
	padding-top: 25px;
}

.grid-link {
	text-decoration: none;
	color: var(--text-muted);
	font-weight: 600;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: var(--transition);
}

.grid-link:hover {
	color: var(--brand-primary);
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

/* ============================================
        APP SECTION
        ============================================ */
.app-section {
	padding: 3rem;
	background-color: #f2faf7;
	border-radius: 40px;
	margin-bottom: 3rem;
}

.app-content h2 {
	font-size: clamp(1.75rem, 4vw, 2.8rem);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	color: #000;
}

.app-content p {
	font-size: 1.05rem;
	color: #4b5563;
	margin-bottom: 2rem;
	max-width: 500px;
	line-height: 1.6;
}

.app-stats-row {
	display: flex;
	gap: 2rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.stat-box {
	flex: 1;
	min-width: 150px;
}

.store-icons {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 1rem;
	align-items: center;
}

.store-icons img {
	width: 20px;
	height: auto;
}

.stat-box h4 {
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 0.5rem;
}

.app-mockup-wrap {
	position: relative;
	text-align: right;
}

.app-mockup-wrap img {
	max-width: 100%;
	height: auto;
	filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.review-card {
	background: #ffffff;
	border-radius: var(--card-radius);
	padding: 1.75rem;
	height: 100%;
	border: 1px solid #e5e7eb;
	transition: var(--transition);
}

.review-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
}

.stars {
	color: #fbbf24;
	font-size: 1.2rem;
	display: block;
}

.review-text {
	font-size: 1rem;
	font-weight: 600;
	color: #111827;
	line-height: 1.6;
	margin-bottom: 1.25rem;
}

.review-author {
	font-size: 0.8rem;
	color: #9ca3af;
}

.reviews-footer {
	text-align: center;
	font-size: 0.8rem;
	color: #9ca3af;
	margin-top: 2rem;
}

@media (max-width: 991px) {
	.app-section {
		padding: 2rem 1.5rem;
	}

	.app-stats-row {
		gap: 1rem;
	}

	.app-mockup-wrap {
		text-align: center;
		margin-top: 2rem;
	}
}

@media (max-width: 576px) {
	.app-section {
		padding: 1.5rem;
	}

	.app-stats-row {
		flex-direction: column;
		gap: 1.5rem;
	}

	.stat-box {
		text-align: center;
	}

	.store-icons {
		justify-content: center;
	}
}

/* ============================================
        FAQ SECTION
        ============================================ */
#faq {
	padding: 4rem 0;
	background-color: #fff;
}

.accordion-item {
	margin-bottom: 1rem;
	border: 1px solid #e5e7eb !important;
	border-radius: var(--card-radius) !important;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

.accordion-button {
	background-color: #fff !important;
	font-weight: 700;
	padding: 1.25rem;
	border: none !important;
	transition: var(--transition);
}

.accordion-button:not(.collapsed) {
	background-color: #f3f4f6 !important;
	box-shadow: none !important;
}

.accordion-button:focus {
	box-shadow: 0 0 0 3px rgba(10, 10, 121, 0.1) !important;
	border-color: var(--brand-primary) !important;
}

.accordion-body {
	padding: 1.25rem;
	color: var(--text-muted);
	font-size: 0.95rem;
	line-height: 1.6;
}

@media (max-width: 576px) {
	#faq {
		padding: 2rem 0;
	}

	.accordion-button {
		padding: 1rem;
		font-size: 0.9rem;
	}

	.accordion-body {
		padding: 1rem;
		font-size: 0.85rem;
	}
}

/* ============================================
        SECTION SPACING & CONTAINERS
        ============================================ */
section {
	scroll-margin-top: 80px;
}

@media (max-width: 576px) {
	section {
		scroll-margin-top: 60px;
	}
}
