/* Base Styles */
:root {
    --primary-color: #000;
    --secondary-color: #fff;
    --accent-color: #444;
    --light-gray: #f5f5f5;
    --mid-gray: #e0e0e0;
    --dark-gray: #333;
    --text-color: #222;
    --blue-accent: #0077ff;
    --light-blue-bg: #f6f8fa;
    --border-radius: 50px;
    --small-radius: 25px;
    --box-shadow: none;
    --hover-shadow: none;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.1;
    font-size: 16px;
    background-color: var(--secondary-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.dropdown-menu{
    border-radius: 0px !important;
    
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
}

h1 {
    font-size: 42px;
    font-weight: 700;
}

h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

h3 {
    font-size: 24px;
}

p {
    margin-bottom: 20px;
}

section {
    padding: 80px 0;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    position: relative;
    overflow: visible;
    z-index: 1;
}

.btn::before {
    content: none;
}

.btn:hover::before {
    left: 100%;
}

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

.primary-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    color: white;
}

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

.secondary-btn:hover {
    background-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    color: var(--primary-color);
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 35px;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.main-nav a.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--secondary-color);
    border-radius: var(--small-radius);
    box-shadow: var(--box-shadow);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 20px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content h4 {
    margin-bottom: 10px;
    font-size: 16px;
}

.dropdown-content ul {
    display: block;
}

.dropdown-content li {
    margin-bottom: 8px;
}

.dropdown-content a {
    padding: 5px 0;
    font-weight: 400;
    font-size: 14px;
}

/* Hide CTA button in header */
.cta-button {
    display: block;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 25px;
    padding: 0;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--primary-color);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.mobile-toggle span:nth-child(1) {
    top: 0px;
}

.mobile-toggle span:nth-child(2) {
    top: 10px;
}

.mobile-toggle span:nth-child(3) {
    top: 20px;
}

.mobile-toggle.active span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.mobile-toggle.active span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

/* Hero Section */
.hero {
    background-color: var(--light-blue-bg);
    padding: 120px 0;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.03) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(0,0,0,0.03);
    z-index: 1;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 46px;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 800;
    position: relative;
}

.hero h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
}

.hero p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #444;
    max-width: 90%;
}

.hero-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none;
    transform: none;
    transition: transform 0.5s ease;
    position: relative;
}

.hero-image::before {
    content: none;
}

.hero-image:hover {
    transform: none;
    box-shadow: none;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.hero-image:hover img {
    transform: scale(1.03);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Version Comparison Section */
.version-comparison {
    background-color: var(--secondary-color);
}

.comparison-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    perspective: 1000px;
}

.card {
    background-color: var(--secondary-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex: 1;
    max-width: 400px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid var(--mid-gray);
    transform-style: preserve-3d;
}

.card:hover {
    transform: translateY(-15px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.1);
}

.highlight {
   
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.highlight::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--primary-color), #333);
    border-radius: 15px;
    z-index: -1;
    transform: translateY(5px) scale(0.98);
    opacity: 0.7;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.highlight:hover::before {
    transform: translateY(10px) scale(0.96);
    opacity: 0.9;
}

.card-header {
    padding: 20px;
    text-align: center;
    background-color: #f5f7fa;
    border-bottom: 1px solid #e0e5ec;
    border-radius: 12px 12px 0 0;
    position: relative;
    overflow: hidden;
}

.card-header h3 {
    margin-bottom: 0;
    font-size: 22px;
    font-weight: 600;
    color: #333;
}

.card.highlight .card-header {
    background: linear-gradient(to right, #070707, #0d0d0e);
    color: var(--secondary-color);
    border-bottom: none;
}
.card.highlight h3{
    color: white;
}
.card-header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 5px;
    width: 100%;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.05), transparent);
}

.card.highlight .card-header::after {
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
}

