/* Override Bootstrap primary classes to use our Emerald theme */
.text-primary {
	color: var(--primary) !important;
}
body.dark-mode .text-primary {
	color: var(--accent-green) !important;
}
.btn-primary {
	background-color: var(--primary) !important;
	border-color: var(--primary) !important;
	color: #fff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
	background-color: var(--primary-hover) !important;
	border-color: var(--primary-hover) !important;
	color: #fff !important;
}
.btn-outline-primary {
	color: var(--primary) !important;
	border-color: var(--primary) !important;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
	background-color: var(--primary) !important;
	border-color: var(--primary) !important;
	color: #fff !important;
}
.bg-primary {
	background-color: var(--primary) !important;
}
.dropdown-item.active,
.dropdown-item:active {
	background-color: var(--primary) !important;
	color: #fff !important;
}

/* Dropdown Dark Mode */
body.dark-mode .dropdown-menu {
	background-color: var(--bg-dropdown, #1e315a);
	border-color: var(--border-color);
}

body.dark-mode .dropdown-item {
	color: var(--text-primary);
}

body.dark-mode .dropdown-item:hover,
body.dark-mode .dropdown-item:focus {
	background-color: var(--bg-hover, #5f6b87);
	color: var(--text-primary);
}

/* =========================================
   NAVBAR
   ========================================= */

.navbar {
	padding: 1.5rem 0;
	background: var(--bg-card);
	backdrop-filter: blur(10px);
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: var(--shadow-sm);
	transition:
		box-shadow 0.3s ease,
		padding 0.3s ease;
}

.navbar.scrolled {
	padding: 0.8rem 0;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

body.dark-mode .navbar {
	background: rgba(15, 23, 42, 0.95);
}

body.dark-mode .navbar.scrolled {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav-link {
	font-weight: 600;
	color: var(--text-primary) !important;
	margin: 0 10px;
	position: relative;
	transition: color 0.3s ease;
}

.nav-link::after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 3px;
	background: var(--primary);
	border-radius: 2px;
	transition: width 0.3s ease;
}

.nav-link.active::after,
.nav-link:hover::after {
	width: 60%;
}

.nav-link.active {
	color: var(--primary) !important;
}

.btn-try {
	background-color: var(--primary);
	color: var(--primary-text);
	border-radius: 50px;
	padding: 10px 24px;
	font-weight: 600;
	transition: 0.3s;
}

.btn-try:hover {
	background-color: var(--primary-hover);
	color: var(--primary-text);
	transform: translateY(-2px);
}

/* Navbar action buttons (Theme Toggle, Language, Log In) */
.navbar .btn-link.shadow-sm,
.navbar .btn.text-primary.shadow-sm {
	background-color: #ffffff;
	transition: all 0.3s ease;
}

body.dark-mode .navbar .btn-link.shadow-sm,
body.dark-mode .navbar .btn.text-primary.shadow-sm {
	background-color: var(--bg-input, rgba(255, 255, 255, 0.05));
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.3) !important;
	border: 1px solid var(--border-color);
}

body.dark-mode .navbar .btn-link.text-dark,
body.dark-mode .navbar .btn.text-primary.shadow-sm {
	color: var(--text-primary) !important;
}

/* =========================================
   HERO SECTION
   ========================================= */

.hero-section {
	padding-top: 6rem;
	padding-bottom: 4rem;
	text-align: center;
	background: radial-gradient(
		circle at 50% 20%,
		var(--info-light) 0%,
		var(--bg-card) 60%
	);
	position: relative;
}

.hero-tag {
	background: var(--success-light);
	color: var(--success);
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	display: inline-block;
	margin-bottom: 1.5rem;
}

.hero-title {
	font-size: 3.5rem;
	line-height: 1.15;
	margin-bottom: 1.5rem;
	color: var(--text-primary);
}

.hero-desc {
	font-size: 1.25rem;
	color: var(--text-secondary);
	max-width: 700px;
	margin: 0 auto 2.5rem;
}

/* Social Proof Counter */
.social-proof {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	margin-top: 2rem;
	flex-wrap: wrap;
}

.social-proof-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.social-proof-avatars {
	display: flex;
}

.social-proof-avatars .avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 2px solid #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.7rem;
	color: #fff;
	margin-left: -8px;
}

.social-proof-avatars .avatar:first-child {
	margin-left: 0;
}

.social-proof-text {
	font-weight: 600;
	color: var(--text-secondary);
	font-size: 0.95rem;
}

.social-proof-text strong {
	color: var(--primary);
	font-size: 1.1rem;
}

.social-proof-rating {
	display: flex;
	align-items: center;
	gap: 0.3rem;
	color: var(--warning);
	font-weight: 700;
}

.hero-image-wrapper {
	margin-top: 3rem;
	position: relative;
	display: flex;
	justify-content: center;
}

.hero-svg {
	max-width: 900px;
	width: 100%;
	height: auto;
	filter: drop-shadow(0 20px 40px rgba(40, 100, 220, 0.15));
}

/* =========================================
   STORY SECTION
   ========================================= */

.story-section {
	padding: 6rem 0;
	position: relative;
}

.story-tag {
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 1px;
	color: var(--info);
	text-transform: uppercase;
	margin-bottom: 1rem;
	display: block;
}

.story-img-wrapper {
	position: relative;
	z-index: 1;
	padding: 20px;
}

.story-blob {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 110%;
	height: 110%;
	background: var(
		--gradient-blob,
		linear-gradient(135deg, var(--border-color) 0%, #ecfeff 100%)
	);
	border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
	z-index: -1;
	animation: morph 8s ease-in-out infinite;
}

.story-blob-2 {
	border-radius: 41% 59% 41% 59% / 52% 34% 66% 48%;
	background: linear-gradient(
		135deg,
		var(--info-light) 0%,
		var(--primary-light) 100%
	);
}

@keyframes morph {
	0% {
		border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
	}
	50% {
		border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
	}
	100% {
		border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
	}
}

.story-svg {
	width: 100%;
	max-width: 500px;
	height: auto;
	filter: drop-shadow(0 20px 30px rgba(40, 100, 220, 0.15));
	position: relative;
}

/* =========================================
   SOLUTION / FEATURE CARDS
   ========================================= */

.solution-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 24px;
	padding: 2rem;
	height: 100%;
	transition: 0.3s;
}

.solution-card:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-5px);
	border-color: var(--primary);
}

