/* Basic Clean Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

:root {
    --bg-color: #ffffff;
    --text-main: #000000;
    --text-sub: #555555;
    --primary-btn: #000000;
    --primary-btn-text: #ffffff;
    --accent-green: #0ACF83;
    --accent-blue: #1ABCFE;
    --accent-purple: #A259FF;
    --accent-orange: #F24E1E;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: transparent;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo svg {
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 24px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links li a:hover {
    opacity: 0.7;
}

.chevron {
    font-size: 12px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile menu styles */
@media (max-width: 768px) {

    .nav-links,
    .nav-right {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-links.active,
    .nav-right.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-right {
        border-top: 1px solid #eee;
        padding-top: 20px;
        margin-top: 10px;
    }

    .nav-right .nav-login,
    .nav-right .nav-cta {
        margin: 10px 0;
    }
}

.nav-login {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
}

.nav-cta {
    text-decoration: none;
    background-color: var(--text-main);
    color: var(--primary-btn-text);
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 500;
    transition: transform 0.2s;
}

.nav-cta:hover {
    transform: translateY(-1px);
}

/* Hero */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 20px 60px;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-main);
    max-width: 600px;
    margin-bottom: 40px;
}

.btn-primary {
    background-color: var(--text-main);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    cursor:pointer;
}

/* Abstract Shapes for Hero Visual */
.hero-visual {
    margin-top: 60px;
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.abstract-shape {
    position: relative;
    width: 100%;
    height: 100%;
}

/* CSS Shapes aiming for a Figma-esque look */
.shape {
    position: absolute;
    border-radius: 20px;
    opacity: 0.9;
}

.s1 {
    width: 200px;
    height: 200px;
    background: #FF7262;
    top: 20%;
    left: 20%;
    transform: rotate(-15deg);
    border-radius: 50% 50% 0 50%;
}

.s2 {
    width: 250px;
    height: 250px;
    background: #A259FF;
    top: 10%;
    right: 20%;
    transform: rotate(15deg);
    border-radius: 40px;
}

.s3 {
    width: 180px;
    height: 180px;
    background: #1ABCFE;
    bottom: 10%;
    left: 45%;
    border-radius: 50%;
}

/* Responsive shapes */
@media (max-width: 768px) {
    .hero-visual {
        height: 250px;
    }

    .s1 {
        width: 120px;
        height: 120px;
        top: 20%;
        left: 10%;
    }

    .s2 {
        width: 150px;
        height: 150px;
        top: 10%;
        right: 10%;
    }

    .s3 {
        width: 100px;
        height: 100px;
        bottom: 10%;
        left: 40%;
    }
}

/* Companies */
.companies {
    text-align: center;
    padding: 40px 20px;
    background: #fdfdfd;
}

.companies p {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

.logo-marquee {
    display: flex;
    gap: 40px;
    justify-content: center;
    color: #aaa;
    font-weight: 700;
    font-size: 24px;
    flex-wrap: wrap;
}

/* Features */
.feature-section {
    display: flex;
    padding: 100px 80px;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.feature-section.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
    max-width: 500px;
}

.feature-text h2 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
}

.feature-text p {
    font-size: 20px;
    color: var(--text-sub);
    margin-bottom: 30px;
}

.link-arrow {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 18px;
    border-bottom: 2px solid black;
    padding-bottom: 2px;
}

.feature-image-container {
    flex: 1;
    height: 400px;
    background: #f0f0f0;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-box {
    width: 80%;
    height: 80%;
    background: #e0e0e0;
    border-radius: 12px;
    border: 2px dashed #aaa;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 80px 60px;
}

.footer-cols {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
}

.col h4 {
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 600;
}

.col a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 12px;
    opacity: 0.8;
}

.col a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .navbar {
        padding: 20px 30px;
    }

    .nav-left {
        gap: 30px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero {
        padding: 60px 20px 40px;
    }

    .hero-title {
        font-size: 60px;
    }

    .hero-subtitle {
        font-size: 18px;
        max-width: 500px;
    }

    .feature-section {
        padding: 80px 40px;
        gap: 40px;
    }

    .feature-text h2 {
        font-size: 40px;
    }

    .feature-text p {
        font-size: 18px;
    }

    .footer {
        padding: 60px 40px;
    }

    .companies {
        padding: 40px 20px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .companies {
        padding: 40px 20px;
    }

    .logo-marquee {
        gap: 20px;
        font-size: 20px;
    }

    .feature-section {
        flex-direction: column;
        padding: 60px 20px;
        text-align: center;
    }

    .feature-section.reverse {
        flex-direction: column;
    }

    .feature-text {
        max-width: 100%;
    }

    .feature-text h2 {
        font-size: 32px;
    }

    .col h4 {
        margin-bottom: 16px;
    }

    .footer-cols {
        flex-direction: column;
        gap: 32px;
    }

    .footer {
        padding: 60px 24px;
    }
}