.amount {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.card.highlight .amount {
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.period {
    font-size: 15px;
    opacity: 0.7;
    font-weight: 500;
}

.card-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    
    background-color: #fff;
}

.card.highlight .card-content {
    background-color: #f8f9fa;
}

.card-content ul {
    margin-bottom: 30px;
    flex-grow: 1;
}

.card-content li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.included::before, .not-included::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.included::before {
    content: "\f00c"; /* Font Awesome checkmark */
    background-color: #4CAF50;
    color: white;
}

.not-included::before {
    content: "\f00d"; /* Font Awesome X */
    background-color: #f0f0f0;
    color: #666;
}

.card.highlight .included::before {
    background-color: #4CAF50;
    color: white;
}

.card.highlight .not-included::before {
    background-color: #ffffff;
    color: #666;
}

.card-content .btn {
    width: 100%;
    margin-top: auto;
    padding: 15px 25px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/*.card-content .primary-btn {
    background-color: #2196F3;
    border-color: #2196F3;
    color: white;
}

.card-content .primary-btn:hover {
    background-color: #1976D2;
    border-color: #1976D2;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}*/

/*.card-content .secondary-btn {
    background-color: transparent;
    color: #2196F3;
    border-color: #2196F3;
}

.card-content .secondary-btn:hover {
    background-color: rgba(33, 150, 243, 0.05);
    color: #1976D2;
    border-color: #1976D2;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}*/

.most-popular {
    position: absolute;
    top: -5px;
    right: 20px;
    background: linear-gradient(to right, #f44336, #ff7043);
    color: var(--secondary-color);
    padding: 8px 15px 10px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
}

.most-popular::before, .most-popular::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: var(--primary-color);
    top: 0;
}

.most-popular::before {
    left: -5px;
    border-radius: 0 5px 0 0;
}

.most-popular::after {
    right: -5px;
    border-radius: 5px 0 0 0;
}

/* Features Section */
.features-overview {
    background-color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.features-overview::before,
.features-overview::after {
    content: none;
}

.section-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 18px;
}

.feature-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.feature-block:hover {
    transform: translateY(-5px);
}

.feature-block:last-child {
    margin-bottom: 0;
}

.feature-block.reverse {
    flex-direction: row-reverse;
}

.feature-content, .feature-image {
    flex: 1;
}

.feature-content {
    padding: 30px 0;
}

.feature-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.feature-content h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.feature-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 25px;
}

.feature-image {
    position: relative;
    border-radius: var(--small-radius);
    overflow: hidden;
    box-shadow: none;
}

.feature-image::before {
    content: none;
}

.rounded-image {
    border-radius: var(--small-radius);
    width: 100%;
    transition: transform 0.5s ease;
}

.feature-image:hover .rounded-image {
    transform: scale(1.02);
}

.feature-list {
    margin-top: 25px;
}

.feature-list li {
    margin-bottom: 16px;
    position: relative;
    color: #333;
}

.feature-list li.not-included {
    color: #666;
}

.feature-list .fa-check {
    color: #28a745;
    margin-right: 10px;
}

.feature-list .fa-times {
    color: #dc3545;
    margin-right: 10px;
}

.badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #2196F3;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    z-index: 1;
}

/* Testimonial Section */
.testimonial-section {
    background-color: var(--light-blue-bg);
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.testimonial-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    margin: 30px 0;
    padding: 20px 0;
    -ms-overflow-style: none; /* Hide scrollbar for IE and Edge */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.testimonial-carousel::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari, and Opera */
}

