html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* CLEARFIX */

.clearfix:before,
.clearfix:after {
    content:"";
    display:table;
}
.clearfix:after {
    clear:both;
}
/* For IE 6/7 (trigger hasLayout) */
.clearfix {
    zoom:1;
}

/* STYLE */

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	background: #fafafa;
	font-family: 'Roboto', sans-serif;
	color: #111;
	line-height: 1.25;
}

.header {
	border-bottom: 1px solid #e5e7eb;
	padding: 20px 0;
	background: #fff;
}

.inner {
	max-width: 1168px;
	padding: 0 20px;
	margin: 0 auto;
}

.header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	height: 40px;
	width: auto;
	display: block;
}

.header-nav {
	display: flex;
	gap: 40px;
	align-items: center;
}

.nav-link {
	font-size: 0.938rem;
	font-weight: 500;
	color: #374151;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: color 0.2s ease;
}

.nav-link:hover {
	color: #a78bfa;
}

#hero {
	background: #fff;
	padding: 60px 0;
}

.hero-container {
	font-size: 0;
	display: flex;
	align-items: center;
	gap: 60px;
}

.hero-left {
	width: 50%;
	display: inline-block;
	vertical-align: middle;
	font-size: 1rem;
}

.hero-right {
	width: 50%;
	display: inline-block;
	vertical-align: middle;
}

.hero-image {
	width: 100%;
	height: auto;
	display: block;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
}

.hero-rating {
	margin-bottom: 20px;
}

.stars {
	color: #fbbf24;
	font-size: 1.25rem;
	margin-right: 10px;
}

.rating-text {
	font-size: 1rem;
	color: #111827;
	font-weight: 500;
}

.hero-left h1 {
	font-size: 3rem;
	font-weight: 900;
	color: #111827;
	margin-bottom: 20px;
	line-height: 1.15;
}

.hero-left h1 .highlight {
	color: #c4b5fd;
	font-style: italic;
}

.hero-description {
	font-size: 1rem;
	color: #4b5563;
	margin-bottom: 30px;
	line-height: 1.7;
}

.hero-buttons {
	margin-bottom: 20px;
}

.hero-subtext {
	margin-bottom: 30px;
}

.hero-subtext p {
	font-size: 0.875rem;
	color: #6b7280;
	margin-bottom: 5px;
	line-height: 1.5;
}