.card-icon {
	width: 50px;
	height: 50px;
	background: var(--primary-light);
	color: var(--primary);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
}

/* =========================================
   COMPARISON SECTION
   ========================================= */

.pain-card {
	background: var(--danger-light);
	border: 1px solid var(--danger-light);
	border-radius: 20px;
	padding: 2.5rem;
	height: 100%;
}

.gain-card {
	background: var(--primary-light);
	border: 2px solid var(--primary);
	border-radius: 20px;
	padding: 2.5rem;
	height: 100%;
	position: relative;
	box-shadow: 0 20px 50px -10px rgba(40, 100, 220, 0.15);
}

.gain-badge {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--primary);
	color: var(--primary-text);
	padding: 5px 20px;
	border-radius: 30px;
	font-weight: 700;
	font-size: 0.9rem;
}

.compare-item {
	display: flex;
	align-items: start;
	margin-bottom: 1.5rem;
}

.compare-icon {
	flex-shrink: 0;
	width: 24px;
	margin-top: 4px;
	margin-right: 12px;
}

/* =========================================
   TRUST BADGES SECTION
   ========================================= */

.trust-section {
	padding: 4rem 0;
	background: var(--bg-body);
}

.trust-badge-card {
	padding: 2rem 1.5rem;
	border-radius: 20px;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	height: 100%;
	transition: 0.3s ease;
}

.trust-badge-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px -10px rgba(40, 100, 220, 0.15);
	border-color: var(--primary);
}

.trust-icon {
	width: 60px;
	height: 60px;
	border-radius: 16px;
	background: var(--primary-light);
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin: 0 auto 1.25rem;
}

.trust-badge-card h4 {
	font-size: 1rem;
}

body.dark-mode .trust-section {
	background: var(--bg-card);
}

body.dark-mode .trust-badge-card {
	background: var(--bg-card);
	border-color: var(--border-color);
}

