* {
	font-family: "Manrope", sans-serif;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	overflow-x: hidden;
	
}

.hero-bg {
	background-color: #4b5efa;
	position: relative;
	overflow: hidden;
	min-height: 100vh;
}

/* Big decorative circle bottom-right */
.hero-bg::before {
	content: "";
	position: absolute;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	border: 60px solid rgba(255, 255, 255, 0.12);
	bottom: -120px;
	right: -80px;
	pointer-events: none;
}

/* Small decorative circle inner */
.hero-bg::after {
	content: "";
	position: absolute;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	border: 40px solid rgba(255, 255, 255, 0.08);
	bottom: -20px;
	right: 60px;
	pointer-events: none;
}

.nav-link {
	color: white;
	font-weight: 600;
	font-size: 1.25rem;
	text-decoration: none;
	transition: opacity 0.2s;
}
.nav-link:hover {
	opacity: 0.75;
}

.login-btn {
	background: #111;
	color: #fff;
	border-radius: 9999px;
	font-weight: 700;
	font-size: 1.1rem;
	padding: 0.6rem 4rem;
	letter-spacing: 0.02em;
	transition: background 0.2s;
	border: none;
	cursor: pointer;
}
.login-btn:hover {
	background: #2a2a2a;
}

.hero-title {
	line-height: 1.05;
	font-weight: 800;
	font-size: clamp(2.8rem, 7vw, 5.5rem);
	font-style: normal;
	color: rgb(255, 255, 255);
	font-kerning: none;
	text-decoration-line: none;
	text-decoration-thickness: initial;
	text-decoration-style: initial;
}

.hero-title .minutes {
	color: #111;
	font-weight: 900;
}

.hero-sub {
	color: rgba(255, 255, 255, 0.92);
	font-size: clamp(1rem, 2vw, 1.2rem);
	font-weight: 500;
	text-align: center;
	max-width: 560px;
	line-height: 1.6;
}

.btn-dark {
	background: #111;
	color: #fff;
	border-radius: 9999px;
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.1em;
	padding: 18px 36px;
	cursor: pointer;
	border: none;
	transition:
		background 0.2s,
		transform 0.15s;
	text-transform: uppercase;
	white-space: nowrap;
}
.btn-dark:hover {
	background: #222;
	transform: translateY(-2px);
}

.model-img {
	position: absolute;
	left: -260px;
	bottom: -50px;
	height: 85%;
	max-height: 620px;
	object-fit: contain;
	object-position: bottom left;
	pointer-events: none;
	z-index: 2;
}

@media (max-width: 900px) {
	.model-img {
		height: 70%;
		left: -235px;
		bottom: 0px;
		opacity: 0.35;
	}
	.content-area {
		padding-top: 80px !important;
	}
}

@media (max-width: 600px) {
	.model-img {
		display: none;
	}
}

/* ── Download Section ── */
.download-section {
	background: linear-gradient(135deg, #0a1628 0%, #0d2145 60%, #0f2d5e 100%);
	position: relative;
	overflow: hidden;
	min-height: 480px;
	display: flex;
	align-items: center;
}

.download-section::before {
	content: "";
	position: absolute;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(75, 94, 250, 0.15) 0%,
		transparent 70%
	);
	top: -200px;
	right: 200px;
	pointer-events: none;
}

.download-model {
	position: absolute;
	right: -140px;
	bottom: 0;
	height: 100%;
	max-height: 480px;
	object-fit: contain;
	object-position: bottom right;
	pointer-events: none;
	z-index: 2;
}

.download-title {
	font-size: clamp(2.2rem, 5vw, 3.8rem);
	font-weight: 800;
	color: #fff;
	line-height: 1.1;
	text-align: center;
}

.download-title .phone {
	color: #4b5efa;
}

.download-sub {
	color: rgba(255, 255, 255, 0.75);
	font-size: clamp(0.9rem, 1.5vw, 1.05rem);
	font-weight: 400;
	line-height: 1.7;
	text-align: center;
}

.store-btn img {
	height: 58px;
	width: auto;
	border-radius: 10px;
	transition:
		transform 0.2s,
		opacity 0.2s;
	cursor: pointer;
}
.store-btn img:hover {
	transform: translateY(-3px);
	opacity: 0.9;
}

@media (max-width: 900px) {
	.download-model {
		opacity: 0.2;
		height: 80%;
	}
	.download-arrow {
		display: none;
	}
}

@media (max-width: 600px) {
	.download-model {
		display: none;
	}
}

/* ── Pricing Section ── */
.pricing-section {
	background-color: #4b5efa;
	padding: 70px 40px 80px;
	text-align: center;
}