.testimonial-item {
    flex: 0 0 auto;
    width: calc(33.333% - 20px);
    min-width: 280px;
    background-color: var(--secondary-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    scroll-snap-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item.active {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-item blockquote {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    color: var(--text-color);
}

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

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

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: var(--accent-color);
    margin-bottom: 0;
}

/* Testimonial Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: var(--mid-gray);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot:hover {
    background-color: var(--accent-color);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Download Section */
.download-section {
    background-color: var(--light-blue-bg);
    color: var(--primary-color);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.download-section::before {
    content: none;
}

.download-section .container {
    position: relative;
    z-index: 1;
}

.download-section h2 {
    color: var(--primary-color);
}

.download-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.download-option {
    background-color: var(--secondary-color);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex: 1;
    max-width: 250px;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--mid-gray);
    position: relative;
    overflow: hidden;
}

.download-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.download-option:hover::before {
    transform: scaleX(1);
}

.download-option:hover {
    transform: translateY(-8px);
    background-color: var(--secondary-color);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.download-option img {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    transition: filter 0.3s ease;
    background: transparent;
}

.download-option:hover img {
    transform: scale(1.05);
    filter: none;
}

.download-option span {
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    transition: color 0.3s ease;
}

/* Bonus Section */
.bonus-section {
    background-color: var(--secondary-color);
    padding: 80px 0;
}

.bonus-content h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.benefit-card {
    background-color: var(--light-gray);
    border-radius: 12px;
    padding: 35px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--mid-gray);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    background-color: #fff;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    font-size: 46px;
    margin-bottom: 25px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
    color: var(--primary-color);
}

.benefit-card p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Footer Styles */
footer {
    background-color: var(--dark-gray);
    color: var(--secondary-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 35px;
    filter: brightness(0) invert(1);
}

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

.footer-column h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 18px;
}

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

.footer-column a {
    color: #bbb;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #444;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #444;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: var(--accent-color);
}

.social-icon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.copyright {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 20px;
}

.copyright p {
    margin-bottom: 5px;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #bbb;
    font-size: 14px;
}

.legal-links a:hover {
    color: var(--secondary-color);
}

/* Download Modal */
.download-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.download-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: var(--small-radius);
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.download-modal.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #777;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #000;
}

.loader {
    display: inline-block;
    width: 70px;
    height: 70px;
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid var(--primary-color);
    margin: 30px 0;
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.small {
    font-size: 14px;
    color: #777;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.3s ease-out forwards;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .hero .container,
    .feature-block,
    .feature-block.reverse {
        flex-direction: column;
    }
    
    .hero-content,
    .feature-content,
    .feature-image {
        width: 100%;
    }
    
    .comparison-cards {
        flex-direction: column;
        align-items: center;
        perspective: none;
    }
    
    .card {
        max-width: 500px;
        width: 100%;
        margin-bottom: 30px;
        transform-style: flat;
    }
    
    .card:hover {
        transform: translateY(-8px);
    }
    
    .highlight::before {
        transform: translateY(3px) scale(0.98);
    }
    
    .highlight:hover::before {
        transform: translateY(5px) scale(0.97);
    }

    .hero-image {
        margin-top: 40px;
    }

    .feature-image {
        margin-top: 30px;
    }

    .testimonial-item {
        width: calc(50% - 15px);
    }
    
    /* Improve download options on tablet */
    .download-options {
        gap: 20px;
    }
    
    .download-option {
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        position: relative;
    }
    
    .logo {
        z-index: 1001;
    }
    
    .cta-button {
        display: none;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: white;
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 80px 20px 20px;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 20px;
        padding-top: 20px;
        width: 100%;
    }
    
    .main-nav li {
        width: 100%;
    }
    
    .main-nav a {
        display: block;
        width: 100%;
        padding: 12px 0;
        font-size: 18px;
    }
    
    .dropdown {
        width: 100%;
    }
    
    /* Always display dropdown menu on mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 10px 0 0 20px;
        max-height: none;
        overflow: visible;
        transition: none;
        border-radius: 0;
        background: transparent;
        display: block;
        width: 100%;
    }
    @media (max-width: 768px) {
        .main-nav {
            max-width: 500px !important;
            width: 100% !important;
        }
    }
    /* Style dropdown content to look like normal nav items */
    .dropdown-content {
        width: 100%;
        display: block !important;
    }
    
    .dropdown-content h4 {
        display: none; /* Hide the header on mobile */
    }
    
    .dropdown-content ul {
        width: 100%;
        padding-top: 0; /* Reduce spacing */
        margin-top: -10px; /* Move closer to dropdown label */
    }
    
    .dropdown-content li {
        width: 100%;
        margin-bottom: 0; /* Match regular nav item spacing */
    }
    
    .dropdown-content a {
        font-size: 15px; /* Slightly smaller than parent nav items */
        padding: 8px 0; /* Less padding than parent items */
        color: #666; /* Differentiate from parent items */
    }
    
    /* No hover needed as it's always visible */
    .dropdown:hover .dropdown-menu {
        max-height: none;
    }

    .testimonial-item {
        width: 100%;
    }
    
    .testimonial-carousel {
        padding: 20px 0;
    }
    
    /* Improve comparison cards on mobile */
    .card {
        max-width: 100%;
    }
    
    .card-header {
        padding: 30px 15px 25px;
    }
    
    .card-content {
        padding: 25px 20px;
    }
    
    .most-popular {
        right: 15px;
        font-size: 11px;
        padding: 6px 12px 8px;
    }
    
    /* Improve download options on mobile */
    .download-options {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .download-option {
        max-width: 100%;
        width: 100%;
        padding: 20px;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        text-align: left;
    }
    
    .download-option img {
        width: 50px;
        height: 50px;
        margin: 0 20px 0 0;
    }
    
    .download-option span {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 30px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }

    .feature-list li {
        font-size: 15px;
    }

    .testimonial-content p {
        font-size: 22px;
    }

    .header-content {
        padding: 12px 0;
    }
    
    .logo img {
        height: 30px;
    }
    
    .mobile-toggle {
        width: 25px;
        height: 20px;
    }
    
    .mobile-toggle span {
        height: 2px;
    }
    
    /* Further improve comparison cards on small mobile */
    .card-header h3 {
        font-size: 20px;
    }
    
    .amount {
        font-size: 32px;
    }
    
    .period {
        font-size: 13px;
    }
    
    .card-content li {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    /* Further improve download options on small mobile */
    .download-section {
        padding: 60px 0;
    }
    
    .download-option {
        padding: 16px;
    }
    
    .download-option img {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }
}

/* Policy Modals */
.policy-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.policy-modal.active {
    opacity: 1;
    visibility: visible;
}

.policy-modal-content {
    background-color: white;
    border-radius: var(--small-radius);
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    padding: 0;
}

.policy-modal.active .policy-modal-content {
    transform: translateY(0);
}

.policy-modal-content h2 {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 20px 30px;
    margin: 0;
    border-radius: var(--small-radius) var(--small-radius) 0 0;
    font-size: 24px;
    text-align: left;
    flex-shrink: 0;
}

.policy-content {
    padding: 30px;
    overflow-y: auto;
    max-height: calc(80vh - 70px);
    flex-grow: 1;
}

.policy-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.policy-content h3:first-child {
    margin-top: 0;
}

.policy-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #444;
}

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

.policy-content li {
    margin-bottom: 8px;
    list-style-type: disc;
    list-style-position: outside;
}

.close-policy-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: white;
    transition: color 0.3s ease;
    z-index: 10;
}

.close-policy-modal:hover {
    color: #ddd;
}

/* Make the modals responsive */
@media (max-width: 768px) {
    .policy-modal-content {
        width: 95%;
        max-height: 85vh;
    }
    
    .policy-content {
        padding: 20px;
    }
    
    .policy-content h3 {
        font-size: 18px;
    }
    
    .policy-content p {
        font-size: 15px;
    }
}

/* Version History Page Styles */
.version-history-hero {
    background-color: var(--light-blue-bg);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.version-history-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.03) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.version-history-hero .container {
    position: relative;
    z-index: 2;
}

.version-history-hero h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    font-weight: 800;
}

.version-history-hero h1::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 2px;
}