body.dark-mode .trust-badge-card:hover {
	box-shadow: 0 10px 30px -10px rgba(6, 182, 212, 0.2);
	border-color: var(--info);
}

/* =========================================
   PRICING SECTION
   ========================================= */

.pricing-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 24px;
	padding: 2rem;
	transition: 0.3s;
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.pricing-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
	border: 2px solid var(--primary);
	background: var(--primary-light);
	transform: scale(1.05);
	z-index: 10;
}

.pricing-price {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--text-primary);
	transition: opacity 0.2s;
}

.pricing-period {
	font-size: 1rem;
	color: var(--text-muted);
	font-weight: 500;
}

.check-list li {
	margin-bottom: 0.8rem;
	display: flex;
	align-items: center;
	color: var(--text-secondary);
	font-size: 0.95rem;
}

.check-list i {
	color: var(--accent-green);
	margin-right: 10px;
}

.pricing-savings {
	margin-bottom: 1rem;
}

.savings-badge {
	display: inline-block;
	background: linear-gradient(135deg, var(--primary), var(--primary-hover));
	color: #fff;
	font-size: 0.8rem;
	font-weight: 700;
	padding: 4px 14px;
	border-radius: 20px;
	animation: savingsPop 0.3s ease;
}

@keyframes savingsPop {
	0% {
		transform: scale(0.8);
		opacity: 0;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

body.dark-mode .savings-badge {
	background: linear-gradient(
		135deg,
		var(--primary-hover),
		var(--text-primary)
	);
}

body.dark-mode .highlight-feature,
body.dark-mode .highlight-feature i {
	color: #60a5fa !important;
}

.btn-toggle {
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.btn-toggle:hover {
	background-color: rgba(255, 255, 255, 0.5);
}

/* =========================================
   FAQ SECTION
   ========================================= */

.faq-section {
	padding: 5rem 0;
}

.faq-accordion .accordion-item {
	border: 1px solid var(--border-color);
	border-radius: 16px !important;
	margin-bottom: 1rem;
	overflow: hidden;
	transition: 0.3s ease;
}

.faq-accordion .accordion-item:hover {
	border-color: var(--primary);
	box-shadow: 0 4px 15px rgba(40, 100, 220, 0.08);
}

.faq-accordion .accordion-button {
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--text-primary);
	background: var(--bg-card);
	border-radius: 16px !important;
	padding: 1.25rem 1.5rem;
	box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
	background: var(--primary-light);
	color: var(--primary);
}

.faq-accordion .accordion-button::after {
	background-size: 1.1rem;
	transition: transform 0.3s ease;
}

.faq-accordion .accordion-body {
	padding: 0 1.5rem 1.25rem;
	color: var(--text-secondary);
	line-height: 1.7;
}

body.dark-mode .faq-accordion .accordion-item {
	border-color: var(--text-secondary);
	background: #1e315a;
}

body.dark-mode .faq-accordion .accordion-button {
	background: #1e315a;
	color: var(--text-primary);
}

body.dark-mode .faq-accordion .accordion-button:not(.collapsed) {
	background: rgba(40, 100, 220, 0.15);
	color: var(--accent-green);
}

body.dark-mode .faq-accordion .accordion-body {
	color: #cbd5e1;
}

/* =========================================
   FINAL CTA SECTION
   ========================================= */

.cta-section {
	padding: 5rem 0 6rem;
	background: linear-gradient(180deg, var(--primary) 0%, var(--bg-body) 100%);
	position: relative;
	overflow: hidden;
}

.cta-section::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -20%;
	width: 500px;
	height: 500px;
	background: radial-gradient(
		circle,
		rgba(255, 255, 255, 0.08) 0%,
		transparent 70%
	);
	border-radius: 50%;
}

.cta-section::after {
	content: "";
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 400px;
	height: 400px;
	background: radial-gradient(
		circle,
		rgba(255, 255, 255, 0.05) 0%,
		transparent 70%
	);
	border-radius: 50%;
}

.cta-section h2 {
	color: #fff !important;
}

.cta-section p {
	color: rgba(255, 255, 255, 0.8);
}

.cta-section .btn-cta {
	background: #fff;
	color: var(--primary);
	font-weight: 700;
	padding: 14px 40px;
	border-radius: 50px;
	font-size: 1.1rem;
	transition: 0.3s;
	border: none;
	display: inline-block;
	text-decoration: none;
}

.cta-section .btn-cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
	background: var(--bg-body);
}

