:root {
    --primary: #83de43;
    --black: #000000;
    --white: #FFFFFF;
    --gray-light: #F4F4F4;
    --border-width: 3px;
    --neo-shadow: 6px 6px 0px var(--primary);
    --neo-shadow-black: 6px 6px 0px var(--black);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1000px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    line-height: 1.4;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 20px 40px;
    border: var(--border-width) solid var(--black);
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.2s ease;
    cursor: pointer;
    text-align: center;
    position: relative;
    background: var(--primary);
    color: var(--black);
    box-shadow: 4px 4px 0px var(--black);
}

.btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px var(--black);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn:active {
    transform: translate(2px, 2px);
    box-shadow: 0px 0px 0px var(--black);
}

.btn-white {
    background: var(--white);
    color: var(--black);
}

.btn-black {
    background: var(--black);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--black);
}

/* Header */
header {
    background: var(--white);
    padding: 15px 0;
    border-bottom: 2px solid var(--black);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    height: 45px;
    width: auto;
    display: block;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    border-bottom: var(--border-width) solid var(--black);
}

.hero-badge {
    background: var(--black);
    color: var(--white);
    display: inline-block;
    padding: 6px 14px;
    font-weight: 900;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-logos {
    display: inline-flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: nowrap;
    background: var(--white);
    padding: 15px 30px;
    border: 3px solid var(--black);
    box-shadow: 6px 6px 0px var(--primary);
    transform: rotate(-1.5deg);
}

.hero-logos:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 8px 8px 0px var(--primary);
    transition: all 0.3s ease;
}

.partner-logo {
    height: 50px;
    width: auto;
    opacity: 1;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.05);
}

.hero h1 {
    font-size: clamp(48px, 10vw, 84px);
    margin-bottom: 30px;
    clear: both;
}

.hero h1 .highlight-box {
    background: var(--primary);
    color: var(--black);
    padding: 0 10px;
    display: inline-block;
}

.hero h1 span.underline {
    border-bottom: 8px solid var(--black);
}

.hero .subtitle {
    font-size: 20px;
    max-width: 600px;
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1.5;
}