.pricing-title {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 400;
	color: #fff;
	margin-bottom: 50px;
}

.pricing-title strong {
	color: black;
	font-weight: 900;
}

.pricing-grid {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 24px;
	flex-wrap: wrap;
	margin-bottom: 50px;
}

.plan-card {
	background: rgba(255, 255, 255, 0.97);
	border-radius: 20px;
	padding: 36px 32px 32px;
	width: 300px;
	display: flex;
	flex-direction: column;
	text-align: left;
	position: relative;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	transition: transform 0.2s;
}

.plan-card:hover {
	transform: translateY(-4px);
}

.plan-card.popular {
	background: linear-gradient(160deg, #f0f4ff 0%, #e8eeff 100%);
	border: 2px solid rgba(75, 94, 250, 0.15);
}

.popular-badge {
	position: absolute;
	top: -18px;
	left: 50%;
	transform: translateX(-50%);
	background: #111;
	color: #fff;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	padding: 7px 18px;
	border-radius: 9999px;
	white-space: nowrap;
}

.popular-badge span {
	margin-right: 5px;
}

.plan-name {
	font-size: 1.6rem;
	font-weight: 800;
	color: #111;
	margin-bottom: 8px;
}

.plan-price {
	display: flex;
	align-items: flex-end;
	gap: 4px;
	margin-bottom: 28px;
}

.plan-price .amount {
	font-size: 4rem;
	font-weight: 900;
	color: #111;
	line-height: 1;
}

.plan-price .period {
	font-size: 0.95rem;
	color: #666;
	font-weight: 500;
	margin-bottom: 8px;
}

.plan-features {
	list-style: none;
	padding: 0;
	margin: 0 0 32px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	flex: 1;
}

.plan-features li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 1rem;
	color: #222;
	font-weight: 500;
}

.plan-features li::before {
	content: "✓";
	color: #4b5efa;
	font-weight: 800;
	font-size: 1rem;
	flex-shrink: 0;
}

.plan-btn {
	width: 100%;
	padding: 16px;
	border-radius: 12px;
	font-size: 1rem;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
	transition:
		transform 0.15s,
		opacity 0.15s;
	border: 2px solid #111;
	background: transparent;
	color: #111;
}

.plan-btn:hover {
	transform: translateY(-2px);
	opacity: 0.85;
}

.plan-btn.primary {
	background: #111;
	color: #fff;
	border-color: #111;
}

