:root {
    --primary-color: #D70F64;
    /* Magenta */
    --primary-light: #FFF0F5;
    --secondary-color: #8ACEED;
    /* Blue */
    --secondary-light: #E3F2FD;
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --bg-white: #FFFFFF;
    --bg-off-white: #FAFAFA;
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

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

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

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    z-index: 1001;
    /* Ensure it's above the menu */
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
/* Mobile Navigation */
@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);

        /* Hiding mechanism */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease-in-out;
        z-index: 1000;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    /* Hamburger Animation */
    .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);
    }
}

.btn-primary {
    background: var(--text-dark);
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    transition: transform 0.2s;
}

.btn-primary:hover {
    transform: scale(1.05);
}

/* Hero */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    text-align: center;
    background: radial-gradient(circle at 50% 50%, var(--primary-light) 0%, rgba(255, 255, 255, 0) 70%);
}

.hero h1 {
    font-size: 5rem;
    line-height: 0.9;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    color: var(--text-dark);
}

.hero h1 .highlight {
    color: var(--text-dark);
}

.hero p {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 3rem;
}

.hero-image-container {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.floating-phone {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(-5deg);
    transition: transform 0.5s ease;
}

.floating-phone:hover {
    transform: rotate(0deg) scale(1.02);
}

.float-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    left: -80px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    right: -80px;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Feature Rows */
.feature-row {
    padding: 100px 0;
}

.row-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

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

.text-content {
    flex: 1;
}

.text-content h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

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

.text-secondary {
    color: var(--secondary-color);
}

.text-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 400px;
}

.feature-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

.visual-content {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Mock UI Elements */
.mock-card {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    width: 280px;
}

.ai-card {
    text-align: center;
}

.ai-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-mockup {
    width: 100%;
    max-width: 280px;
    /* Limit width to match phone size */
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    /* Add shadow for depth */
    transition: transform 0.3s;
}

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

.ai-lines .line {
    height: 8px;
    background: #F0F0F0;
    border-radius: 4px;
    margin-bottom: 8px;
}

.line.long {
    width: 100%;
}

.line.medium {
    width: 70%;
    margin: 0 auto;
}

.line.short {
    width: 40%;
    margin: 0 auto;
}

.ai-badge {
    background: linear-gradient(135deg, var(--primary-color), #FF4081);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Tips */
.posting-tips {
    padding: 100px 0 150px;
    /* Extra bottom padding as requested */
    background: var(--bg-off-white);
}

.tips-grid-detailed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    /* Limit width for better 2x2 look */
    margin: 0 auto;
}

@media (max-width: 768px) {
    .tips-grid-detailed {
        grid-template-columns: 1fr;
    }
}

.mock-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.grid-item {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    font-weight: 600;
    text-align: center;
}

.grid-item.active {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(138, 206, 237, 0.4);
}

.chat-bubble-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 300px;
}

.bubble {
    padding: 1rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.bubble.left {
    background: white;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.bubble.right {
    background: var(--primary-color);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-off-white);
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.steps-row {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.step-item {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.step-item:hover {
    transform: translateY(-10px);
}

.step-num {
    width: 50px;
    height: 50px;
    background: var(--secondary-light);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.tip-card-modern {
    padding: 2.5rem 2rem;
    border-radius: 24px;
    text-align: left;
    /* Align text left for the modern box look */
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.tip-card-modern:hover {
    transform: translateY(-5px);
}

/* Colorful Cards */
.tip-card-modern:nth-child(1) {
    background: #E3F2FD;
    /* Light Blue */
}

.tip-card-modern:nth-child(2) {
    background: #FFF3E0;
    /* Light Orange */
}

.tip-card-modern:nth-child(3) {
    background: #F1F8E9;
    /* Light Green */
}

.tip-card-modern:nth-child(4) {
    background: #FCE4EC;
    /* Light Pink */
}

.tip-icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.6);
    /* Semi-transparent white */
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 0 1.5rem 0;
    /* Align left */
    backdrop-filter: blur(5px);
}

.tip-card-modern h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 800;
}

.tip-card-modern p {
    font-size: 1rem;
    color: var(--text-dark);
    opacity: 0.8;
    line-height: 1.5;
}

/* Download */
.download-section {
    padding: 100px 0;
    text-align: center;
    background: var(--text-dark);
    color: white;
}

.download-section h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
}

.btn-download-large {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.3s;
}

.btn-download-large:hover {
    transform: scale(1.05);
}

.qr-box {
    margin-top: 3rem;
    background: white;
    width: 120px;
    height: 120px;
    margin: 3rem auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    border-radius: 12px;
}

/* Contact */
.contact-section {
    padding: 80px 0;
    background: white;
    text-align: center;
    border-top: 1px solid #F0F0F0;
}

.contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-content p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-email {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-email:hover {
    color: var(--primary-variant);
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #111;
    color: #888;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

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

.copyright {
    text-align: center;
    font-size: 0.8rem;
    border-top: 1px solid #222;
    padding-top: 2rem;
}

/* Mobile */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .row-layout {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

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

    .text-content p {
        margin: 0 auto;
    }

    .steps-row {
        flex-direction: column;
    }

    .card-1,
    .card-2 {
        display: none;
    }
}