/* Base styles */

/* Theme Variables */
:root {
	/* Typography */
	--font-family-primary: "Satoshi", sans-serif;
	--font-family-secondary: "Bagoss Extended TRIAL", sans-serif;

	/* Font Sizes */
	--text-xs: 12px;
	--text-sm: 14px;
	--text-base: 16px;
	--text-lg: 18px;
	--text-xl: 20px;
	--text-2xl: 24px;
	--text-3xl: 28px;
	--text-4xl: 32px;
	--text-5xl: 40px;
	--text-6xl: 48px;
	--text-7xl: 56px;
	--text-8xl: 72px;

	/* Font Weights */
	--font-light: 300;
	--font-regular: 400;
	--font-medium: 500;
	--font-semibold: 600;
	--font-bold: 700;

	/* Line Heights */
	--leading-none: 1;
	--leading-tight: 1.167;
	--leading-normal: 1.5;
	--leading-relaxed: 1.6;
	--leading-loose: 1.8;

	/* Letter Spacing */
	--tracking-tighter: -0.01em;
	--tracking-tight: -0.00735em;
	--tracking-normal: 0;
	--tracking-wide: 0.005em;
	--tracking-wider: 0.009375em;
	--tracking-widest: 0.0285em;

	/* Colors */
	--primary-color: #5700d1;
	--primary-light: rgba(87, 0, 209, 0.18);
	--primary-lighter: rgba(87, 0, 209, 0.25);
	--primary-dark: rgba(87, 0, 209, 0.6);

	--text-dark: rgba(18, 0, 42, 0.87);
	--text-medium: rgba(18, 0, 42, 0.6);
	--text-light: rgba(18, 0, 42, 0.56);

	--bg-light: #fefcff;
	--bg-card: #fcfafe;
	--bg-feature: #f3eefa;

	--border-color: rgba(87, 0, 209, 0.3);
	--border-light: rgba(0, 0, 0, 0.1);

	/* Shadows */
	--shadow-sm: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
	--shadow-md: 0px 8px 16px 0px rgba(0, 0, 0, 0.14),
		inset 0px -3px 5px 0px rgba(0, 0, 0, 0.1),
		inset 0px 5px 10px 0px rgba(255, 255, 255, 1);
	--shadow-lg: 0px 10px 20px 0px rgba(0, 0, 0, 0.16),
		inset 0px -3px 5px 0px rgba(0, 0, 0, 0.1),
		inset 0px 5px 10px 0px rgba(255, 255, 255, 1);
	--shadow-logo: 0px 1.5px 3.8px 0px rgba(0, 0, 0, 0.15),
		inset 0px 1.9px 7.6px 0px rgba(255, 255, 255, 1),
		inset 0px -1.9px 3.8px 0px rgba(0, 0, 0, 0.1);

	/* Border Radius */
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--radius-xl: 28px;
	--radius-2xl: 40px;

	/* Spacing */
	--space-1: 4px;
	--space-2: 8px;
	--space-3: 12px;
	--space-4: 16px;
	--space-5: 20px;
	--space-6: 24px;
	--space-8: 32px;
	--space-10: 40px;
	--space-12: 48px;
	--space-16: 64px;
	--space-20: 80px;
	--space-24: 96px;
	--space-32: 128px;

	/* Transitions */
	--transition-fast: 0.3s ease;
	--transition-normal: 0.4s ease;
	--transition-slow: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);

	/* Z-index */
	--z-base: 1;
	--z-above: 2;
	--z-modal: 1000;
	--z-fixed: 99;
}

/* Using fallback fonts as Bagoss Extended TRIAL is a premium font */
/* Satoshi will be loaded from Google Fonts */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: var(--font-family-primary);
	background-color: var(--bg-light);
	color: var(--text-dark);
	line-height: var(--leading-normal);
}

.container {
	max-width: 1440px;
	margin: 0px auto 0;
	padding: 0 80px;
	position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-family-primary);
	font-weight: var(--font-bold);
	color: var(--primary-color);
}

