:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #1e40af;
    --dark: #111827;
    --light: #f9fafb;
    --gray: #6b7280;
    --gray-light: #e5e7eb;
    --success: #10b981;
  /* comparison colors */
    --primary-color: #3498db;
    --your-product-color: #f39c12;
    --yes-color: #27ae60;
    --no-color: #e74c3c;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --border-color: #e0e0e0;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--light);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: var(--dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
}
.logo img {
    height: 50px;
}

.logo i {
    margin-right: 10px;
    color: var(--secondary);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--light);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-btn {
    background-color: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.nav-btn:hover {
    background-color: var(--light);
    color: white;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--light);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 120px 0 50px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e6f0ff 100%);
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}

.hero p {
    font-size: 20px;
    color: var(--gray);
    //max-width: 700px;
    margin: 0 auto 40px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}
.hero-img {
			max-width: 700px;
			text-align: center;
			margin: 0 auto;
		}
.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Features Section */
.section {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Pricing Section */
.pricing {
    background-color: #f5f7ff;
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background-color: white;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    //text-align: center;
    //transition: transform 0.3s;
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    position: relative;
}
.order-btn {
			text-align: center;
		}

.popular-badge {
    position: absolute;
    top: -15px;
    //left: 50%;
    left: 95px;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    position: relative;
}

.pricing-card:hover {
    //transform: translateY(-5px);
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* requirements Section */
.requirements {
    background-color: #f5f7ff;
}

.requirements-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.requirements-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    //text-align: center;
    //transition: transform 0.3s;
}

 .requirements-badge {
    position: absolute;
    top: -15px;
    //left: 50%;
    left: 115px;
    transform: translateX(-50%);
    background-color: var(--gray);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
}

.requirements-card.popular {
    border: 2px solid var(--gray);
    position: relative;
}       

.requirements-features {
    list-style: none;
    margin-bottom: 30px;
}
		
.requirements-features li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--gray-light);
}

.requirements-features li:last-child {
    //border-bottom: none;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
}

.price span {
    font-size: 16px;
    color: var(--gray);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}
		
.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-light);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--dark);
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--gray);
    font-size: 14px;
}


/* Testimonials */
.guarantee {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.guarantee-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.guarantee-card h1 {
	font-size: 2em;
	text-align: center;
	padding-bottom: 20px;
}

.guarantee-content {
    //font-style: italic;
    margin-bottom: 20px;
    color: var(--dark);
}

/* CTA Section */
.cta {
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding: 80px 0;
    border-radius: 10px;
}

.cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.btn-light {
    background-color: white;
    color: var(--primary);
}

.btn-light:hover {
    background-color: var(--gray-light);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 80px 0 30px;
}

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

.footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    color: white;
    font-size: 20px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-light);
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
		font-size: 40px;
    }
    
    .hero p {
		font-size: 18px;
    }

	.guarantee-card h1 {
		font-size: 1.2em;
	}
}

@media (max-width: 768px) {
    .mobile-menu-btn {
		display: block;
    }
    
    .nav-links {
		position: fixed;
		top: 80px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 80px);
		background-color: var(--dark);
		flex-direction: column;
		align-items: center;
		padding: 40px 0;
		transition: left 0.3s;
    }
    
    .nav-links.active {
		left: 0;
    }
    
    .nav-links li {
		margin: 15px 0;
    }
    
    .hero-btns {
		flex-direction: column;
		align-items: center;
    }
    
    .hero {
		padding: 130px 0 50px;
    }
    
    .section {
		padding: 30px 0;
    }
	.guarantee-card h1 {
		font-size: 1.2em;
	}
}

@media (max-width: 576px) {
    .hero h1 {
		font-size: 32px;
    }
    
    .hero p {
		font-size: 16px;
    }
    
    .section-title h2 {
		font-size: 28px;
    }
    
    .cta h2 {
		font-size: 28px;
    }
	.guarantee-card h1 {
		font-size: 1.2em;
	}
}

.green-icn {
		color: #1d8348;
}

/* comparison */
.comparison-title {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}
.comparison-container {
    //width: 100%;
    max-width: 1200px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 30px;
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin: 0 auto;
}

.comparison-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
}

.comparison-table th, .comparison-table td {
    padding: 12px 15px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.comparison-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: clamp(10px, 1.8vw, 14px);
    position: sticky;
    top: 0;
}

.comparison-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.comparison-table tr:hover {
    background-color: #e8f4fc;
}

.feature-name {
    //font-weight: bold;
    text-align: left;
    background-color: var(--light-gray);
    position: sticky;
    left: 0;
    font-size: 12px;
    max-width: 250px;
}

.yes {
    color: var(--yes-color);
    font-size: 12px;
    font-weight: bold;
}

.no {
    font-size: 12px;
    color: var(--no-color);
    font-weight: bold;
}

.your-product {
    background-color: #fef9e7 !important;
}

.your-product-header {
    background-color: var(--your-product-color) !important;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .comparison-table th, .comparison-table td {
		padding: 8px 10px;
		font-size: 12px;
    }
	.comparison-title {
		font-size: 1.2em;
	}
    .feature-name {
		font-size: 12px;
    }
}

@media (max-width: 480px) {
    .comparison-table th, .comparison-table td {
		padding: 6px 8px;
    }
	.comparison-title {
		font-size: 1.2em;
	}
}

/* Scrollbar styling for better mobile experience */
.comparison-container::-webkit-scrollbar {
    height: 8px;
}

.comparison-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.comparison-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.comparison-container::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}
/* /comparison */

/* error Section */
.errors {
    background-color: #f5f7ff;
}

.errors-div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.errors-card {
    background-color: white;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.errors-card.popular {
    border: 2px solid #cc0000;
    position: relative;
}

.errors-badge {
    position: absolute;
    top: -15px;
    left: 75px;
    transform: translateX(-50%);
    background-color: #cc0000;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}
