/* ==========================
   GLOBAL STYLES
   ========================== */
.tfBodyBg > .container {width:100%;padding:0;margin:0;}
.tfPageContainer {padding:0;}

/* ==========================
   BUTTON SYSTEM - From Figma
   ========================== */

/* Base Button Styles */
.btn-tf {
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0.25px;
	text-transform: uppercase;
	border: none;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
}

/* Button Sizes */
.btn-tf-large {
	height: 56px;
	padding: 0 24px;
	min-width: 200px;
}

.btn-tf-medium {
	height: 48px;
	padding: 0 20px;
	min-width: 160px;
}

.btn-tf-small {
	height: 32px;
	padding: 0 16px;
	min-width: 100px;
}

/* Primary Button (Purple) */
.btn-tf-primary {
	background: #8a0fc2;
	color: white;
}

.btn-tf-primary:hover {
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), #8a0fc2;
}

.btn-tf-primary:focus {
	outline: none;
	box-shadow: 0 0 0 4px rgba(138, 15, 194, 0.3);
}

.btn-tf-primary:disabled {
	background: #e6e7f3;
	color: #91929d;
	cursor: not-allowed;
}

/* Primary ALT Button (Dark Purple) */
.btn-tf-primary-alt {
	background: #220931;
	color: white;
}

.btn-tf-primary-alt:hover {
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%), #220931;
}

.btn-tf-primary-alt:focus {
	outline: none;
	box-shadow: 0 0 0 4px rgba(138, 15, 194, 0.3);
}

.btn-tf-primary-alt:disabled {
	background: #e6e7f3;
	color: #91929d;
	cursor: not-allowed;
}

/* ==========================
   FORM SYSTEM
   ========================== */

.form-group {
	margin-bottom: 32px;
}

.form-input {
	position: relative;
	width: 100%;
}

.form-input input {
	width: 100%;
	height: 56px;
	padding: 16px 50px 16px 16px;
	border: 1px solid #9b93af;
	border-radius: 12px;
	font-size: 16px;
	line-height: 24px;
	color: #000000;
	background-color: white;
	transition: all 0.2s ease;
}
.form-input .input-icon {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 18px;
	color: #696a74;
}

.form-input .error-icon {
	color: #da1a1a;
}


.form-input input:focus {
	outline: none;
	border: 2px solid #8a0fc2;
}

.form-input input::placeholder {
	color: #91929d;
}

.form-input label {
	position: absolute;
	left: 12px;
	top: -8px;
	background-color: white;
	padding: 0 4px;
	font-size: 12px;
	line-height: 16px;
	font-weight: 500;
	color: #696a74;
	pointer-events: none;
	transition: all 0.2s ease;
}

.form-input.is-focused label {
	color: #8a0fc2;
}

/* Field Error State */
.form-input.has-error input {
	border: 2px solid #da1a1a !important;
}

.form-input.has-error label {
	color: #da1a1a !important;
}

.field-error {
	margin-top: 8px;
	color: #da1a1a;
	font-size: 12px;
	line-height: 16px;
}

.field-error .inline-login-link {
	color: #da1a1a;
	text-decoration: underline;
	margin-left: 8px;
}

/* Form Validation */
.form-validation {
	margin-top: 8px;
}

.validation-item {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 4px;
	font-size: 12px;
	line-height: 16px;
	color: #696a74;
}

.validation-item i {
	font-size: 12px;
	color: #9b93af;
}

.validation-item.valid i {
	color: #2e7d32;
}