h1 {
	font-size: var(--text-8xl);
	line-height: var(--leading-tight);
}

h2 {
	font-size: var(--text-7xl);
	line-height: var(--leading-tight);
	letter-spacing: var(--tracking-tight);
	margin-bottom: var(--space-16);
}

h3 {
	font-size: var(--text-3xl);
	line-height: var(--leading-normal);
}

p {
	font-weight: var(--font-medium);
	font-size: var(--text-xl);
	line-height: var(--leading-relaxed);
	color: var(--text-dark);
}

button {
	cursor: pointer;
	border: none;
	outline: none;
	font-family: "Satoshi", sans-serif;
}

h1 {
	font-size: 72px;
}

.primary-button {
	background-color: var(--primary-color);
	color: white;
	font-weight: var(--font-medium);
	font-size: var(--text-lg);
	padding: var(--space-4) var(--space-8);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition-fast),
		box-shadow var(--transition-fast);
}

.primary-button:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

/* Button success/error states */
.primary-button.success {
	background-color: #48bb78;
	box-shadow: 0px 6px 12px rgba(72, 187, 120, 0.3);
}

.primary-button.error {
	background-color: #e53e3e;
	box-shadow: 0px 6px 12px rgba(229, 62, 62, 0.3);
}

/* Header */
header {
	width: 100%;
	height: auto;
}

.logo {
	width: 100%;
	height: 100%;
}

.hero {
	display: flex;
	justify-content: center;
	align-items: normal;
	position: relative;
	padding: 0 0 var(--space-32);
}

.hero-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: baseline;
	max-width: 60%;
	animation: fadeInLeft 1s ease;
}

.hero-content-text {
	max-width: 415px;
}

.hero-content-text h3 {
	font-family: var(--font-family-primary);
	font-size: var(--text-5xl);
	font-weight: var(--font-bold);
	letter-spacing: var(--tracking-tight);
	line-height: var(--leading-tight);
	margin-bottom: var(--space-6);
}

.hero-content-text p {
	font-family: var(--font-family-primary);
	font-size: var(--text-xl);
	font-weight: var(--font-regular);
	line-height: var(--leading-relaxed);
	color: var(--text-medium);
	margin-bottom: var(--space-6);
}

.hero-content-text .primary-button {
	margin-top: 16px;
}

.hero-content h3 {
	max-width: 415px;
	margin-bottom: var(--space-8);
	color: var(--primary-color);
	font-size: var(--text-6xl);
	line-height: var(--leading-none);
}

.hero-content p {
	max-width: 415px;
	font-family: var(--font-family-primary);
	margin-bottom: var(--space-4);
	font-size: var(--text-lg);
	font-weight: var(--font-medium);
	line-height: var(--leading-relaxed);
}

.hero-content p.hero-description {
	margin-top: 24px;
}

.hero-mockup {
	flex: 1;
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	animation: floatUpDown 6s ease-in-out infinite;
	max-width: 50%;
}

.phone-ui {
	position: relative;
	width: 90%;
	height: 700px;
	background-color: white;
	border-radius: 40px;
	overflow: hidden;
	z-index: 1;
	padding: 20px;
	display: flex;
	flex-direction: column;
}

.ui-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.menu-icon {
	display: flex;
	flex-direction: column;
	gap: 4px;
	width: 24px;
	height: 24px;
	justify-content: center;
}

.menu-line {
	width: 24px;
	height: 2px;
	background-color: var(--primary-color);
	border-radius: 2px;
}

.user-avatar {
	width: 36px;
	height: 36px;
	background-color: var(--primary-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	font-weight: 700;
	font-size: 16px;
}

.toggle-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	padding: 0 10px;
}

.toggle-container span {
	font-size: 14px;
	color: var(--text-dark);
}

.toggle-switch {
	width: 40px;
	height: 20px;
	background-color: var(--primary-color);
	border-radius: 10px;
	position: relative;
}

