:root {
    --primary: #e6b400;
    --primary-light: #f7d349;
    --primary-dark: #c89a00;
    --dark: #232323;
    --light: #ffffff;
    --gray: #f5f5f7;
    --gray-dark: #86868b;
    --border-radius: 12px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Navigation */
.nav-container {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 5%; /* Even thinner */
    max-width: 1400px;
    margin: 0 auto;
}

.nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
    z-index: 1001;
    position: relative;
    padding: 0;
    margin: 0;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
    padding: 0;
}

.logo-icon {
    width: 3em; /* Slightly smaller for a thinner nav */
    height: 3em;
    margin-right: 8px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 24px; /* Slightly less gap */
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-weight: 500;
    padding: 4px 0; /* Even less vertical padding */
}

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

.download-btn {
background-color: var(--primary);
color: var(--light) !important;
padding: 10px 44px;
border-radius: 22px;
font-weight: 600;
font-size: 1.08rem;
box-shadow: 0 2px 8px rgba(230, 180, 0, 0.10);
margin-left: 12px;
min-width: 180px;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.download-btn span {
    padding: 0;
    display: block;
    width: auto;
    text-align: center;
}

.download-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px) scale(1.04);
    box-shadow: 0 4px 12px rgba(230, 180, 0, 0.12);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: var(--primary);
}

.hero p {
    font-size: 1.2rem;
    color: var(--gray-dark);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-image {
    flex: 6; /* Further increase the flex ratio to make the image larger */
    max-width: 100%; /* Ensure it takes up the available space */
    height: auto; /* Maintain aspect ratio */
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary);
    color: var(--light);
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    transition: var(--transition);
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(230, 180, 0, 0.2);
}

/* Features Section */
.features {
    background-color: var(--light);
    padding: 100px 5%;
    text-align: center;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: var(--light);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--gray-dark);
}

/* Widgets Section */
.widgets {
    background-color: var(--gray);
    padding: 100px 5%;
}

.widgets h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
}

.widget-showcase {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    gap: 50px;
}

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

.widget-info {
    flex: 1;
}

.widget-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.widget-info p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--gray-dark);
}

.widget-info ul {
    list-style-type: none;
}

.widget-info ul li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.widget-info ul li:before {
    content: "✓";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.widget-preview {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.widget-preview img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    max-width: 90%;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: var(--border-radius);
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.video-placeholder:hover {
    background: rgba(0, 0, 0, 0.7);
}
.video-container {
    display: flex; /* Use flexbox */
    justify-content: center; /* Horizontally center the video */
    align-items: center; /* Vertically center the video */
    border-radius: 15px; /* Keeps the corners rounded */
    overflow: hidden; /* Ensures content stays within the rounded corners */
    box-shadow: var(--shadow); /* Applies the shadow */
}
.video-container video {
    width: 100%; /* Make the video fill the container's width */
    height: auto; /* Maintain aspect ratio */
}

.play-button {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Testimonial Section */
.testimonial {
    background-color: var(--primary);
    color: var(--light);
    padding: 80px 20px;
    text-align: center;
}

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

.quote i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.quote p {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 20px;
}
.logo {
            display: flex;
            align-items: center;
            padding: 10px;
        }

        .logo-icon {
            width: 4em;
            height: 4em;
            margin-right: 10px;
        }

        .footer-icon {
            max-width: 100%;
            height: auto;
            vertical-align: middle;
        }
.quote .author {
    font-size: 1.1rem;
    font-style: italic;
}

/* Download Section */
.download {
    padding: 100px 20px;
    text-align: center;
    background-color: var(--gray);
}

.download h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.download p {
    color: var(--gray-dark);
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.download-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary);
    color: var(--light);
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition);
    margin-bottom: 20px;
}

.download-button i {
    margin-right: 10px;
    font-size: 1.4rem;
}

.download-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(230, 180, 0, 0.2);
}

.compatibility {
    color: var(--gray-dark);
}

/* FAQ Section */
.faq {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.faq h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
}

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

.faq-item {
    padding: 30px;
    border-radius: var(--border-radius);
    background-color: var(--gray);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.faq-item p {
    color: var(--gray-dark);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 40px 20px; /* Reduced padding */
}

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

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.footer-links h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

.footer-links a {
    color: var(--gray);
    font-size: 0.9rem;
}

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

.footer-newsletter h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-newsletter p {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--gray);
}

.footer-newsletter form {
    display: flex;
}

.footer-newsletter input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 0.9rem;
}

.footer-newsletter button {
    background-color: var(--primary);
    color: var(--light);
    border: none;
    padding: 10px 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.footer-newsletter button:hover {
    background-color: var(--primary-dark);
}

.copyright {
    text-align: center;
    padding-top: 10px; /* Reduced padding */
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.footer-horizontal {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: transparent;
    color: #fff;
    font-size: 0.9rem;
    width: 100%;
}
.footer-horizontal > .footer-logo {
    margin-right: 40px;
    min-width: 260px;
    flex-shrink: 0;
}
.footer-horizontal > .footer-center {
    flex: 1 1 0;
    text-align: center;
    margin: 0;
    white-space: normal;
}
.footer-horizontal > span:not(.footer-center) {
    margin: 0 40px;
    white-space: nowrap;
    flex-shrink: 0;
}
.footer-horizontal a {
    color: #fff;
    text-decoration: none;
}
.footer-horizontal a:hover {
    text-decoration: underline;
}
@media (max-width: 900px) {
    .footer-horizontal > .footer-logo,
    .footer-horizontal > span:not(.footer-center) {
        margin: 0 10px;
    }
}
@media (max-width: 600px) {
    .footer-horizontal {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .footer-horizontal > .footer-center {
        text-align: left;
        margin: 10px 0;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 5%;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .widget-showcase {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center items */
    }

    .widget-showcase.reverse {
        flex-direction: column-reverse; /* Stack items vertically with image below description */
    }

    .widget-preview,
    .widget-info {
        width: 100%; /* Ensure both sections take full width */
        text-align: center; /* Center text for better appearance */
    }

    .widget-preview {
        margin-bottom: 20px; /* Add spacing between image and description */
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .features h2, .widgets h2, .download h2, .faq h2 {
        font-size: 2rem;
    }
    
    .faq-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}