.pricing-actions {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.pricing-cta {
	background: #111;
	color: #fff;
	border: none;
	border-radius: 9999px;
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.1em;
	padding: 18px 44px;
	cursor: pointer;
	text-transform: uppercase;
	transition:
		background 0.2s,
		transform 0.15s;
}

.pricing-cta:hover {
	background: #222;
	transform: translateY(-2px);
}

@media (max-width: 700px) {
	.plan-card {
		width: 100%;
		max-width: 340px;
	}
}

/* ── Join Banner ── */
.join-banner {
	background: linear-gradient(135deg, #0a1628 0%, #0d2145 60%, #0f2d5e 100%);
	padding: 84px 100px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 80px;
	flex-wrap: wrap;
}

.join-banner-left h2 {
	font-size: clamp(3rem, 6vw, 5.2rem);
	font-weight: 800;
	color: #fff;
	line-height: 1.05;
	margin: 0;
}

.join-banner-left h2 span {
	color: #4b5efa;
}

.join-banner-right {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	text-align: center;
}

.join-banner-right p {
	font-size: 1.25rem;
	font-weight: 500;
	color: #fff;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	line-height: 1.8;
	margin: 0;
}

.signup-btn {
	background: #4b5efa;
	color: #fff;
	border: none;
	border-radius: 9999px;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 22px 72px;
	cursor: pointer;
	min-width: 260px;
	box-shadow: 0 6px 28px rgba(75, 94, 250, 0.45);
	transition:
		background 0.2s,
		transform 0.15s,
		box-shadow 0.2s;
}

.signup-btn:hover {
	background: #3a4de0;
	transform: translateY(-3px);
	box-shadow: 0 10px 36px rgba(75, 94, 250, 0.55);
}

/* ── Newsletter Section ── */
.newsletter-section {
	background: linear-gradient(160deg, #3a52f5 0%, #4b5efa 50%, #5a6bff 100%);
	position: relative;
	overflow: hidden;
	min-height: 600px;
	display: flex;
	align-items: center;
	padding: 60px 40px 60px 0;
}

.newsletter-model {
	position: absolute;
	left: -110px;
	bottom: -45px;
	height: 110%;
	object-fit: contain;
	object-position: bottom left;
	pointer-events: none;
	z-index: 1;
}

.newsletter-content {
	position: relative;
	z-index: 2;
	margin-left: auto;
	width: 100%;
	max-width: 560px;
	padding-right: 40px;
}

.newsletter-card {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 20px;
	padding: 40px 36px 32px;
	margin-bottom: 24px;
}

.newsletter-card h3 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 600;
	color: #fff;
	margin: 0 0 28px;
	line-height: 1.2;
}

.newsletter-card p{
	color: rgba(0, 0, 0, 0.85);
	font-size: clamp(0.9rem, 1.5vw, 1rem);
	font-weight: 400;
	line-height: 1.7;
	margin-top: 0.5rem;
	text-align: center;
}

.newsletter-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 20px;
}

.newsletter-field label {
	font-size: 0.95rem;
	font-weight: 500;
	color: #fff;
}

.newsletter-field input {
	background: rgba(255, 255, 255, 0.18);
	border: 1.5px solid rgba(255, 255, 255, 0.35);
	border-radius: 10px;
	padding: 14px 18px;
	font-size: 1rem;
	color: #fff;
	outline: none;
	transition:
		border-color 0.2s,
		background 0.2s;
	font-family: "Manrope", sans-serif;
	width: 100%;
	box-sizing: border-box;
}

.newsletter-field input::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.newsletter-field input:focus {
	border-color: rgba(255, 255, 255, 0.8);
	background: rgba(255, 255, 255, 0.25);
}

.newsletter-submit {
	width: 100%;
	padding: 16px;
	background: #111;
	color: #fff;
	border: none;
	border-radius: 10px;
	font-size: 1.05rem;
	font-weight: 700;
	cursor: pointer;
	margin-top: 8px;
	transition:
		background 0.2s,
		transform 0.15s;
	font-family: "Manrope", sans-serif;
}

.newsletter-submit:hover {
	background: #2a2a2a;
	transform: translateY(-2px);
}

.newsletter-disclaimer {
	text-align: center;
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 12px;
}

.newsletter-tagline {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.6;
	padding-left: 4px;
}

@media (max-width: 900px) {
	.newsletter-model {
		opacity: 0.15;
		height: 70%;
	}
	.newsletter-content {
		margin: 0 auto;
		padding: 0 20px;
		max-width: 100%;
	}
	.join-banner {
		flex-direction: column;
		text-align: center;
		padding: 60px 36px;
		gap: 48px;
	}
	.join-banner-right {
		align-items: center;
	}
	.join-banner-right p {
		max-width: 100%;
	}
	.signup-btn {
		min-width: unset;
		padding: 18px 48px;
		max-width: 100%;
	}
}

@media (max-width: 600px) {
	.newsletter-model {
		display: none;
	}
	.newsletter-section {
		padding: 40px 20px;
	}
	.join-banner {
		padding: 48px 20px;
		gap: 32px;
	}
	.join-banner-right p {
		font-size: 1rem;
		letter-spacing: 0.08em;
	}
	.signup-btn {
		min-width: unset;
		width: 100%;
		padding: 18px 24px;
	}
}

/* ── Footer ── */
.footer {
	background: #0b1120;
	padding: 64px 60px 0;
}

.footer-top {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr 1.4fr;
	gap: 40px;
	padding-bottom: 60px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.9rem;
	line-height: 1.7;
	margin: 14px 0 24px;
	max-width: 260px;
}

.footer-brand h3 {
	color: #fff;
	font-size: 1.8rem;
	font-weight: 800;
	margin: 0;
}

.footer-socials {
	display: flex;
	gap: 12px;
}

.social-icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1.5px solid rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	font-size: 0.95rem;
	transition:
		border-color 0.2s,
		color 0.2s,
		background 0.2s;
}

.social-icon:hover {
	border-color: #4b5efa;
	color: #fff;
	background: rgba(75, 94, 250, 0.2);
}

.footer-col h4 {
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	margin: 0 0 20px;
}

.footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-col ul li a {
	color: rgba(255, 255, 255, 0.55);
	text-decoration: none;
	font-size: 0.92rem;
	font-weight: 400;
	transition: color 0.2s;
}

.footer-col ul li a:hover {
	color: #fff;
}

.footer-newsletter h4 {
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	margin: 0 0 10px;
}

.footer-newsletter p {
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.85rem;
	line-height: 1.6;
	margin: 0 0 18px;
}

.footer-newsletter input {
	width: 100%;
	box-sizing: border-box;
	background: rgba(255, 255, 255, 0.06);
	border: 1.5px solid rgba(255, 255, 255, 0.15);
	border-radius: 8px;
	padding: 12px 16px;
	color: #fff;
	font-size: 0.9rem;
	font-family: "Manrope", sans-serif;
	outline: none;
	margin-bottom: 12px;
	transition: border-color 0.2s;
}

