/* ------------------- */
/* Global Styles       */
/* ------------------- */
:root {
    --black: #0c0c0c;
    --primary: #cbfd4b; /* Brighter yellow-green from screenshot */
    --border-black: #212121;
    --light-black: #1b1b1b;
    --green: #56d37d;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ------------------- */
/* Typography          */
/* ------------------- */
h1, h2 {
    margin: 0;
    font-weight: 600;
    line-height: 1.2;
}
h1 { font-size: 48px; }
h2 { font-size: 40px; }
p { margin: 0; color: #c9c9c9; }
a { text-decoration: none; color: inherit; }

.gradient-text {
    background-image: linear-gradient(90deg, var(--green), var(--primary));
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

/* ------------------- */
/* Layout & Containers */
/* ------------------- */
.container {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 2em;
}

.section {
    position: relative;
    padding: 6rem 0;
}

/* ------------------- */
/* Navbar              */
/* ------------------- */
.navbar {
    background-color: var(--black);
    border-bottom: 1px solid var(--border-black);
    height: 80px;
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand-logo {
    max-height: 28px;
}
.button.nav {
    background-color: var(--primary);
    color: var(--black);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 20px;
    transition: transform 0.2s ease-out, filter 0.2s ease-out;
}
.button.nav:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* ------------------- */
/* Hero Section        */
/* ------------------- */
.hero-section {
    text-align: center;
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}
.hero-wrapper {
    max-width: 800px;
    margin: 0 auto;
}
.hero-wrapper h1 {
    font-size: 56px;
    line-height: 1.1;
}
.hero-wrapper p {
    font-size: 20px;
    margin-top: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.hero-circles-holder {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
    opacity: 0.25; /* Increased opacity for visibility */
}
.circle {
    background-image: linear-gradient(var(--green), var(--primary));
    border-radius: 50%;
    position: absolute;
    padding: 2px; /* This creates the border thickness */
}
.circle._01 { width: 800px; height: 800px; }
.circle._02 { width: 1200px; height: 1200px; opacity: 0.5; }
.circle-stroke {
    background-color: var(--black);
    border-radius: 50%;
    width: 100%;
    height: 100%;
}

/* ------------------- */
/* "We remove" Section */
/* ------------------- */
.grid-section {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
}
.timeline-holder {
    position: relative;
    display: flex;
    justify-content: center;
}
.green-line {
    width: 2px;
    height: 100%;
    background-color: var(--primary);
    opacity: 0.2;
}
.logo-line-holder {
    position: sticky;
    top: 200px;
    height: 50px;
    width: 50px;
}
.logo-image-line {
    position: absolute;
    width: 50px;
    left: 50%;
    /* transform is now handled by JS for smooth animation */
}
.grid-content {
    padding-top: 2rem;
}
.grid-title-holder {
    margin-bottom: 60px;
}
.paragraph-m {
    font-size: 20px;
    color: #c9c9c9;
    margin-top: 1rem;
}
.smaller { font-size: 16px; opacity: 0.8; }
.simple-app-holder {
    background-color: var(--light-black);
    border-radius: 20px;
    padding: 40px;
}
.simple-app-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.app-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.app-features-icon { width: 20px; }
.simple-app-image { width: 100%; }
.how-to-mobile { display: none; }

/* ------------------- */
/* Options Section     */
/* ------------------- */
.center-text { text-align: center; margin-bottom: 2rem; }
.pricing-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}
.pricing-table-holder {
    background-color: var(--light-black);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-table-holder:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.pricing-title { font-size: 24px; font-weight: 600; }
.pricing-description { margin: 1.5rem 0; opacity: 0.7; }
.price-holder { display: flex; align-items: baseline; gap: 5px; }
.price { font-size: 48px; font-weight: 600; }
.dollar-sign { font-size: 20px; opacity: 0.7; }
.pricing-button-holder { width: 100%; margin-top: 18px; }
.button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 20px;
    font-weight: 600;
    transition: transform 0.2s ease-out, filter 0.2s ease-out;
    background-color: var(--primary);
    color: var(--black);
}
.button:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}
.button.outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}
.button.outline:hover {
    background: var(--primary);
    color: var(--black);
}
.pricing-gradient {
    border-radius: 22px; /* Slightly larger for border effect */
    padding: 2px;
    background-image: linear-gradient(120deg, var(--green), var(--primary));
}

/* ------------------- */
/* Testimonial Section */
/* ------------------- */
.review-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
}
.title.pii-quote { font-size: 32px; font-weight: 500; }
.review-person-title { margin-top: 2rem; font-weight: 500; opacity: 0.8; }
.white-text { color: #fff; font-weight: 600; }
.review-image {
    width: 100%;
    border-radius: 24px;
}

/* ------------------- */
/* Footer              */
/* ------------------- */
.footer {
    border-top: 1px solid var(--border-black);
    padding: 4rem 0;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
}
.footer-description { margin-top: 1rem; max-width: 300px; opacity: 0.7; }
.footer-description a { color: var(--primary); transition: color 0.2s; }
.footer-description a:hover { color: #fff; }
.footer-heading { font-weight: 600; margin-bottom: 1rem; opacity: 0.9; }
.footer-grid-content a { display: block; margin-bottom: 0.75rem; opacity: 0.7; transition: opacity 0.2s; }
.footer-grid-content a:hover { opacity: 1; }

/* ------------------- */
/* Responsive Design   */
/* ------------------- */
@media (max-width: 991px) {
    h1 { font-size: 40px; }
    h2 { font-size: 32px; }
    .grid-section { grid-template-columns: 60px 1fr; }
    .simple-app-features { grid-template-columns: 1fr 1fr; }
    .review-grid { grid-template-columns: 1fr; }
    .review-image { display: none; }
}

@media (max-width: 767px) {
    .section { padding: 4rem 0; }
    .hero-wrapper h1 { font-size: 36px; }
    .hero-wrapper p { font-size: 18px; }
    .grid-section { grid-template-columns: 40px 1fr; gap: 20px;}
    .simple-app-holder { display: none; }
    .how-to-mobile {
        display: grid;
        gap: 1rem;
    }
    .carrer-container {
        background: var(--light-black);
        padding: 1.5rem;
        border-radius: 12px;
    }
    .career-title { font-size: 18px; font-weight: 600; margin-bottom: 0.5rem; }
    .career-description { opacity: 0.7; }
    .pricing-table { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
}