.cta-note {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
	margin-top: 1rem;
}

/* =========================================
   CONTACT SECTION
   ========================================= */

.contact-box {
	background: var(--bg-card);
	border-radius: 24px;
	padding: 3rem;
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--border-color);
}

.contact-icon {
	width: 50px;
	height: 50px;
	background: var(--primary-light);
	color: var(--primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	margin-bottom: 1rem;
}

.form-control {
	border-radius: 10px;
	padding: 0.8rem 1rem;
	border: 1px solid var(--border-color);
	background-color: var(--bg-input);
}

.form-control:focus {
	background-color: var(--bg-card);
	border-color: var(--primary);
	box-shadow: 0 0 0 4px var(--primary-light);
}

/* =========================================
   FOOTER
   ========================================= */

.footer {
	background: var(--bg-body);
	color: var(--text-secondary);
	padding-top: 4rem;
	padding-bottom: 3rem;
	margin-top: 0;
	border-top: 1px solid var(--border-color);
}

.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5 {
	color: var(--text-primary);
}

.footer a {
	color: var(--text-secondary);
	text-decoration: none;
	display: block;
	margin-bottom: 0.8rem;
	transition: 0.2s;
}

.footer a:hover {
	color: var(--primary);
}

.footer-social {
	display: flex;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.footer-social a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: transparent;
	border: 1px solid var(--text-secondary);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-secondary);
	font-size: 1rem;
	transition: 0.3s;
	margin-bottom: 0;
}

.footer-social a:hover {
	background: var(--primary);
	border-color: var(--primary);
	color: #fff;
	transform: translateY(-3px);
}

/* =========================================
   BACK TO TOP
   ========================================= */

.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--primary);
	color: #fff;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	cursor: pointer;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: 0.3s ease;
	box-shadow: 0 4px 15px rgba(40, 100, 220, 0.3);
}

.back-to-top.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.back-to-top:hover {
	background: var(--primary-hover);
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(40, 100, 220, 0.4);
}

/* =========================================
   DARK MODE OVERRIDES
   ========================================= */

body.dark-mode .hero-section {
	background: radial-gradient(
		circle at 50% 20%,
		#1e3a5f 0%,
		var(--bg-body) 60%
	);
}

body.dark-mode .solution-card,
body.dark-mode .pricing-card,
body.dark-mode .testimonial-card {
	background: var(--bg-card) !important;
	border-color: var(--border-color) !important;
}

body.dark-mode .contact-box {
	background: #1e315a !important;
	border-color: var(--text-secondary) !important;
}

body.dark-mode .pain-card,
body.dark-mode .gain-card {
	background: #1e315a !important;
}

body.dark-mode .story-svg filter feFlood,
body.dark-mode .hero-svg filter feFlood {
	flood-color: var(--text-primary) !important;
}

/* Fix SVG colors in dark mode */
body.dark-mode svg text[fill="#091E42"],
body.dark-mode svg text[fill="var(--text-secondary)"] {
	fill: var(--text-primary) !important;
}

body.dark-mode svg rect[fill="#FFFFFF"],
body.dark-mode svg rect[fill="#fff"],
body.dark-mode svg rect[fill="var(--bg-body)"] {
	fill: var(--bg-card) !important;
	stroke: var(--border-color) !important;
}

body.dark-mode svg rect[fill="#F0FDF4"],
body.dark-mode svg rect[fill="#FEF2F2"] {
	fill: var(--bg-card) !important;
}

body.dark-mode svg path[fill="var(--bg-body)"] {
	fill: var(--bg-card) !important;
}

/* CTA and Footer */
body.dark-mode .cta-section {
	background: linear-gradient(
		180deg,
		var(--primary) 0%,
		var(--bg-body) 50%
	) !important;
}

body.dark-mode .cta-section::before,
body.dark-mode .cta-section::after {
	display: none !important;
}