.footer-newsletter input::placeholder {
	color: rgba(255, 255, 255, 0.3);
}

.footer-newsletter input:focus {
	border-color: #4b5efa;
}

.footer-subscribe-btn {
	width: 100%;
	padding: 13px;
	background: #4b5efa;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 0.95rem;
	font-weight: 700;
	cursor: pointer;
	font-family: "Manrope", sans-serif;
	transition:
		background 0.2s,
		transform 0.15s;
}

.footer-subscribe-btn:hover {
	background: #3a4de0;
	transform: translateY(-2px);
}

/* Footer contact bar */
.footer-contact-bar {
	display: flex;
	align-items: flex-start;
	justify-content: space-around;
	gap: 80px;
	padding: 40px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	flex-wrap: wrap;
}

.footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.contact-icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1.5px solid rgba(75, 94, 250, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #4b5efa;
	font-size: 1rem;
	flex-shrink: 0;
	margin-top: 2px;
}

.footer-contact-item h5 {
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	margin: 0 0 6px;
}

.footer-contact-item p {
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.88rem;
	line-height: 1.7;
	margin: 0;
}

/* Footer bottom bar */
.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 0;
	flex-wrap: wrap;
	gap: 12px;
}

.footer-bottom p {
	color: rgba(255, 255, 255, 0.4);
	font-size: 0.85rem;
	margin: 0;
}

.footer-bottom-links {
	display: flex;
	gap: 28px;
}

.footer-bottom-links a {
	color: rgba(255, 255, 255, 0.45);
	font-size: 0.85rem;
	text-decoration: none;
	transition: color 0.2s;
}

.footer-bottom-links a:hover {
	color: #fff;
}

@media (max-width: 1024px) {
	.footer-top {
		grid-template-columns: 1fr 1fr 1fr;
	}
	.footer-newsletter {
		grid-column: span 3;
		max-width: 400px;
	}
}

@media (max-width: 680px) {
	.footer {
		padding: 48px 24px 0;
	}
	.footer-top {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}
	.footer-newsletter {
		grid-column: span 2;
	}
	.footer-contact-bar {
		gap: 32px;
	}
	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}
	.footer-bottom-links {
		flex-wrap: wrap;
		gap: 12px 20px;
	}
	.footer-contact-item p {
		word-break: break-word;
		overflow-wrap: break-word;
	}
}

@media (max-width: 480px) {
	.footer-top {
		grid-template-columns: 1fr;
	}
	.footer-newsletter {
		grid-column: span 1;
	}
	.pricing-section {
		padding: 56px 16px 64px;
	}
	.footer-contact-bar {
		gap: 20px;
	}
	.download-section {
		padding-left: 20px;
		padding-right: 20px;
	}
}

/* ── Hamburger & Mobile Navigation ── */
.hidden-mobile {
	display: inline-block;
}
.hamburger-btn {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	background: rgba(255, 255, 255, 0.15);
	border: 1.5px solid rgba(255, 255, 255, 0.3);
	border-radius: 8px;
	cursor: pointer;
	width: 44px;
	height: 44px;
	flex-shrink: 0;
}
.hamburger-btn span {
	display: block;
	width: 20px;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.2s ease;
	pointer-events: none;
}
.hamburger-btn.active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.active span:nth-child(2) {
	opacity: 0;
}
.hamburger-btn.active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}
.mobile-nav {
	display: none;
	position: fixed;
	inset: 0;
	background: #4b5efa;
	z-index: 9999;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 80px 24px 48px;
}
.mobile-nav.open {
	display: flex;
	animation: mobileNavFadeIn 0.22s ease;
}
@keyframes mobileNavFadeIn {
	from { opacity: 0; transform: translateY(-8px); }
	to   { opacity: 1; transform: translateY(0); }
}
.mobile-nav-logo-area {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.mobile-nav-close-btn {
	background: rgba(255, 255, 255, 0.15);
	border: 1.5px solid rgba(255, 255, 255, 0.3);
	border-radius: 8px;
	color: #fff;
	cursor: pointer;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.mobile-nav a {
	display: block;
	width: 100%;
	max-width: 320px;
	text-align: center;
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	padding: 13px 24px;
	border-radius: 10px;
	transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}
.mobile-nav .mobile-nav-cta {
	background: #111;
	color: #fff !important;
	border-radius: 9999px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: 0.9rem !important;
	padding: 14px 44px !important;
	margin-top: 16px;
}

@media (max-width: 768px) {
	.hamburger-btn {
		display: flex;
	}
	.hidden-mobile {
		display: none !important;
	}
}