.version-history {
    padding: 100px 0;
    background-color: var(--secondary-color);
    position: relative;
}

.version-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.version-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--accent-color) 100%);
    opacity: 0.2;
}

.version-block {
    background-color: var(--light-gray);
    border-radius: 20px;
    margin-bottom: 40px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid var(--mid-gray);
    position: relative;
}

.version-header {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 25px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.version-header h2 {
    margin: 0;
    font-size: 22px;
    text-align: left;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.version-badge {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--secondary-color);
    padding: 6px 15px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.version-content {
    padding: 30px;
    background-color: var(--secondary-color);
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.version-section {
    background-color: var(--light-gray);
    border-radius: 15px;
    border: 1px solid var(--mid-gray);
    padding: 25px;
}

.version-section h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--mid-gray);
    display: flex;
    align-items: center;
    font-weight: 600;
}

.version-section h3 i {
    font-size: 20px;
    margin-right: 15px;
    color: var(--primary-color);
}

.version-section h3 .fa-star {
    color: #4CAF50;
}

.version-section h3 .fa-gear {
    color: #2196F3;
}

.version-section h3 .fa-bug-slash {
    color: #FF9800;
}

.version-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.version-section li {
    margin-bottom: 20px;
    position: relative;
    line-height: 1.6;
    color: var(--text-color);
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border: 1px solid var(--mid-gray);
}

.version-section li span.version-tag {
    flex-shrink: 0;
    margin-right: 15px;
}

.version-section li .item-content {
    flex-grow: 1;
    line-height: 1.7;
}

.version-section li:last-child {
    margin-bottom: 0;
}

.version-tag {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-right: 8px;
    color: white;
    flex-shrink: 0;
    width: auto;
    min-width: 65px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tag-new {
    background-color: #4CAF50;
}

.tag-enhanced {
    background-color: #2196F3;
    width: auto;
    min-width: 80px;
}

.tag-fixed {
    background-color: #FF9800;
}

/* Responsive styles for version history */
@media (max-width: 992px) {
    .version-history-hero h1 {
        font-size: 42px;
    }
    
    .version-timeline {
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .version-history-hero {
        padding: 80px 0;
    }
    
    .version-history-hero h1 {
        font-size: 36px;
    }
    
    .version-header {
        padding: 20px 25px;
    }
    
    .version-header h2 {
        font-size: 18px;
    }
    
    .version-content {
        padding: 25px;
        grid-template-columns: 1fr;
    }
    
    .version-section {
        padding: 20px;
    }
    
    .version-section h3 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .version-history-hero {
        padding: 60px 0;
    }
    
    .version-history-hero h1 {
        font-size: 32px;
    }
    
    .version-header {
        padding: 15px 20px;
    }
    
    .version-header h2 {
        font-size: 16px;
    }
    
    .version-content {
        padding: 20px;
    }
    
    .version-section {
        padding: 15px;
    }
    
    .version-section h3 {
        font-size: 16px;
    }
    
    .version-section li {
        font-size: 14px;
    }
}

/* About Page Styles */
.about-hero {
    background-color: var(--light-blue-bg);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.03) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    font-weight: 800;
}

.about-hero h1::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 2px;
}

.about-articulate, .our-mission, .products-section, .anti-crack-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.our-mission, .anti-crack-section {
    background-color: var(--light-blue-bg);
}

/* Updated about-content to use a card-style layout */
.about-content {
    display: flex;
    flex-direction: column;
    max-width: 960px;
    margin: 0 auto;
    background-color: var(--light-gray);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--mid-gray);
}