.password-toggle {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: #9b93af;
	font-size: 20px;
	cursor: pointer;
	padding: 0;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Checkbox */
.checkbox-label {
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	font-size: 16px;
	line-height: 24px;
	color: #000000;
	margin: 0;
}

.checkbox-label i {
	font-size: 20px;
	color: #9b93af;
}

/* ==========================
   PRICING CARDS
   ========================== */

.pricing-cards-container {
	display: flex;
	gap: 20px;
	margin-bottom: 40px;
	justify-content: center;
}

.pricing-cards-stacked {
	flex-direction: column;
	align-items: center;
	max-width: 400px;
	margin: 20px auto;
}

.pricing-cards-stacked .pricing-card {
	width: 100%;
	max-width: 350px;
}

/* Section Context Styling */
.pricing-card-section {
	background-color: #F7F8FF !important;
}

.pricing-card-inactive {
	border: 1px solid #9B93AF !important;
}

.pricing-card {
	position: relative;
	background: white;
	border-radius: 12px;
	padding: 24px;
	flex: 1;
	max-width: 368px;
	cursor: pointer;
	border: 3px solid transparent;
	display: flex;
	align-items: center;
	justify-content: space-between;
}


.pricing-card.selected {
	border-color: #ff6600;
}

.pricing-badge {
	position: absolute;
	top: -12px;
	left: 2px;
	background: #ff6600;
	color: white;
	padding: 4px 12px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 600;
}

.pricing-card-header h3 {
	margin: 0 0 8px 0;
	font-size: 18px;
	font-weight: 600;
	color: #333;
}

.pricing-amount {
	font-size: 22px;
	font-weight: 700;
	color: #333;
	margin-bottom: 4px;
}

.pricing-amount small {
	font-size: 16px;font-weight:normal;
	color: #595959;
}

.pricing-original {
	color: #595959;
	text-decoration: line-through;
	margin-right: 8px;
	font-size: 22px;
}

.pricing-subtext {
	font-size: 14px;
	color: #666;
}

.pricing-checkbox {
	font-size: 24px;
	color: #ff6600;
}

.pricing-checkbox .fa-square {
	color: #ccc;
}

/* ==========================
   PRICING PAGE STYLES
   ========================== */

.pricing-hero {
	position: relative;
	min-height: 600px;
	background-image: url('https://image-cdn.production.tfs.services/images/tf/all-access/hero.jpg');
	background-size: cover;
	background-position: center center;
	display: flex;
	align-items: center;
}

.pricing-hero-overlay {
	position: relative;
	width: 100%;
	min-height: 600px;
	background: rgba(0, 0, 0, 0.4);
	padding: 60px 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pricing-hero-content {
	width: 100%;
}

.pricing-hero-title {
	color: white;
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 10px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.pricing-hero-subtitle {
	color: white;
	font-size: 24px;
	margin-bottom: 40px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Stats Section */
.stats-section {
	padding: 60px 15px;
	background-color: white;
	overflow-x: hidden;
}

.stats-section .row {
}

.stat-card {
	background: #482f64;
	border-radius: 12px;
	padding: 24px 16px;
	text-align: center;
	margin-bottom: 24px;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transform: scale(1);
}

.stat-card:hover {
	transform: scale(1.02);
	box-shadow: 0 8px 25px rgba(72, 47, 100, 0.3);
}

.stat-icon {
	color: #9b93af;
	font-size: 24px;
	margin-bottom: 8px;
}

.stat-number {
	color: white;
	font-size: 32px;
	font-weight: bold;
	line-height: 40px;
	margin-bottom: 2px;
}

.stat-label {
	color: white;
	font-size: 14px;
	letter-spacing: 0.25px;
	line-height: 20px;
}

/* Mobile Stats Carousel */
.stats-carousel-mobile {
	display: none;
}

/* Force mobile carousel to show on mobile devices */
@media screen and (max-width: 991px) {
	.stats-carousel-mobile {
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
	}
	
	.stats-section .row {
		display: none !important;
		visibility: hidden !important;
	}
	
	.stats-section .col-sm-4 {
		display: none !important;
		visibility: hidden !important;
	}
}

.stats-carousel-container {
	position: relative;
	max-width: 300px;
	margin: 0 auto;
}

.stats-carousel-track {
	display: flex;
	overflow: hidden;
	border-radius: 12px;
	width: 500%; /* 5 items * 100% each (3 original + 2 clones) */
	gap: 20px; /* Add gap between carousel items */
	cursor: grab;
	user-select: none;
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stats-carousel-track:active {
	cursor: grabbing;
}

.stats-carousel-track .stat-card {
	flex: 0 0 calc(20% - 16px); /* Each card takes 1/5 minus gap compensation */
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	margin-bottom: 0;
}

.stats-carousel-controls {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
}


.stats-carousel-dots {
	display: flex;
	gap: 8px;
}

.stats-carousel-dots .dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #9b93af;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transform: scale(1);
}

.stats-carousel-dots .dot:hover {
	background: #7a6b8a;
	transform: scale(1.2);
}

.stats-carousel-dots .dot.active {
	background: #482f64;
	transform: scale(1.3);
}

/* Quote Section */
.quote-section {
	background-color: #e6e7f3;
	padding: 60px 15px;
	text-align: center;
}

.quote-content {
}

.quote-text {
	font-size: 32px;
	line-height: 40px;
	color: #666;
	margin-bottom: 20px;
	font-weight: 400;
}

.quote-mark {
	color: #ff6600;
	font-weight: bold;
}

.quote-logo {
	display: inline-block;
	max-width: 130px;
	height: auto;
}

/* What's Included Section */
.included-section {
	padding: 80px 15px;
	background-color: white;
}

.included-title {
	font-size: 32px;
	font-weight: 700;
	color: #171821;
	margin-bottom: 30px;
	line-height: 40px;
}

.included-list {
	display: flex;
	flex-direction: column;
}

.included-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 0;
	border-bottom: 1px solid #9b93af;
}

.included-item:last-child {
	border-bottom: none;
}

.included-icon {
	color: #e64d03;
	font-size: 20px;
	flex-shrink: 0;
	width: 48px;
	text-align: center;
}

.included-text {
	font-size: 16px;
	font-weight: 600;
	color: #171821;
	letter-spacing: 0.15px;
	line-height: 24px;
}

.included-image {
	width: 100%;
	height: auto;
	border-radius: 12px;
}

/* Testimonials Carousel Section */
.testimonials-section {
	background-color: #ff9500;
	padding: 80px 15px;
	position: relative;
	overflow: hidden;
}

.testimonials-content {
}

.testimonials-title {
	font-size: 32px;
	font-weight: 700;
	color: #171821;
	text-align: center;
	margin-bottom: 40px;
	line-height: 40px;
}

.testimonials-controls {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-top: 40px;
}

.testimonials-arrow {
	background-color: #220931;
	border: none;
	border-radius: 24px;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.testimonials-arrow:hover:not(:disabled) {
	background-color: #3a1550;
	transform: scale(1.1);
}

.testimonials-arrow:disabled {
	opacity: 0.6;
}

.testimonials-carousel-wrapper {
	overflow: hidden;
	width: 100%;
}

.testimonials-carousel {
	display: flex;
	gap: 24px;
}

.testimonial-card {
	background: white;
	border: 1px solid #d3d6df;
	border-radius: 12px;
	padding: 16px;
	flex: 0 0 calc(33.333% - 16px);
	min-width: calc(33.333% - 16px);
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.testimonial-message {
	font-size: 14px;
	line-height: 20px;
	color: #171821;
	letter-spacing: 0.25px;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.testimonial-avatar {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	object-fit: cover;
}

.testimonial-details {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.testimonial-name {
	font-size: 12px;
	font-weight: 600;
	color: #171821;
	letter-spacing: 0.5px;
	line-height: 16px;
}

.testimonial-meta {
	font-size: 12px;
	color: #696a74;
	letter-spacing: 0.25px;
	line-height: 16px;
}

/* How Trial Works Section */
.trial-works-section {
	background-color: white;
	padding: 80px 15px;
}

.trial-works-title {
	font-size: 32px;
	font-weight: 700;
	color: #171821;
	text-align: center;
	margin-bottom: 60px;
	line-height: 40px;
}

.trial-timeline {
	max-width: 600px;
	margin: 0 auto 60px auto;
	position: relative;
}

.trial-timeline-item {
	display: flex;
	gap: 24px;
	position: relative;
	padding-bottom: 32px;
}

.trial-timeline-item:not(:last-child)::after {
	content: '';
	position: absolute;
	left: 24px;
	top: 48px;
	width: 8px;
	height: calc(100% - 16px);
	background-color: #d3d6df;
	transform: translateX(-50%);
}

.trial-timeline-icon {
	background-color: #482f64;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 20px;
	flex-shrink: 0;
	z-index: 1;
}

.trial-timeline-content {
	flex-grow: 1;
	padding-top: 4px;
}

.trial-timeline-day {
	font-size: 24px;
	font-weight: 600;
	color: #171821;
	margin: 0 0 4px 0;
	line-height: 24px;
}

.trial-timeline-text {
	font-size: 16px;
	line-height: 20px;
	color: #171821;
	margin: 0;
}

/* FAQ Section */
.faq-section {
	background-color: #e6e7f3;
	padding: 56px 15px 80px;
}

.faq-content {
	max-width: 1152px;
	margin: 0 auto;
}

.faq-title {
	font-size: 32px;
	font-weight: 700;
	color: #171821;
	text-align: center;
	margin-bottom: 56px;
	line-height: 40px;
}

.faq-list {
	display: flex;
	flex-direction: column;
}

.faq-item {
	border-bottom: 1px solid #9b93af;
}

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 0;
	min-height: 80px;
	cursor: pointer;
	gap: 24px;
}

.faq-question-text {
	font-size: 24px;
	font-weight: 600;
	color: #171821;
	line-height: 32px;
	margin: 0;
	flex-grow: 1;
}

.faq-toggle-btn {
	background-color: #220931;
	border: none;
	border-radius: 24px;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 20px;
	cursor: pointer;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.faq-toggle-btn.active {
	background-color: #8a0fc2;
}

.faq-toggle-btn:hover {
	transform: scale(1.1);
}

.faq-answer {
	padding: 0 24px 24px 24px;
	border-bottom: 1px solid #91a4ba;
	font-size: 16px;
	line-height: 24px;
	color: #171821;
	letter-spacing: 0.5px;
}

.faq-answer p {
	font-size: 16px;
	line-height: 24px;
	color: #171821;
	letter-spacing: 0.5px;
	margin: 0;
}

/* ==========================
   CHECKOUT PAGE STYLES
   ========================== */

/* Checkout Hero Section */
.checkout-hero {
	background-color: white;
	padding: 80px 0 40px;
}

.checkout-title {
	font-size: 32px;
	font-weight: 700;
	line-height: 40px;
	color: #131313;
	margin: 0 0 8px 0;
}

.checkout-title .text-green {
	color: #2e7d32;
}

.checkout-subtitle {
	font-size: 16px;
	line-height: 24px;
	color: #000000;
	margin: 0;
}

/* Checkout Content */
.checkout-content {
	background-color: white;
	padding: 40px 0 80px;
}

.checkout-section-title {
	font-size: 24px;
	font-weight: 600;
	line-height: 32px;
	color: #171821;
	margin: 0 0 24px 0;
}

/* Payment Methods */
.payment-methods {
	display: flex;
	gap: 8px;
	margin-bottom: 32px;
}

.payment-method-icon {
	width: 34px;
	height: 24px;
	border-radius: 4px;
	background-repeat: no-repeat;
	background-position: center;
	border: 1px solid #d9d9d9;
	background-color: white;
	flex-shrink: 0;
}

.payment-method-icon.visa {
	background-image: url('http://localhost:3845/assets/12d5212cd4b2a6f37b2f0e6155a5dee710c116f7.svg');
	background-size: 24px 8px;
}

.payment-method-icon.mastercard {
	background-image: url('http://localhost:3845/assets/96812e4a8bc672a41b61860100c8caf8604c0259.svg');
	background-size: 22px 13px;
}

.payment-method-icon.amex {
	background-image: url('http://localhost:3845/assets/455c7026b299f4ec7231bc2cf8c88ca1344c85b8.svg');
	background-color: #1f72cd;
	border: none;
	background-size: 28px 7px;
}

.payment-method-icon.discover {
	position: relative;
	background-image: none;
}

.discover-text {
	position: absolute;
	left: 3px;
	top: 9px;
	height: 5px;
	width: 11px;
}

.discover-o {
	position: absolute;
	left: 15.5px;
	top: 9px;
	height: 5px;
	width: 2px;
}

.discover-stripe {
	position: absolute;
	right: 1px;
	bottom: 1px;
	height: 5.75px;
	width: 19px;
	max-width: 19px;
}

/* Payment Form */
.payment-form {
	max-width: 736px;
}

/* Submit Button */
.btn-checkout {
	width: 100%;
	max-width: 356px;
	height: 56px;
	background-color: #8a0fc2;
	color: white;
	border: none;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.25px;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-bottom: 40px;
}

.btn-checkout:hover:not(:disabled) {
	background-color: #7a0da8;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(138, 15, 194, 0.3);
}

.btn-checkout:disabled {
	background-color: #e6e5eb;
	color: #91929d;
	cursor: not-allowed;
}

/* Trust Badges */
.trust-badges {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}

.trust-badge {
	height: 48px;
	width: auto;
}

/* How Trial Works Section */
.trial-works {
	background-color: #e6e7f3;
	padding: 80px 0;
}

.trial-works-title {
	font-size: 32px;
	font-weight: 700;
	line-height: 40px;
	color: #131313;
	margin: 0 0 60px 0;
}

.trial-timeline {
	max-width: 600px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.timeline-item {
	display: flex;
	gap: 32px;
	position: relative;
}

.timeline-icon {
	width: 48px;
	height: 48px;
	background-color: #482f64;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 20px;
	flex-shrink: 0;
	z-index: 1;
}

.timeline-connector {
	position: absolute;
	left: 24px;
	top: 48px;
	width: 8px;
	height: 88px;
	background: linear-gradient(to bottom, #FF9500 0%, #E64D03 100%);
	transform: translateX(-50%);
}

.timeline-connector.faded {
	background: linear-gradient(to bottom, #9b93af 0%, rgba(155, 147, 175, 0) 50%);
}

.timeline-content {
	flex-grow: 1;
	padding-top: 4px;
}

.timeline-day {
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	color: #171821;
	margin: 0 0 4px 0;
}

.timeline-text {
	font-size: 14px;
	line-height: 20px;
	color: #696a74;
	margin: 0;
}

/* Horizontal layout for checkout page */
.trial-works-horizontal {
	background-color: #e6e7f3;
	padding: 80px 0;
}

.trial-works-horizontal .container {
	background-color: transparent;
}

.trial-works-horizontal .trial-works-title {
	text-align: left;
	margin-bottom: 0;
}

.trial-works-horizontal .trial-timeline {
	max-width: none;
	margin: 0;
	gap: 24px;
}

/* Mobile spacing for horizontal layout */
@media (max-width: 767px) {
	.trial-works-horizontal .trial-works-title {
		margin-bottom: 30px;
	}
}

/* ==========================
   ACCOUNT CREATION PAGE STYLES
   ========================== */

/* Account Page Layout */
.account-page {
	min-height: 100vh;
	background-color: white;
}

.account-page .row {
	display: flex;
	min-height: 100vh;
}

.account-page .col-md-6 {
	min-height: 100vh;
}

/* Ensure hero stretches to match form height at high zoom levels */
@media (min-width: 992px) {
	.account-page .row {
		flex-wrap: nowrap;
	}
	.account-page .col-md-6 {
		flex: 0 0 50%;
		max-width: 50%;
	}
}

.account-hero {
	background-size: cover;
	background-position: center;
	min-height: 100vh;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 0;
	transition: background-image 0.3s ease;
}

.account-hero.create-hero {
	background-image: url('https://image-cdn.production.tfs.services/images/tf/all-access/createhero.png');
}

.account-hero.login-hero {
	background-image: url('https://image-cdn.production.tfs.services/images/tf/all-access/loginhero.jpg');
}

/* Hide hero section when layout changes from 50/50 to stacked */
@media (max-width: 991px) {
	.account-hero {
		display: none;
	}
}

.account-hero-content {
	padding: 60px 60px 0 60px;
	max-width: 600px;
}

.account-hero-title {
	font-size: 40px;
	font-weight: 700;
	line-height: 52px;
	color: white;
	margin: 0;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Account Form Section */
.account-form-section {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding: 40px 20px;
}

.account-form-container {
	width: 100%;
	max-width: 540px;
}

.account-form-title {
	font-size: 32px;
	font-weight: 700;
	line-height: 40px;
	color: #131313;
	margin: 0 0 16px 0;
}

.account-login-link {
	font-size: 16px;
	line-height: 24px;
	color: #000000;
	margin: 0 0 40px 0;
}

.login-link {
	font-weight: 600;
	text-decoration: underline;
	color: #000000;
}

/* Form Styles */
.account-form {
	width: 100%;
}

/* Create Account Button */
.btn-create-account {
	width: 100%;
	height: 56px;
	background-color: #8a0fc2;
	color: white;
	border: none;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.25px;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-bottom: 32px;
}

.btn-create-account:hover:not(:disabled) {
	background-color: #7a0da8;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(138, 15, 194, 0.3);
}

.btn-create-account:disabled {
	background-color: #e6e5eb;
	color: #91929d;
	cursor: not-allowed;
}

/* Social Login */
.social-divider {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 24px;
}

.divider-line {
	flex: 1;
	height: 1px;
	background-color: #d3d6df;
}

.divider-text {
	font-size: 14px;
	font-weight: 600;
	color: #757575;
	letter-spacing: 0.1px;
	white-space: nowrap;
}

.social-buttons {
	display: flex;
	gap: 16px;
	margin-bottom: 32px;
}

.social-btn {
	flex: 1;
	height: 56px;
	border: none;
	border-radius: 12px;
	background-color: #000000;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.social-btn:hover {
	background-color: #333333;
}

.social-icon {
	width: 24px;
	height: 24px;
}

.google-icon {
	position: relative;
	width: 24px;
	height: 24px;
}

.google-part {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.social-btn i {
	font-size: 24px;
	color: #ffffff;
}

/* Forgot Password Link */
.forgot-password-link {
	text-align: center;
	margin-bottom: 32px;
}

.forgot-link {
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	color: #91929D;
	text-transform: uppercase;
	transition: color 0.2s ease;
}

.forgot-link:hover {
	color: #666666;
}

/* Error Messages */
.error-messages {
	margin-top: 24px;
}

.error-group {
	background-color: #ffcdd2;
	border: none;
	border-radius: 8px;
	padding: 16px;
	margin-bottom: 16px;
}

.error-content {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
}

.error-text {
	flex: 1;
}

.error-group strong {
	color: #da1a1a;
	font-weight: 600;
	display: block;
	margin-bottom: 8px;
}

.error-item {
	color: #da1a1a;
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 4px;
}

.error-item:last-child {
	margin-bottom: 0;
}

.error-login-btn {
	background-color: #220931;
	color: white;
	border: none;
	border-radius: 4px;
	padding: 8px 16px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	cursor: pointer;
	white-space: nowrap;
	flex-shrink: 0;
	transition: background-color 0.2s ease;
}

.error-login-btn:hover {
	background-color: #2d0f3f;
}

/* Terms Text */
.terms-text {
	font-size: 12px;
	line-height: 16px;
	color: #696a74;
	text-align: center;
	margin: 0;
	letter-spacing: 0.4px;
}

.terms-link {
	font-weight: 500;
	text-decoration: underline;
	color: #696a74;
}

/* ==========================
   RESPONSIVE STYLES
   ========================== */

@media (max-width: 991px) {
	.checkout-content .row {
		display: flex;
		flex-direction: column-reverse;
	}
	
	.pricing-cards-container {
		margin-bottom: 40px;
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}
	
	.pricing-card {
		max-width: 100% !important;
		width: 100% !important;
		flex: none !important;
	}
	
	.checkout-content .col-md-7,
	.checkout-content .col-md-5 {
		width: 100%;
	}
	
	/* Make form columns stack on mobile */
	.checkout-content .col-sm-6 {
		width: 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	
	/* Make stacked pricing cards 100% width on mobile */
	.pricing-cards-stacked {
		max-width: 100%;
		margin: 20px 0;
	}
	
	.pricing-cards-stacked .pricing-card {
		width: 100%;
		max-width: 100%;
	}

	.account-hero {
		min-height: 50vh;
	}

	.account-hero-content {
		padding: 0 40px;
	}

	.account-hero-title {
		font-size: 32px;
		line-height: 40px;
	}

	.account-form-section {
		min-height: auto;
		padding: 40px 35px;
	}
}

@media (max-width: 767px) {
	/* Button sizes adjust on mobile */
	.btn-tf-large {
		min-width: 180px;
	}
	
	.btn-tf-medium {
		min-width: 140px;
	}
	
	.pricing-hero-title {
		font-size: 32px;
	}
	
	.pricing-hero-subtitle {
		font-size: 18px;
	}
	
	.pricing-cards-container {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}
	
	.pricing-card {
		max-width: 100% !important;
		width: 100% !important;
		flex: none !important;
	}
	
	
	.quote-text {
		font-size: 24px;
		line-height: 32px;
	}
	
	.quote-logo {
		max-width: 100px;
	}
	
	.included-title {
		font-size: 28px;
	}
	
	.included-text {
		font-size: 15px;
	}
	
	.included-image {
		margin-top: 30px;
	}
	
	.testimonials-title {
		font-size: 24px;
	}
	
	.faq-title {
		font-size: 24px;
	}
	
	.faq-question-text {
		font-size: 18px;
	}
	
	.faq-toggle-btn {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}
	
	.trial-works-title {
		font-size: 24px;
		line-height: 30px;
		margin-bottom: 40px;
	}
	
	.trial-timeline {
		padding: 0 20px;
	}
	
	.trial-timeline-day {
		font-size: 20px;
	}
	
	.trial-timeline-text {
		font-size: 14px;
	}
	
	.checkout-hero {
		padding: 40px 0 20px;
	}
	
	.checkout-title {
		font-size: 24px;
		line-height: 30px;
	}
	
	.checkout-subtitle {
		font-size: 14px;
		line-height: 20px;
	}
	
	.checkout-section-title {
		font-size: 20px;
		line-height: 28px;
		margin-bottom: 16px;
	}
	
	.payment-methods {
		margin-bottom: 24px;
	}
	
	.form-group {
		margin-bottom: 24px;
	}
	
	.btn-checkout {
		max-width: 100%;
		margin-bottom: 32px;
	}
	
	.trust-badges {
		justify-content: center;
	}
	
	.pricing-cards-container {
		margin-bottom: 32px;
	}
	
	.trial-works {
		padding: 60px 0;
	}
	
	.trial-works-title {
		font-size: 24px;
		line-height: 32px;
		margin-bottom: 40px;
	}
	
	.trial-timeline {
		padding: 0 20px;
	}
	
	.account-hero {
		min-height: 40vh;
	}
	
	.account-hero-content {
		padding: 0 20px;
	}
	
	.account-hero-title {
		font-size: 24px;
		line-height: 32px;
	}
	
	.account-form-title {
		font-size: 24px;
		line-height: 32px;
	}
	
	.social-buttons {
		flex-direction: column;
	}
	
	.social-btn {
		height: 48px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.testimonial-card {
		flex: 0 0 calc(50% - 12px);
		min-width: calc(50% - 12px);
	}
}