/* Hero Layout */
.hero-layout {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-visual {
    flex: 0.8;
    margin-top: 0;
}

.hero-showcase-card {
    position: relative;
    border: var(--border-width) solid var(--black);
    padding: 8px;
    background: var(--white);
    box-shadow: var(--neo-shadow-black);
    transform: rotate(2deg);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-showcase-card:hover {
    transform: rotate(0deg) scale(1.03);
    box-shadow: 8px 8px 0px var(--primary);
}

.hero-showcase-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    border: 2px solid var(--black);
}



/* Problem Section */
.problem-section {
    background: var(--black);
    color: var(--white);
    padding: 80px 0;
}

.problem-section h2 {
    font-size: 50px;
    margin-bottom: 10px;
}

.problem-section .highlight-text {
    color: var(--primary);
}

.subtext {
    font-size: 18px;
    margin-bottom: 60px;
    opacity: 0.9;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.problem-row {
    background: var(--white);
    color: var(--black);
    border: var(--border-width) solid var(--black);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 6px 6px 0px var(--primary);
    text-align: left;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.problem-row h3 {
    font-size: 22px;
    margin-bottom: 4px;
}

.problem-row p {
    font-size: 14px;
    font-weight: 500;
}

/* Gallery Portfolio Showcase */
.portfolio-section {
    padding: 80px 0;
    border-bottom: var(--border-width) solid var(--black);
}

.portfolio-section h2 {
    font-size: 50px;
    margin-bottom: 15px;
    text-align: left;
}

.portfolio-section .subtext {
    margin-bottom: 50px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-card {
    position: relative;
    border: var(--border-width) solid var(--black);
    background: var(--white);
    text-align: left;
    box-shadow: var(--neo-shadow-black);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 8px 14px 0px var(--primary);
}

.portfolio-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}



/* How it Works */
.how-it-works {
    background: var(--primary);
    padding: 80px 0;
    border-top: var(--border-width) solid var(--black);
    border-bottom: var(--border-width) solid var(--black);
}

.how-it-works h2 {
    font-size: 50px;
    margin-bottom: 60px;
    background: var(--black);
    color: var(--white);
    display: inline-block;
    padding: 0 20px;
}

.steps-list {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: stretch;
}

.step-card {
    background: var(--white);
    border: var(--border-width) solid var(--black);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    box-shadow: 8px 8px 0px var(--primary);
    text-align: center;
    flex: 1;
    transition: transform 0.2s ease;
}

.step-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0px var(--black);
}

.step-card h3 {
    margin-bottom: 20px;
}

.step-card p {
    line-height: 1.6;
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    flex-shrink: 0;
    border: 3px solid var(--black);
    box-shadow: 4px 4px 0px var(--primary);
}

/* Pricing */
.pricing {
    padding: 80px 0;
}

.pricing h2 {
    font-size: 50px;
    margin-bottom: 10px;
}

.pricing-container {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: stretch;
    justify-content: center;
}

.price-card {
    border: var(--border-width) solid var(--black);
    width: 100%;
    flex: 1;
    background: var(--white);
    text-align: left;
    display: flex;
    flex-direction: column;
    box-shadow: var(--neo-shadow-black);
}

.price-header {
    background: var(--black);
    color: var(--white);
    padding: 24px;
}

.price-header.featured {
    background: var(--primary);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    color: var(--white);
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 900;
    border: 2px solid var(--black);
    white-space: nowrap;
    box-shadow: 3px 3px 0px var(--white);
}

.price-amount {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
}

.price-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.price-features {
    list-style: none;
    margin-bottom: 30px;
    flex: 1;
}

.price-features li {
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features li::before {
    content: "■";
    color: var(--primary);
}

/* Trust Us */
.trust-us {
    background: var(--black);
    color: var(--white);
    padding: 80px 0;
}

.trust-us h2 {
    font-size: 50px;
    margin-bottom: 60px;
}

.trust-card {
    border: 2px solid var(--white);
    padding: 40px;
    margin-bottom: 24px;
    text-align: left;
}

.trust-card h4 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* FAQ */
.faq {
    padding: 80px 0;
}

.faq h2 {
    font-size: 50px;
    margin-bottom: 50px;
}

details {
    border: var(--border-width) solid var(--black);
    margin-bottom: 15px;
    padding: 20px;
    background: var(--white);
    transition: all 0.2s ease;
}

details:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0px var(--black);
}

summary {
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "+";
    font-size: 24px;
    transition: transform 0.3s ease;
}

details[open] summary::after {
    transform: rotate(45deg);
}

/* Ready Section */
.ready-section {
    background: var(--primary);
    padding: 80px 20px;
    border-top: var(--border-width) solid var(--black);
}

.ready-card {
    background: var(--white);
    border: var(--border-width) solid var(--black);
    padding: 20px;
    display: inline-block;
    margin-bottom: 40px;
}

.ready-card h2 {
    font-size: 48px;
}

/* Footer */
footer {
    padding: 60px 0;
    border-top: var(--border-width) solid var(--black);
    text-align: center;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.footer-nav a {
    text-decoration: none;
    color: var(--black);
    font-weight: 700;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    h1 {
        font-size: 60px !important;
    }

    .header-flex .btn {
        display: none !important;
    }

    .btn {
        padding: 15px 10px;
        font-size: 14px;
        white-space: nowrap;
        width: 100%;
    }

    .steps-list {
        flex-direction: column;
        gap: 20px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-layout {
        flex-direction: column;
    }

    .hero-visual {
        margin-top: 40px;
    }

    .hero-logos {
        gap: 18px;
        padding: 12px 20px;
        transform: rotate(0deg);
    }

    .hero-logos span {
        font-size: 12px !important;
        padding-right: 12px !important;
    }

    .partner-logo {
        height: 42px;
    }

    .hero-logos svg.partner-logo {
        width: 42px !important;
        height: 42px !important;
    }

    .pricing-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .price-card {
        max-width: 450px;
    }
}