.about-text {
    padding: 40px;
    flex: 1;
}

.about-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text h2, .mission-content h2, .products-section h2, .anti-crack-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: left;
}

.about-text p, .mission-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.key-features {
    margin-top: 30px;
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--mid-gray);
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.key-features h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.key-features h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.key-features ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

.key-features li {
    margin-bottom: 0;
    padding: 15px;
    position: relative;
    line-height: 1.5;
    background-color: var(--light-gray);
    border-radius: 10px;
    padding-left: 40px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid transparent;
}

.key-features li:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: var(--mid-gray);
}

.key-features li::before {
    content: '✓';
    position: absolute;
    left: 15px;
    top: 15px;
    color: white;
    font-weight: bold;
    background-color: #4CAF50;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.key-features li strong {
    display: block;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.mission-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.mission-text li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.5;
    font-size: 18px;
}

.mission-text li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: var(--secondary-color);
}

.disclaimer-box {
    background-color: #FFF8E1;
    border: 2px solid #FFC107;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-box h2 {
    color: #FF6F00;
    margin-bottom: 20px;
}

.disclaimer-box p {
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.6;
}

.disclaimer-box p:last-child {
    margin-bottom: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background-color: var(--secondary-color);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--mid-gray);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.product-logo {
    background: linear-gradient(145deg, var(--primary-color), #333);
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-circle {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.product-card:hover .logo-circle {
    transform: scale(1.1);
}

.logo-circle i {
    font-size: 32px;
    color: white;
}

.product-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary-color);
    border-bottom: 2px solid var(--mid-gray);
    padding-bottom: 15px;
    position: relative;
}

.product-card h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.product-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
}