.toggle-knob {
	position: absolute;
	right: 2px;
	top: 2px;
	width: 16px;
	height: 16px;
	background-color: white;
	border-radius: 50%;
}

.chat-container {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 15px;
	overflow-y: auto;
}

.chat-bubble {
	max-width: 80%;
	padding: var(--space-3) var(--space-4);
	border-radius: var(--radius-lg);
	font-size: var(--text-sm);
	line-height: var(--leading-normal);
}

.chat-bubble.user {
	align-self: flex-end;
	background-color: var(--bg-feature);
	color: var(--text-dark);
	border-bottom-right-radius: var(--radius-sm);
}

.ai-response {
	display: flex;
	flex-direction: column;
	gap: 5px;
	max-width: 80%;
}

.ai-header {
	display: flex;
	align-items: center;
	gap: var(--space-2);
	font-size: var(--text-xs);
	color: var(--text-medium);
	padding-left: var(--space-3);
}

.ai-icon {
	width: 20px;
	height: 20px;
	border-radius: 50%;
}

.ai-bubble {
	background-color: white;
	border: 1px solid var(--border-light);
	color: var(--text-dark);
	padding: var(--space-3) var(--space-4);
	border-radius: var(--radius-lg);
	border-top-left-radius: var(--radius-sm);
	font-size: var(--text-sm);
	line-height: var(--leading-normal);
}

.ai-actions {
	display: flex;
	gap: 15px;
	padding-left: 10px;
}

.ai-action-icon {
	font-size: 16px;
	color: var(--text-light);
	cursor: pointer;
}

.suggestions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 10px 0;
}

.suggestion {
	background-color: white;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	padding: 10px 15px;
	font-size: 14px;
	display: flex;
	align-items: center;
	color: var(--text-dark);
}

.credits {
	margin-left: auto;
	color: var(--text-medium);
	font-size: 12px;
	margin-right: 8px;
}

.add-icon {
	color: var(--primary-color);
	font-weight: bold;
	font-size: 18px;
}

.dropdown {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	font-size: 14px;
	color: var(--text-medium);
}

.dropdown-arrow {
	font-size: 12px;
}

.expected-cost {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
	color: var(--text-medium);
	padding: 5px 0;
}

.info-icon {
	font-size: 14px;
	color: var(--text-light);
}

.chat-input {
	margin-top: auto;
	background-color: white;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	padding: 12px 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.chat-input span {
	font-size: 14px;
	color: var(--text-dark);
}

.input-actions {
	display: flex;
	gap: 15px;
}

.input-action-icon {
	font-size: 16px;
	color: var(--text-medium);
	cursor: pointer;
}

.input-action-icon.send {
	color: var(--primary-color);
}

.iphone-frame {
	position: absolute;
	max-width: 110%;
	height: auto;
	z-index: 2;
	transform: translateY(-150px);
}

/* Features Section */
.features {
	padding: 200px 0 80px;
	display: flex;
	justify-content: space-between;
	gap: 40px;
}

.feature-cards {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
	max-width: 520px;
	margin-left: auto;
	margin-top: 100px;
}

.feature-card {
	background-color: white;
	color: var(--primary-color);
	border-radius: var(--radius-xl);
	padding: var(--space-6) var(--space-8);
	box-shadow: var(--shadow-lg);
	display: flex;
	flex-direction: column;
	cursor: pointer;
	transition: all var(--transition-fast);
	overflow: hidden;
	position: relative;
}

.feature-card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0;
	width: 100%;
}

.feature-card-header-text {
	width: 70%;
}

.feature-card-header h3 {
	margin-bottom: 0;
	font-family: var(--font-family-primary);
	font-weight: var(--font-semibold);
	font-size: var(--text-lg);
	line-height: var(--leading-normal);
	color: var(--primary-color);
}

.chevron {
	font-size: 48px;
	width: 12px;
	height: 20px;
	color: rgba(87, 0, 209, 0.6);
	transform: rotate(90deg);
	transition: transform 0.3s ease;
	display: inline-block;
	line-height: 1;
	position: absolute;
	top: var(--space-6);
	right: var(--space-8);
	padding: 8px;
	box-sizing: content-box;
}

