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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #f5f5dc 0%, #d4ed8f 50%, #a8d85f 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #a8d85f 0%, #7cb342 100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.gradient-overlay-2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.gradient-overlay-3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 70vw 100vh at 0% 50%, rgba(168, 216, 95, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse 60vw 90vh at 100% 50%, rgba(212, 237, 143, 0.4) 0%, transparent 55%),
        white;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.gradient-overlay-4 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 100vw 90vh at 0% 100%, rgba(200, 220, 100, 0.5) 0%, transparent 70%),
        radial-gradient(ellipse 85vw 80vh at 100% 0%, rgba(100, 180, 130, 0.4) 0%, transparent 65%),
        #faf8e8;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.gradient-overlay-5 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 90vh;
}

.content {
    padding-right: 40px;
}

.logo {
    margin-bottom: 60px;
    overflow: visible;
}

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

h1 {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.subtitle {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 60px;
}

.cta-button {
    background: linear-gradient(135deg, #a8d85f 0%, #7cb342 100%);
    color: #1a1a1a;
    font-size: 24px;
    font-weight: 800;
    padding: 20px 60px;
    border: none;
    border-radius: 50px;
    cursor: default;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    display: inline-block;
    pointer-events: none;
}

.phone-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    width: 465px;
    height: 788px;
    background: #1a1a1a;
    border-radius: 45px;
    padding: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-notch {
    display: none;
}

.phone-screen {
    width: 445px;
    height: 768px;
    border-radius: 35px;
    overflow: hidden;
    background: white;
}

.phone-screen img {
    width: 445px;
    height: 768px;
    object-fit: cover;
    display: block;
}

@media (max-width: 1200px) {
    .container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .content {
        padding-right: 0;
    }

    .logo {
        display: flex;
        justify-content: center;
    }

    h1 {
        font-size: 48px;
    }

    .subtitle {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 40px 20px;
    }

    h1 {
        font-size: 36px;
    }

    .subtitle {
        font-size: 22px;
    }

    .phone-frame {
        width: 90vw;
        max-width: 340px;
        height: auto;
        aspect-ratio: 465 / 788;
    }

    .phone-screen {
        width: 100%;
        height: auto;
        aspect-ratio: 445 / 768;
    }

    .phone-screen img {
        width: 100%;
        height: auto;
    }

    .logo img {
        height: auto;
        width: 80vw;
        max-width: 430px;
    }
}

.info-section {
    background: transparent;
    padding: 60px 40px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.info-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    align-items: center;
}

.info-content {
    padding-right: 40px;
}

.info-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.info-footnote {
    font-size: 14px;
    line-height: 1.6;
    color: #1a1a1a;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 400px;
    margin: 0 auto;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
}

.card-number {
    font-size: 48px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.card-text {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a1a;
}

@media (max-width: 1200px) {
    .info-container {
        grid-template-columns: 1fr;
        gap: 60px;
        justify-items: center;
    }

    .info-content {
        padding-right: 0;
        text-align: center;
    }

    .info-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .info-section {
        padding: 60px 20px;
    }

    .info-title {
        font-size: 28px;
    }

    .card-number {
        font-size: 36px;
    }

    .card-text {
        font-size: 16px;
    }

    .info-card {
        padding: 30px;
    }
}

.apples-section {
    background: transparent;
    padding: 60px 40px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
}

.apples-background {
    position: absolute;
    right: -150px;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    opacity: 0.15;
    z-index: 0;
}

.apples-background img {
    width: 100%;
    height: auto;
    display: block;
}

.apples-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.apples-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.apples-subtitle {
    font-size: 44px;
    font-weight: 700;
    color: #4caf50;
    margin-bottom: 60px;
    text-align: center;
}

.comparison-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-card {
    padding: 0;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.highlight-red {
    color: #f44336;
    font-weight: 900;
    font-size: 28px;
}

.highlight-green {
    color: #4caf50;
    font-weight: 900;
    font-size: 28px;
}

.card-description {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
}

@media (max-width: 1200px) {
    .comparison-cards {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .apples-title {
        font-size: 36px;
    }

    .apples-subtitle {
        font-size: 28px;
    }

    .apples-background {
        width: 500px;
        right: -100px;
    }
}

@media (max-width: 768px) {
    .apples-section {
        padding: 60px 20px;
    }

    .apples-title {
        font-size: 28px;
    }

    .apples-subtitle {
        font-size: 24px;
    }

    .card-title {
        font-size: 18px;
    }

    .card-description {
        font-size: 14px;
    }

    .apples-background {
        width: 300px;
        right: -80px;
        opacity: 0.15;
    }
}

.groceries-section {
    background: transparent;
    padding: 50px 40px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.groceries-full-container {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
}

.groceries-header {
    margin-bottom: 80px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.groceries-content-wrapper {
    display: grid;
    grid-template-columns: minmax(300px, 450px) 1fr;
    gap: 20px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.groceries-background {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.groceries-background img {
    width: 100%;
    height: auto;
    display: block;
}

.inline-logo {
    height: 32px;
    width: auto;
    vertical-align: text-top;
    display: inline-block;
}

.tagline-full {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
    color: #7cb342;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 80px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-title {
    font-size: 20px;
    font-weight: 900;
    color: #1a1a1a;
    text-transform: uppercase;
}

.feature-description {
    font-size: 18px;
    line-height: 1.6;
    color: #1a1a1a;
}

@media (max-width: 1200px) {
    .tagline-full {
        font-size: 24px;
    }

    .inline-logo {
        height: 24px;
    }

    .features-grid {
        gap: 50px 60px;
    }
}

@media (max-width: 768px) {
    .groceries-section {
        padding: 60px 20px;
    }

    .groceries-content-wrapper {
        grid-template-columns: 1fr;
    }

    .groceries-background {
        display: none;
    }

    .tagline-full {
        font-size: 18px;
    }

    .inline-logo {
        height: 18px;
    }

    .feature-title {
        font-size: 18px;
    }

    .feature-description {
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.how-it-works-section {
    background: transparent;
    padding: 60px 40px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.how-it-works-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.how-it-works-title {
    font-size: 56px;
    font-weight: 900;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 100px;
}

.steps-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 0 40px;
    position: relative;
}

.step-card {
    border-radius: 30px;
    padding: 60px 50px;
    width: 300px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transform: skewX(-10deg);
}

.step-card p {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: #1a1a1a;
    transform: skewX(10deg);
}

.step-1 {
    background: rgba(200, 220, 150, 0.6);
}

.step-2 {
    background: rgba(90, 180, 130, 0.6);
}

.step-3 {
    background: rgba(190, 215, 140, 0.6);
}

.step-4 {
    background: rgba(75, 165, 120, 0.6);
}

@media (max-width: 1200px) {
    .steps-wrapper {
        flex-direction: column;
        gap: 0;
    }

    .step-card {
        margin-right: 0;
        width: 100%;
        max-width: 400px;
        transform: skewX(0deg);
        border-radius: 0;
    }

    .step-card:first-child {
        border-radius: 30px 30px 0 0;
    }

    .step-card:last-child {
        border-radius: 0 0 30px 30px;
    }

    .step-card p {
        transform: skewX(0deg);
    }

    .how-it-works-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: 60px 20px;
    }

    .how-it-works-title {
        font-size: 32px;
        margin-bottom: 60px;
    }

    .step-card {
        padding: 40px 30px;
        min-height: 200px;
    }

    .step-card p {
        font-size: 18px;
    }
}

.contact-section {
    background: transparent;
    padding: 80px 40px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-container {
    text-align: center;
    max-width: 1200px;
}

.contact-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 100px;
}

.contact-links {
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: center;
    justify-content: center;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 32px;
    font-weight: 700;
    text-decoration: none;
    padding: 0;
    background: transparent;
    transition: all 0.3s ease;
}

.contact-link:hover {
    opacity: 0.7;
}

.link-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.contact-link:nth-child(1) {
    color: #0077B5;
}

.contact-link:nth-child(1) .link-icon {
    color: #0077B5;
}

.contact-link:nth-child(2) {
    color: #1877F2;
}

.contact-link:nth-child(2) .link-icon {
    color: #1877F2;
}

.contact-link:nth-child(3) {
    color: #1a1a1a;
}

.contact-link:nth-child(3) .link-icon {
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 20px;
    }

    .contact-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .contact-links {
        flex-direction: column;
        gap: 30px;
    }

    .contact-link {
        font-size: 24px;
    }

    .link-icon {
        width: 32px;
        height: 32px;
    }
}