.product-card p:last-child {
    margin-bottom: 0;
    margin-top: auto;
    font-style: italic;
    font-size: 15px;
    color: #666;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.reason-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    border: 1px solid var(--mid-gray);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

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

.reason-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.reason-card p {
    font-size: 16px;
    line-height: 1.6;
}

.alternative-cta {
    margin-top: 60px;
    text-align: center;
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--mid-gray);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.alternative-cta h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.alternative-cta p {
    font-size: 18px;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Responsive styles for About page */
@media (max-width: 992px) {
    .about-hero h1 {
        font-size: 42px;
    }
    
    .mission-content {
        flex-direction: column;
    }
    
    .mission-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .about-text h2, .mission-content h2, .products-section h2, .anti-crack-section h2 {
        font-size: 32px;
    }
    
    .key-features ul {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0;
    }
    
    .about-hero h1 {
        font-size: 36px;
    }
    
    .about-articulate, .our-mission, .products-section, .anti-crack-section {
        padding: 60px 0;
    }
    
    .about-text {
        padding: 25px;
    }
    
    .about-image {
        height: 200px;
    }
    
    .disclaimer-section {
        padding: 40px 0;
    }
    
    .disclaimer-box {
        padding: 20px;
    }
    
    .about-text p, .mission-text p {
        font-size: 16px;
    }
    
    .mission-text li {
        font-size: 16px;
    }
    
    .product-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-logo {
        padding: 25px;
    }
    
    .logo-circle {
        width: 70px;
        height: 70px;
    }
    
    .logo-circle i {
        font-size: 28px;
    }
    
    .reason-card {
        padding: 20px;
    }
    
    .alternative-cta {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .about-hero {
        padding: 60px 0;
    }
    
    .about-hero h1 {
        font-size: 30px;
    }
    
    .about-text h2, .mission-content h2, .products-section h2, .anti-crack-section h2 {
        font-size: 26px;
    }
    
    .key-features {
        padding: 20px;
    }
    
    .key-features h3 {
        font-size: 20px;
    }
    
    .key-features li {
        padding: 12px 12px 12px 35px;
    }
    
    .key-features li::before {
        left: 12px;
    }
    
    .product-card h3 {
        font-size: 20px;
    }
    
    .product-logo {
        padding: 20px;
    }
    
    .logo-circle {
        width: 60px;
        height: 60px;
    }
    
    .logo-circle i {
        font-size: 24px;
    }
    
    .alternative-cta h3 {
        font-size: 22px;
    }
    
    .alternative-cta p {
        font-size: 16px;
    }
} 