.feature-card-content {
	max-height: 0;
	opacity: 0;
	transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
	overflow: hidden;
	font-family: "Satoshi", sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.6em;
	color: rgba(18, 0, 42, 0.87);
	letter-spacing: -1%;
	padding: 0;
}

.feature-card.active {
	background-color: white;
}

.feature-card.active .chevron {
	transform: rotate(270deg);
}

.feature-card.active .feature-card-content {
	max-height: 300px;
	opacity: 1;
	padding-top: 16px;
}

/* Preserve hover styles only for non-active cards */
.feature-card:not(.active):hover {
	transform: translateY(-5px);
	box-shadow: 0px 20px 40px rgba(87, 0, 209, 0.15);
	background-color: white;
	border-color: var(--border-color);
}

.feature-card:not(.active):hover h3 {
	color: var(--primary-color);
}

.feature-card:not(.active):hover .chevron {
	color: rgba(87, 0, 209, 0.6);
}

/* Feature Boxes Section */
.feature-boxes {
	padding: 40px 0 80px;
	text-align: center;
}

.feature-boxes-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	max-width: 995px;
	margin: 0 auto;
	justify-items: center;
}

.feature-box {
	background-color: var(--primary-light);
	font-family: var(--font-family-primary);
	color: #fff;
	border-radius: var(--radius-xl);
	padding: var(--space-4) var(--space-5);
	font-weight: var(--font-semibold);
	font-size: var(--text-base);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform var(--transition-slow),
		box-shadow var(--transition-fast), opacity var(--transition-slow);
	height: 53px;
	min-width: 192px;
	margin: 0 auto;
	will-change: transform, opacity;
	box-shadow: 0 0 0 var(--primary-lighter);
}

.feature-box-lg {
	background-color: var(--primary-light);
	font-family: var(--font-family-primary);
	color: #fff;
	border-radius: var(--radius-xl);
	padding: var(--space-4) var(--space-5);
	font-weight: var(--font-semibold);
	font-size: var(--text-base);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform var(--transition-slow),
		box-shadow var(--transition-fast), opacity var(--transition-slow);
	height: 53px;
	min-width: 256px;
	margin: 0 auto;
	will-change: transform, opacity;
	box-shadow: 0 0 0 var(--primary-lighter);
}

.feature-box:hover,
.feature-box-lg:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: var(--shadow-lg);
	background-color: var(--primary-lighter);
}

/* AI Partners Section */
.ai-partners {
	padding: 100px 0;
	text-align: center;
	overflow: hidden;
	width: 100vw;
	margin-left: calc(-50vw + 50%);
	position: relative;
}

.ai-partners h2 {
	margin-bottom: 80px;
	text-align: center;
	padding: 0 80px;
}