body.dark-mode .footer {
	background: var(--bg-body) !important;
	border-top: none !important;
}

body.dark-mode .footer a {
	color: #94a3b8 !important;
}
body.dark-mode .footer a:hover {
	color: #ffffff !important;
}
body.dark-mode .footer-social a {
	background: rgba(255, 255, 255, 0.05) !important;
	border-color: var(--text-secondary) !important;
	color: #94a3b8 !important;
}
body.dark-mode .footer-social a:hover {
	background: var(--primary) !important;
	border-color: var(--primary) !important;
	color: #fff !important;
}

body.dark-mode .nav-link.active {
	color: var(--accent-green) !important;
}

body.dark-mode .nav-link::after {
	background: var(--accent-green);
}

/* Fix pricing toggle buttons in dark mode */
body.dark-mode .btn-toggle.active,
body.dark-mode .btn-toggle.bg-white {
	background-color: #1e315a !important; /* Distinct from bg-light var(--text-primary) */
	color: var(--text-primary) !important;
}

body.dark-mode .btn-toggle.text-muted {
	color: #94a3b8 !important; /* Dimmer for inactive */
}

body.dark-mode .pricing-price {
	color: var(--text-primary) !important;
}

body.dark-mode .pricing-period {
	color: #cbd5e1 !important;
}

/* Fix story blobs (the big background shapes behind SVGs) */
body.dark-mode .story-blob {
	background: linear-gradient(
		135deg,
		#1e315a 0%,
		var(--bg-body) 100%
	) !important;
}

body.dark-mode .story-blob-2 {
	background: linear-gradient(
		135deg,
		rgba(14, 165, 233, 0.1) 0%,
		rgba(40, 100, 220, 0.1) 100%
	) !important;
}

/* Fix SVG circles and lines that are too bright */
body.dark-mode svg circle[fill="#F0F9FF"],
body.dark-mode svg circle[fill="#f0f9ff"],
body.dark-mode svg circle[fill="#dcfce7"] {
	fill: #1e315a !important;
}

body.dark-mode svg circle[fill="#fee2e2"] {
	fill: #450a0a !important;
}

body.dark-mode svg path[stroke="#E0F2FE"],
body.dark-mode svg line[stroke="var(--bg-body)"] {
	stroke: var(--text-secondary) !important;
}

body.dark-mode svg rect[fill="var(--bg-body)"] {
	fill: var(--text-primary) !important;
}

body.dark-mode svg rect[stroke="var(--border-color)"],
body.dark-mode svg rect[stroke="#fff"] {
	stroke: var(--text-secondary) !important;
}

/* Dark mode back-to-top */
body.dark-mode .back-to-top {
	background: #60a5fa;
	box-shadow: 0 4px 15px rgba(96, 165, 250, 0.3);
}

body.dark-mode .back-to-top:hover {
	background: #3b82f6;
}

/* =========================================
   DYNAMIC ANIMATIONS & MICRO-INTERACTIONS
   ========================================= */

@keyframes floatAnimation {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
	100% {
		transform: translateY(0px);
	}
}

@keyframes floatAnimationFast {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-15px);
	}
	100% {
		transform: translateY(0px);
	}
}

/* Make SVG illustrations float organically */
.hero-svg {
	animation: floatAnimation 6s ease-in-out infinite;
}

.story-svg {
	animation: floatAnimationFast 5s ease-in-out infinite;
}

/* Enhanced Hover Effects (Glassmorphism & Glow) */
.solution-card:hover,
.pricing-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 25px 50px -12px rgba(0, 82, 204, 0.25);
	border-color: var(--info);
	z-index: 10;
}

body.dark-mode .solution-card:hover,
body.dark-mode .pricing-card:hover {
	box-shadow: 0 25px 50px -12px rgba(6, 182, 212, 0.3);
	border-color: var(--info) !important;
}

/* Button glow effect on hover */
.btn-try:hover,
.btn-primary:hover {
	box-shadow: 0 10px 25px -5px rgba(0, 82, 204, 0.4);
}

body.dark-mode .btn-try:hover,
body.dark-mode .btn-primary:hover {
	box-shadow: 0 10px 25px -5px rgba(6, 182, 212, 0.4);
}