.hero-features {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.feature-item-hero {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.938rem;
	color: #374151;
}

.feature-item-hero svg {
	flex-shrink: 0;
	color: #8b5cf6;
}

.btn {
	text-align: center;
	display: inline-block;
	color: #fff;
	background: linear-gradient(to right, #8b5cf6 0%, #7c3aed 99%);
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	text-decoration: none;
	font-size: 1rem;
	padding: 16px 32px;
	font-weight: 600;
	transition: transform 200ms ease-in;
	margin-right: 15px;
	margin-bottom: 10px;
}

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

.btn-primary {
	background: linear-gradient(to right, #a78bfa 0%, #8b5cf6 99%);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 0.938rem;
}

.btn-secondary {
	background: transparent;
	border: 2px solid #a78bfa;
	color: #a78bfa;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 0.938rem;
	padding: 14px 32px;
}

.support-section {
	padding: 80px 0;
	background: #e8e4dc;
}

.support-container {
	display: flex;
	align-items: center;
	gap: 80px;
}

.support-content {
	flex: 1;
}

.support-subheading {
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 2px;
	color: #111827;
	margin-bottom: 20px;
}

.support-heading {
	font-size: 3.5rem;
	font-weight: 400;
	color: #111827;
	margin-bottom: 30px;
	line-height: 1.1;
	font-family: 'Georgia', serif;
}

.support-text {
	font-size: 1.125rem;
	color: #374151;
	line-height: 1.7;
}

.support-image {
	flex: 1;
}

.support-img {
	width: 100%;
	height: auto;
	display: block;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
}

.products-section {
	padding: 80px 0;
	background: #fff;
}

.products-section h2 {
	font-size: 2.5rem;
	color: #111827;
	font-weight: 700;
	text-align: center;
	margin-bottom: 10px;
}

.products-subtitle {
	font-size: 1.125rem;
	color: #6b7280;
	text-align: center;
	margin-bottom: 50px;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	max-width: 1168px;
	margin: 0 auto;
}

.product-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	border-radius: 16px;
	overflow: hidden;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.product-card:hover {
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transform: translateY(-5px);
}

.product-image-container {
	width: 100%;
	height: 300px;
	overflow: hidden;
	position: relative;
}

.product-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.product-info {
	padding: 30px;
}

.product-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #111827;
	margin-bottom: 8px;
}

.product-type {
	display: inline-block;
	background: #ede9fe;
	color: #7c3aed;
	padding: 4px 12px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 15px;
}

.product-description {
	font-size: 0.938rem;
	color: #6b7280;
	line-height: 1.6;
	margin-bottom: 20px;
}

.product-price {
	display: flex;
	align-items: baseline;
	gap: 5px;
}

.price-label {
	font-size: 0.875rem;
	color: #6b7280;
}

.price-amount {
	font-size: 2rem;
	font-weight: 700;
	color: #b8762f;
}

.price-period {
	font-size: 0.938rem;
	color: #6b7280;
}

.testimonial-section {
	background: #fff;
	padding: 60px 0;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.testimonial-content {
	font-size: 0;
	max-width: 960px;
	margin: 0 auto;
}

.testimonial-text {
	width: 50%;
	display: inline-block;
	vertical-align: middle;
	padding-right: 40px;
}

.testimonial-quote {
	font-size: 1.25rem;
	line-height: 1.6;
	color: #111827;
	margin-bottom: 20px;
	font-style: italic;
}

.testimonial-author {
	font-size: 1rem;
	font-weight: 600;
	color: #6b7280;
}

.testimonial-image {
	width: 50%;
	display: inline-block;
	vertical-align: middle;
}

.placeholder-video {
	width: 100%;
	height: auto;
	display: block;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
}

.features-section {
	padding: 60px 0;
}

.features-section h2 {
	font-size: 2.5rem;
	color: #111827;
	font-weight: 700;
	text-align: center;
	margin-bottom: 15px;
}

.features-subtitle {
	text-align: center;
	font-size: 1.125rem;
	color: #6b7280;
	line-height: 1.6;
	margin-bottom: 40px;
}

.step-tabs {
	max-width: 960px;
	margin: 0 auto 50px;
	text-align: center;
	font-size: 0;
	background: #f3f4f6;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	padding: 6px;
}

.step-tab {
	display: inline-block;
	width: 33.3333%;
	padding: 16px 30px;
	background: transparent;
	border: none;
	font-family: 'Roboto', sans-serif;
	font-size: 1.063rem;
	font-weight: 600;
	color: #6b7280;
	cursor: pointer;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	transition: all 200ms ease;
	outline: 0;
}

.step-tab:hover {
	color: #111827;
}

.step-tab.active {
	background: #fff;
	color: #111827;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.step-content-container {
	max-width: 960px;
	margin: 0 auto;
}

.step-content {
	display: none;
	font-size: 0;
	align-items: center;
}

.step-content.active {
	display: block;
}

.step-image {
	width: 50%;
	display: inline-block;
	vertical-align: middle;
	padding-right: 40px;
}

.step-image-img {
	width: 100%;
	height: 315px;
	display: block;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	object-fit: cover;
	object-position: center;
}

.step-details {
	width: 50%;
	display: inline-block;
	vertical-align: middle;
}

.step-details h3 {
	font-size: 2rem;
	font-weight: 700;
	color: #111827;
	margin-bottom: 20px;
	line-height: 1.3;
}

.step-details p {
	font-size: 1.063rem;
	line-height: 1.7;
	color: #6b7280;
}

.features-grid {
	max-width: 860px;
	margin: 0 auto;
	font-size: 0;
}

.feature-item {
	width: 33.3333%;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	padding: 0 20px;
}

.feature-icon {
	width: 80px;
	height: 80px;
	line-height: 80px;
	margin: 0 auto 20px;
	background: linear-gradient(to right, #8b5cf6 0%, #7c3aed 100%);
	color: #fff;
	font-size: 2rem;
	font-weight: 900;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.feature-text {
	font-size: 1.125rem;
	font-weight: 500;
	color: #111827;
}

.comparison-section {
	background: #f9fafb;
	padding: 60px 0;
}

.comparison-section h2 {
	font-size: 2.5rem;
	color: #111827;
	font-weight: 700;
	text-align: center;
	margin-bottom: 50px;
}

.comparison-table {
	max-width: 760px;
	margin: 0 auto;
	background: #fff;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
	overflow: hidden;
}

.comparison-header {
	font-size: 0;
	background: #f3f4f6;
	border-bottom: 2px solid #e5e7eb;
}

.comparison-col {
	width: 33.3333%;
	display: inline-block;
	vertical-align: middle;
	padding: 20px;
	text-align: center;
}

.comparison-label {
	font-size: 1.125rem;
	font-weight: 700;
	color: #111827;
}

.comparison-logo {
	height: 40px;
	width: auto;
	display: inline-block;
}

.comparison-row {
	font-size: 0;
	border-bottom: 1px solid #e5e7eb;
}

.comparison-row:last-child {
	border-bottom: 0;
}

.comparison-row > div {
	width: 33.3333%;
	display: inline-block;
	vertical-align: middle;
	padding: 16px 20px;
	text-align: center;
	font-size: 1rem;
}

.comparison-feature {
	text-align: left;
	font-weight: 500;
	color: #374151;
}

.comparison-check {
	color: #10b981;
	font-size: 1.5rem;
	font-weight: 900;
}

.comparison-cross {
	color: #ef4444;
	font-size: 1.5rem;
	font-weight: 900;
}

.consent-section {
	padding: 60px 0;
	background: #fff;
}

.consent-content {
	max-width: 800px;
	margin: 0 auto;
}

.consent-content h1 {
	font-size: 2.5rem;
	color: #111827;
	font-weight: 700;
	margin-bottom: 40px;
	line-height: 1.2;
}

.consent-content h2 {
	font-size: 1.75rem;
	color: #111827;
	font-weight: 700;
	margin-top: 40px;
	margin-bottom: 20px;
}

.consent-content h3 {
	font-size: 1.25rem;
	color: #374151;
	font-weight: 600;
	margin-top: 30px;
	margin-bottom: 15px;
}

.consent-content p {
	font-size: 1rem;
	color: #374151;
	line-height: 1.7;
	margin-bottom: 20px;
}

.consent-content ul {
	margin-bottom: 20px;
	padding-left: 25px;
}

.consent-content li {
	font-size: 1rem;
	color: #374151;
	line-height: 1.7;
	margin-bottom: 10px;
}

.consent-content strong {
	font-weight: 600;
	color: #111827;
}

.legal-date {
	font-size: 0.875rem;
	color: #6b7280;
	margin-bottom: 30px;
	font-style: italic;
}

.press-section {
	padding: 40px 0;
}

.press-logos {
	font-size: 0;
	text-align: center;
}

.press-logo {
	display: inline-block;
	vertical-align: middle;
	padding: 0 30px;
	font-size: 1.25rem;
	font-weight: 700;
	color: #9ca3af;
}

.reviews-section {
	background: #f3f4f6;
	padding: 60px 0;
}

.reviews-section h2 {
	font-size: 2.5rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 50px;
	color: #111827;
}

.reviews-grid {
	max-width: 1200px;
	margin: 0 auto;
	font-size: 0;
	display: flex;
	gap: 30px;
	align-items: stretch;
}

.review-card {
	flex: 1;
	background: #fff;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	border-radius: 16px;
	padding: 32px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.1);
	display: flex;
	flex-direction: column;
}

.review-image {
	display: none;
}

.review-content {
	text-align: left;
}

.review-stars {
	margin-bottom: 20px;
	display: flex;
	gap: 4px;
}

.review-stars svg {
	width: 20px;
	height: 20px;
	fill: #6366F1;
	color: #6366F1;
}

.review-text {
	font-size: 1.063rem;
	margin-bottom: 20px;
	line-height: 1.6;
	color: #111827;
	flex-grow: 1;
}

.review-author {
	display: none;
}

.review-verified {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.875rem;
	color: #6b7280;
	margin-top: auto;
}

.review-verified svg {
	flex-shrink: 0;
}

}

.faq-section {
	padding: 60px 0;
	background: #f9fafb;
}

.faq-section h2 {
	font-size: 2.5rem;
	color: #111827;
	font-weight: 700;
	text-align: center;
	margin-bottom: 15px;
}

.faq-subtitle {
	text-align: center;
	font-size: 1.063rem;
	color: #6b7280;
	margin-bottom: 40px;
}

.faq-container {
	max-width: 860px;
	margin: 0 auto;
}

.faq-card {
	border-bottom: 1px solid #e5e7eb;
}

.faq-card:last-child {
	border-bottom: 0;
}

.faq-card button {
	text-align: left;
	position: relative;
	background: transparent;
	border: none;
	font-family: 'Roboto', sans-serif;
	font-size: 1.063rem;
	font-weight: 600;
	padding: 20px 32px 20px 0;
	cursor: pointer;
	display: block;
	width: 100%;
	outline: 0;
	color: #111827;
}

.faq-card button:hover {
	color: #8b5cf6;
}

.faq-card button svg {
	position: absolute;
	top: 50%;
	right: 0;
	display: block;
	width: 11px;
	height: auto;
	margin-top: -6px;
	fill: #6b7280;
	-webkit-transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
	-moz-transition: all 150ms cubic-bezier(0.4,0,0.2,1);
	transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card button:hover svg {
	fill: #8b5cf6;
}

.faq-card button.active svg {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}

.faq-card p {
	margin-top: 6px;
	display: none;
	line-height: 1.65;
	padding: 0 0 20px;
	color: #6b7280;
	font-size: 1rem;
}

.disclaimer-section {
	background: #eff6ff;
	padding: 40px 0;
}

.disclaimer-box {
	max-width: 860px;
	margin: 0 auto;
	padding: 20px 30px;
	background: #fff;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	border: 1px solid #bfdbfe;
}

.disclaimer-text {
	font-size: 0.938rem;
	line-height: 1.6;
	color: #1e40af;
}

.footer {
	padding: 60px 0 30px;
	background: #1f2937;
	color: #e5e7eb;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 60px;
	margin-bottom: 40px;
}

.footer-column {
	display: flex;
	flex-direction: column;
}

.footer-heading {
	font-size: 1.125rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: #e5e7eb;
	text-decoration: none;
	font-size: 0.938rem;
	transition: color 0.2s ease;
}

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

.footer-link-inactive {
	color: #9ca3af;
	font-size: 0.938rem;
	cursor: default;
}

.footer-description {
	font-size: 0.938rem;
	line-height: 1.6;
	color: #e5e7eb;
	margin: 0;
}

.footer-company-name {
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	margin: 0 0 12px 0;
}

.footer-address {
	font-size: 0.938rem;
	line-height: 1.6;
	color: #e5e7eb;
	margin: 0;
}

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

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

.footer-icon {
	flex-shrink: 0;
	margin-top: 2px;
	color: #a78bfa;
}

.footer-contact-item span {
	font-size: 0.938rem;
	line-height: 1.6;
	color: #e5e7eb;
}

.footer-bottom {
	padding-top: 30px;
	border-top: 1px solid #374151;
	text-align: center;
}

.footer-bottom p {
	margin: 0;
	font-size: 0.875rem;
	color: #9ca3af;
}

@media screen and (max-width: 1023px) {
	.hero-container {
		flex-direction: column;
		gap: 40px;
	}

	.hero-left {
		width: 100%;
	}

	.hero-right {
		width: 100%;
	}

	.hero-left h1 {
		font-size: 2.5rem;
	}

	.testimonial-text {
		width: 100%;
		padding-right: 0;
		margin-bottom: 30px;
	}

	.testimonial-image {
		width: 100%;
	}

}

@media screen and (max-width: 767px) {
	.inner {
		padding: 0 15px;
	}

	.header-nav {
		display: none;
	}

	#hero {
		padding: 40px 0;
	}

	.hero-left h1 {
		font-size: 2rem;
	}

	.hero-description {
		font-size: 0.938rem;
	}

	.btn {
		font-size: 0.875rem;
		padding: 14px 24px;
		display: block;
		margin-bottom: 10px;
		margin-right: 0;
	}

	.btn-secondary {
		padding: 12px 24px;
	}


	.testimonial-text {
		width: 100%;
		padding-right: 0;
		margin-bottom: 30px;
	}

	.testimonial-image {
		width: 100%;
	}

	.testimonial-quote {
		font-size: 1.063rem;
	}

	.features-section h2, .comparison-section h2, .reviews-section h2, .faq-section h2 {
		font-size: 2rem;
	}

	.feature-item {
		width: 100%;
		display: block;
		padding: 20px 0;
	}

	.step-tab {
		font-size: 0.938rem;
		padding: 14px 20px;
	}

	.step-image {
		width: 100%;
		padding-right: 0;
		margin-bottom: 30px;
	}

	.step-image-img {
		height: 210px;
	}

	.step-details {
		width: 100%;
	}

	.step-details h3 {
		font-size: 1.5rem;
	}

	.products-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.product-image-container {
		height: 250px;
	}

	.product-info {
		padding: 20px;
	}

	.product-title {
		font-size: 1.25rem;
	}

	.price-amount {
		font-size: 1.75rem;
	}

	.step-details p {
		font-size: 1rem;
	}

	.press-logo {
		display: block;
		padding: 15px 0;
		font-size: 1.125rem;
	}

	.reviews-grid {
		flex-direction: column;
		gap: 20px;
	}

	.review-card {
		padding: 24px;
	}

		width: 100%;
		display: block;
		padding: 0;
		margin-bottom: 30px;
	}

	.review-card:last-child {
		margin-bottom: 0;
	}

	.comparison-col {
		font-size: 0.875rem;
		padding: 15px 10px;
	}

	.comparison-row > div {
		font-size: 0.875rem;
		padding: 12px 10px;
	}

	.comparison-feature {
		width: 50%;
	}

	.comparison-check, .comparison-cross {
		width: 25%;
	}
}

@media screen and (max-width: 1023px) {
	.support-container {
		flex-direction: column;
		gap: 40px;
	}
	
	.support-heading {
		font-size: 2.5rem;
	}
}

@media screen and (max-width: 767px) {
	.support-section {
		padding: 50px 0;
	}

	.support-container {
		flex-direction: column-reverse;
	}

	.support-image {
		width: 100%;
		max-width: 300px;
		margin: 0 auto;
	}

	.support-img {
		width: 100%;
		height: auto;
	}

	.support-content {
		text-align: center;
	}

	.support-heading {
		font-size: 2rem;
	}

	.support-text {
		font-size: 1rem;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

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

/* Contact Section */
.contact-section {
	padding: 60px 0;
	background: #f9fafb;
}

.contact-container {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}

.contact-text {
	font-size: 1.25rem;
	color: #1a1a1a;
	margin-bottom: 15px;
	font-weight: 400;
}

.contact-link {
	color: #9333ea;
	text-decoration: underline;
	font-size: 1.125rem;
	font-weight: 500;
	transition: color 0.3s ease;
}

.contact-link:hover {
	color: #7c3aed;
}

@media (max-width: 768px) {
	.contact-text {
		font-size: 1.125rem;
	}

	.contact-link {
		font-size: 1rem;
	}
}

/* About Page */
.about-hero {
	background: #fff;
	padding: 60px 0 40px;
	border-bottom: 1px solid #e5e7eb;
}

.about-hero h1 {
	font-size: 2.75rem;
	font-weight: 700;
	color: #111827;
	margin-bottom: 15px;
	line-height: 1.2;
}

.about-hero p {
	font-size: 1.125rem;
	color: #6b7280;
	line-height: 1.6;
	max-width: 640px;
}

.about-section {
	padding: 60px 0;
	background: #fafafa;
}

.about-layout {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 50px;
	align-items: start;
}

.about-main p {
	font-size: 1rem;
	color: #374151;
	line-height: 1.7;
	margin-bottom: 20px;
}

.about-main h2 {
	font-size: 1.75rem;
	font-weight: 700;
	color: #111827;
	margin-top: 40px;
	margin-bottom: 20px;
}

.about-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	padding: 30px;
	margin-bottom: 24px;
}

.about-card h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: #111827;
	margin-bottom: 16px;
}

.about-card p {
	font-size: 0.938rem;
	color: #374151;
	line-height: 1.6;
	margin-bottom: 8px;
}

.about-card-company {
	font-weight: 600;
	color: #111827;
}

.about-card-link {
	color: #8b5cf6;
	text-decoration: none;
	font-size: 0.938rem;
	font-weight: 500;
	transition: color 0.2s ease;
}

.about-card-link:hover {
	color: #7c3aed;
}

.about-card-partners {
	background: #f5f3ff;
	border-color: #ddd6fe;
}

.about-card-intro {
	font-size: 0.938rem;
	color: #4b5563;
	margin-bottom: 20px;
}

.about-partner {
	padding-top: 16px;
	border-top: 1px solid #ddd6fe;
	margin-bottom: 16px;
}

.about-partner:last-child {
	margin-bottom: 0;
}

.about-partner-label {
	font-size: 0.813rem;
	font-weight: 600;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	margin-bottom: 4px;
}

.about-partner-name {
	font-weight: 600;
	color: #111827;
}

@media screen and (max-width: 1023px) {
	.about-layout {
		grid-template-columns: 1fr;
	}
}

@media screen and (max-width: 767px) {
	.about-hero {
		padding: 40px 0 30px;
	}

	.about-hero h1 {
		font-size: 2rem;
	}

	.about-hero p {
		font-size: 1rem;
	}

	.about-section {
		padding: 40px 0;
	}

	.about-card {
		padding: 24px;
	}
}
