:root {
    --primary-color: #f7a600; /* Zemo yellow */
    --text-color: #333;
    --light-gray: #f9f9f9;
    --white: #ffffff;
    --container-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

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

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

header {
    padding: 20px 0;
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

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

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

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

.auth-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-signin {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-block;
    transition: transform 0.3s, background 0.3s;
}

.btn-primary:hover {
    background: #e09600;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}

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

/* Hero Section */
.hero {
    padding: 120px 0;
    background: linear-gradient(135deg, #fff 0%, #fff9f0 100%);
    position: relative;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

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

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
}

.features-list {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.features-list span {
    font-weight: 700;
    color: #000;
    position: relative;
}

.features-list span:not(:last-child)::after {
    content: "•";
    margin-left: 15px;
    color: var(--primary-color);
}

.cta-form {
    display: flex;
    gap: 10px;
    background: white;
    padding: 10px;
    border-radius: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 500px;
}

.cta-form input {
    flex: 1;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    outline: none;
    font-size: 1rem;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img:first-child {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.shape {
    position: absolute;
    z-index: -1;
}

.shape-3 {
    top: -30px;
    right: -30px;
    width: 100px;
}

.shape-44 {
    bottom: -30px;
    left: -30px;
    width: 80px;
}

/* Trusted By */
.trusted-by {
    padding: 60px 0;
    text-align: center;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.trusted-by h2 {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.logos img {
    height: 45px;
    filter: grayscale(1);
    opacity: 0.5;
    transition: 0.3s;
}

.logos img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.solution-card {
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}

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

.solution-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.solution-card h3 {
    margin-bottom: 15px;
}

/* Features Content */
.features-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.features-text {
    flex: 1;
}

.testimonial {
    margin-top: 40px;
    padding: 30px;
    background: white;
    border-left: 5px solid var(--primary-color);
    border-radius: 0 15px 15px 0;
    font-style: italic;
    font-size: 1.1rem;
}

.testimonial cite {
    display: block;
    margin-top: 15px;
    font-weight: 700;
    font-style: normal;
    color: var(--primary-color);
}

.features-visual {
    flex: 1;
}

.visual-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(45deg, #f7a600, #ffcc66);
    border-radius: 30px;
    opacity: 0.2;
}

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

.pricing-card {
    padding: 50px 40px;
    background: white;
    border-radius: 20px;
    border: 1px solid #eee;
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(247, 166, 0, 0.1);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 30px;
    font-weight: 700;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    color: #555;
}

.pricing-features li::before {
    content: "✓";
    color: var(--primary-color);
    margin-right: 10px;
    font-weight: bold;
}

/* Contact Card */
.contact-card {
    background: var(--primary-color);
    color: white;
    padding: 60px;
    border-radius: 30px;
    text-align: center;
}

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

.contact-card p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

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

.contact-card .btn-primary:hover {
    background: #f0f0f0;
}

/* Footer */
footer {
    background: #111;
    color: #fff;
    padding: 80px 0 40px;
}

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

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

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

.footer-links h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    color: #777;
    font-size: 0.9rem;
}

.legal-links a {
    color: #777;
    text-decoration: none;
    margin-left: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content, .features-content {
        flex-direction: column;
        text-align: center;
    }
    .nav-links, .auth-buttons {
        display: none;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .cta-form {
        margin: 0 auto;
    }
    .features-list {
        justify-content: center;
    }
    .pricing-card.popular {
        transform: scale(1);
    }
}