/* =========================================
   RESPONSIVE - TABLET (max-width: 992px)
   ========================================= */

@media (max-width: 991.98px) {
	.hero-title {
		font-size: 2.5rem;
	}

	.hero-desc {
		font-size: 1.1rem;
	}

	.hero-svg {
		max-width: 600px;
	}

	.story-section {
		padding: 4rem 0;
	}

	.display-6 {
		font-size: 1.75rem !important;
	}

	.pricing-card.popular {
		transform: scale(1);
	}

	.pricing-card.popular:hover {
		transform: translateY(-10px) scale(1.02);
	}

	.contact-box {
		padding: 2rem;
	}

	.footer {
		padding-top: 3rem;
	}

	.social-proof {
		gap: 1rem;
	}
}

/* =========================================
   RESPONSIVE - MOBILE (max-width: 768px)
   ========================================= */

@media (max-width: 767.98px) {
	.navbar {
		padding: 1rem 0;
	}

	.navbar-brand {
		font-size: 1.5rem !important;
	}

	.hero-section {
		padding-top: 3rem;
		padding-bottom: 2rem;
	}

	.hero-title {
		font-size: 2rem;
		line-height: 1.2;
	}

	.hero-desc {
		font-size: 1rem;
		margin-bottom: 1.5rem;
	}

	.hero-svg {
		max-width: 100%;
		animation: none; /* Disable float on mobile for performance */
	}

	.story-svg {
		animation: none;
	}

	.story-section {
		padding: 3rem 0;
	}

	.story-blob {
		width: 100%;
		height: 100%;
	}

	.display-6 {
		font-size: 1.5rem !important;
	}

	.solution-card {
		padding: 1.5rem;
		border-radius: 16px;
	}

	.solution-card:hover,
	.pricing-card:hover {
		transform: translateY(-5px) scale(1);
	}

	.pain-card,
	.gain-card {
		padding: 1.5rem;
	}

	.gain-badge {
		font-size: 0.75rem;
		padding: 4px 14px;
	}

	.pricing-card {
		padding: 1.5rem;
	}

	.pricing-price {
		font-size: 2rem;
	}

	.contact-box {
		padding: 1.5rem;
		border-radius: 16px;
	}

	.footer {
		padding-top: 2.5rem;
	}

	.social-proof {
		flex-direction: column;
		gap: 0.75rem;
	}

	.testimonial-card {
		padding: 1.5rem;
	}

	.cta-section {
		padding: 3rem 0;
	}

	.cta-section .btn-cta {
		padding: 12px 30px;
		font-size: 1rem;
	}

	.back-to-top {
		bottom: 20px;
		right: 20px;
		width: 40px;
		height: 40px;
		font-size: 0.95rem;
	}

	/* Fix navbar collapse */
	.navbar-collapse {
		background: var(--bg-card);
		padding: 1rem;
		border-radius: 16px;
		margin-top: 0.5rem;
		box-shadow: var(--shadow-lg);
	}

	body.dark-mode .navbar-collapse {
		background: #1e315a;
	}

	.navbar-nav .nav-link {
		margin: 0;
		padding: 0.75rem 1rem;
		border-radius: 8px;
	}

	.navbar-nav .nav-link:hover {
		background: var(--primary-light);
	}

	body.dark-mode .navbar-nav .nav-link:hover {
		background: rgba(96, 165, 250, 0.1);
	}

	.navbar-nav .nav-link::after {
		display: none;
	}

	.d-flex.align-items-center.gap-2 {
		flex-wrap: wrap;
		justify-content: center;
		padding-top: 0.5rem;
	}
}

/* =========================================
   RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ========================================= */

@media (max-width: 479.98px) {
	.hero-title {
		font-size: 1.6rem;
	}

	.hero-desc {
		font-size: 0.9rem;
	}

	.btn-try {
		padding: 8px 18px;
		font-size: 0.9rem;
	}

	.display-6 {
		font-size: 1.3rem !important;
	}

	.contact-box {
		padding: 1rem;
	}

	.pricing-price {
		font-size: 1.75rem;
	}
}