.logo-container {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.logo-scroll {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.logo-row {
	display: flex;
	gap: 40px;
	animation-duration: 25s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	width: fit-content;
}

.logo-row:nth-child(1) {
	animation-name: scrollLeft;
}

.logo-row:nth-child(2) {
	animation-name: scrollRight;
}

.logo-row:nth-child(3) {
	animation-name: scrollLeft;
}

.logo-item {
	flex: 0 0 auto;
	width: 80px;
	height: 80px;
	border-radius: 19px;
	background-color: var(--bg-card);
	box-shadow: var(--shadow-logo);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
}

.logo-item img {
	max-width: 80%;
	max-height: 80%;
	object-fit: contain;
}

/* Dashboard Section */
.dashboard-section {
	padding: 100px 0;
}

.dashboard-content {
	display: flex;
	align-items: flex-start;
	gap: 80px;
	flex-direction: row;
}

.dashboard-mockup {
	max-width: 70%;
	height: auto;
	border-radius: var(--radius-xl);
	animation: fadeInUp 1s ease;
}

.cta-content {
	flex: 1;
}

.cta-content h2 {
	margin-bottom: 30px;
	font-size: 32px;
	line-height: 124%;
	letter-spacing: 0.25px;
	text-align: left;
}

.cta-content p {
	margin-bottom: 40px;
	font-size: 18px;
	line-height: 160%;
	font-weight: 500;
	text-align: left;
}

/* Calculator Section */
.calculator-section {
	padding: 120px 0 60px;
	margin-bottom: 240px;
}

.calculator-container {
	max-width: 900px;
	margin: 0 auto;
	background-color: #fcfafe;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-md);
	padding: 64px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.calculator-container:hover {
	transform: translateY(-5px);
	box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.15);
}

.calculator-container h3 {
	font-size: 34px;
	line-height: 1.235em;
	letter-spacing: 0.735%;
	color: var(--primary-color);
	font-weight: 700;
	margin: 0;
}

.calculate-button-link {
	display: block;
	text-decoration: none;
}

.calculate-button {
	padding: 8px 22px;
	font-size: 18px;
	line-height: 1.944em;
	letter-spacing: 0.5%;
	margin: 0;
	text-align: center;
	border-radius: 16px;
	box-shadow: var(--shadow-sm);
	white-space: nowrap;
}

/* FAQ Section */
.faq-section {
	padding: 60px 0 100px;
	text-align: center;
}

.faq-section h2 {
	text-align: center;
	margin-bottom: 40px;
}

.faq-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	gap: 40px;
}

.faq-column {
	flex: 1;
	display: flex;
	flex-direction: column;
	max-width: 560px;
}

.faq-item {
	text-align: left;
	padding: 32px 0;
	margin: 0;
}

.faq-item:first-child {
	padding-top: 0;
}

.faq-divider {
	height: 2px;
	background-color: rgba(18, 0, 42, 0.12);
	width: 100%;
	margin: 0;
}

.faq-column > div:last-child {
	display: none;
}

.faq-question {
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: left;
}

.faq-question h3 {
	font-family: "Satoshi", sans-serif;
	font-weight: 700;
	font-size: 17px;
	line-height: 1.5em;
	color: rgba(18, 0, 42, 0.87);
	text-align: left;
	margin: 0;
}

.faq-chevron {
	font-size: 48px;
	width: 12px;
	height: 20px;
	color: rgba(87, 0, 209, 0.6);
	transform: rotate(90deg);
	transition: transform 0.3s ease;
	display: inline-block;
	line-height: 1;
	padding: 8px;
	box-sizing: content-box;
}

.faq-item.active .faq-chevron {
	transform: rotate(270deg);
}

.faq-answer {
	padding: 16px 0 0;
	display: none;
	text-align: left;
}

.faq-item.active .faq-answer {
	display: block;
	animation: fadeIn 0.5s ease;
}

.faq-answer ul {
	list-style-type: none;
	padding-left: 5px;
	margin: 10px 0;
}

.faq-answer li {
	position: relative;
	font-family: "Satoshi", sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 8px;
	padding-left: 15px;
}

.faq-answer li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: var(--primary-color);
}

.faq-answer p {
	font-size: var(--text-base);
	line-height: var(--leading-relaxed);
	margin-bottom: 10px;
	color: var(--text-medium);
	font-weight: var(--font-regular);
}

.faq-support {
	font-family: "Satoshi", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5em;
	letter-spacing: 0.9375%;
	color: rgba(18, 0, 42, 0.6);
	margin-top: 24px;
	text-align: center;
}

/* Early Access Section */
.early-access {
	padding: 120px 0;
	text-align: center;
}

.early-access h2 {
	margin-bottom: 40px;
	font-size: 48px;
}

.email-form {
	max-width: 500px;
	margin: 0 auto;
}

.input-container {
	position: relative;
	margin-bottom: 20px;
}

.input-container label {
	position: absolute;
	top: -10px;
	left: 12px;
	background-color: white;
	padding: 0 4px;
	font-size: 16px;
	color: var(--text-medium);
}

.input-container input {
	width: 100%;
	padding: var(--space-5) var(--space-4);
	border: 2px solid var(--border-color);
	border-radius: var(--radius-md);
	font-family: var(--font-family-primary);
	font-size: var(--text-lg);
}

.terms {
	font-size: 16px;
	line-height: 1.6;
	color: rgba(18, 0, 42, 0.87);
	margin-bottom: var(--space-8);
	text-align: left;
	font-weight: var(--font-regular);
}

.join-button {
	width: 100%;
	padding: var(--space-4);
	font-size: var(--text-xl);
}

/* Footer */
footer {
	padding: 80px 0 40px;
	width: 100%;
}

.footer-content {
	display: flex;
	flex-direction: column;
	gap: 60px;
	width: 100%;
}

.footer-main {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.social-links {
	display: flex;
	gap: 24px;
}

.social-link {
	display: flex;
	justify-content: center;
	align-items: center;
	transition: transform 0.3s ease;
}

.social-link:hover {
	transform: translateY(-3px);
}

.social-icon {
	width: 28px;
	height: 28px;
	fill: var(--text-light);
}

.legal-links {
	font-weight: var(--font-light);
	font-size: var(--text-base);
	line-height: var(--leading-relaxed);
	letter-spacing: var(--tracking-tighter);
	color: var(--text-medium);
}

.legal-links a {
	color: var(--text-medium);
	text-decoration: none;
	transition: color 0.3s ease;
}

.legal-links a:hover {
	color: var(--primary-color);
	text-decoration: underline;
}

.copyright p {
	font-weight: var(--font-light);
	font-size: var(--text-base);
	line-height: var(--leading-relaxed);
	letter-spacing: var(--tracking-tighter);
	color: var(--text-medium);
	text-align: center;
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

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

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

@keyframes scrollLeft {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

@keyframes scrollRight {
	0% {
		transform: translateX(-50%);
	}
	100% {
		transform: translateX(0);
	}
}

/* Element animation classes */
.animate {
	animation: fadeInUp 0.8s ease forwards;
}

.animate-delay-100 {
	animation-delay: 0.1s;
}

.animate-delay-200 {
	animation-delay: 0.2s;
}

.animate-delay-300 {
	animation-delay: 0.3s;
}

/* Responsive Styles */
@media (min-width: 769px) {
	.mobile-only {
		display: none !important;
	}
}

@media (max-width: 1200px) {
	.container {
		padding: 0 40px;
	}
}

@media (max-width: 992px) {
	.hero {
		flex-direction: column;
		padding: 40px 0;
		align-items: center;
	}

	.hero-content {
		text-align: center;
		max-width: 100%;
		padding-right: 0;
		align-items: center;
	}

	.hero-content-text {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.hero-mockup {
		max-width: 80%;
		margin-top: 60px;
	}

	.features {
		justify-content: center;
		padding: 40px 0;
	}

	.feature-cards {
		margin-left: 0;
		margin-top: 40px;
		width: 100%;
	}

	.feature-boxes-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.selector-row {
		flex-direction: column;
	}

	.dashboard-content {
		flex-direction: column;
		align-items: center;
	}

	.dashboard-mockup {
		max-width: 80%;
		margin-bottom: 40px;
	}

	.cta-content {
		text-align: center;
		max-width: 100%;
	}

	.faq-container {
		flex-direction: column;
		align-items: center;
		gap: 24px;
	}

	.faq-column {
		max-width: 100%;
		width: 100%;
	}

	.faq-item {
		padding: 24px 0;
	}

	.faq-question h3 {
		font-size: 17px;
	}

	.faq-support {
		font-size: 14px;
		padding: 0 20px;
	}

	.footer-main {
		flex-direction: column;
		gap: 30px;
	}
}

@media (max-width: 768px) {
	h1 {
		font-size: 40px;
	}

	h2 {
		font-size: 32px;
	}

	.hero-content p {
		font-size: 16px;
		margin-bottom: 24px;
	}

	.hero-mockup {
		max-width: 100%;
	}

	.iphone-frame {
		max-width: 100%;
		position: relative;
	}

	.features {
		padding: 200px 0 200px;
	}

	.feature-cards {
		max-width: 100%;
	}

	.feature-card {
		padding: 16px 24px;
	}

	.feature-card h3 {
		font-size: 16px;
	}

	.feature-boxes-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.feature-box,
	.feature-box-lg {
		width: 100%;
		max-width: 280px;
	}

	.dashboard-section {
		padding: 200px 0;
	}

	.dashboard-content {
		gap: 30px;
	}

	.dashboard-content .cta-content {
		order: 1;
	}

	.dashboard-mockup {
		max-width: 100%;
		content: url("../images/mobile-laptop.png");
		order: 0;
	}

	.cta-content h2 {
		font-size: 24px;
		margin-bottom: 16px;
	}

	.cta-content p {
		font-size: 16px;
		margin-bottom: 24px;
	}

	.calculator-container {
		flex-direction: column;
		padding: 40px 30px;
		gap: 30px;
		text-align: center;
	}

	.calculator-container h3 {
		font-size: 28px;
	}

	.checkbox-row {
		flex-direction: column;
	}

	.checkbox-item {
		width: 100%;
	}

	.desktop-only {
		display: none !important;
	}

	.mobile-only {
		display: block !important;
	}

	.features.mobile-only {
		padding: 0 0 100px;
		justify-content: center;
		width: 100%;
	}

	.features.mobile-only .feature-cards {
		margin: 0;
		max-width: 100%;
		width: 100%;
	}

	.feature-boxes {
		padding: 200px 0 0;
	}

	.hero-content .features {
		display: none !important;
	}

	.faq-item {
		padding: 20px 0;
	}

	.faq-question h3 {
		font-size: 17px;
	}

	.faq-support {
		font-size: 14px;
		padding: 0 20px;
	}

	.early-access {
		padding: 200px 0;
	}
}

@media (max-width: 576px) {
	.container {
		padding: 0 20px;
		margin-top: 60px;
	}

	h1 {
		font-size: 34px;
	}

	h2 {
		font-size: 28px;
		margin-bottom: 30px;
	}

	.primary-button {
		font-size: 16px;
		padding: 12px 24px;
	}

	.hero {
		padding: 20px 0 40px;
	}

	.feature-card {
		padding: 16px 20px;
	}

	.feature-card h3 {
		font-size: 15px;
		line-height: 1.35;
	}

	.ai-partners {
		padding: 40px 0;
	}

	.ai-partners h2 {
		margin-bottom: 40px;
		padding: 0 20px;
	}

	.logo-item {
		width: 60px;
		height: 60px;
	}

	.calculator-container {
		padding: 30px 20px;
		gap: 24px;
	}

	.calculator-container h3 {
		font-size: 24px;
	}

	.calculate-button {
		padding: 8px 16px;
		font-size: 16px;
	}

	.faq-item {
		padding: 16px 0;
	}

	.faq-question h3 {
		font-size: 16px;
	}

	.early-access {
		padding: 200px 0;
	}
}

/* Success Modal Styles */
.success-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: var(--z-modal);
}

.success-modal.active {
	display: flex;
	animation: fadeIn 0.3s ease-in-out;
}

.success-modal-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(5px);
}

.success-modal-container {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.success-modal-content {
	background-color: white;
	border-radius: 16px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
	padding: 40px;
	width: 90%;
	max-width: 500px;
	text-align: center;
	position: relative;
	transform: translateY(20px);
	opacity: 0;
	animation: slideUp 0.4s ease-out 0.1s forwards;
}

.success-modal-icon {
	margin-bottom: 20px;
}

.success-modal-content h2 {
	margin-bottom: 15px;
	color: var(--primary-color);
}

.success-modal-content p {
	margin-bottom: 30px;
	color: var(--text-color);
	line-height: 1.5;
}

#close-success-modal {
	min-width: 120px;
}

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