/* ===================================
CSS Variables & Base Styles
=================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}




/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    background: linear-gradient(to bottom, #00652F, #009944);
    padding: 3rem 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 207, 24, 0.1), transparent 50%);
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.hero-content {
    text-align: center;
}

.hero-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    color: #fff;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkmark {
    width: 20px;
    height: 20px;
    color: #FFCF18;
    flex-shrink: 0;
}

.hero-mockup {
    /* max-width: 500px; */
    margin: 0 auto;
}

.hero-mockup img {
    width: 100%;
    border-radius: 1rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.25rem;
    }
    
    .hero-buttons {
        justify-content: flex-start;
    }
    
    .hero-features {
        justify-content: flex-start;
    }
}

/* ===================================
   Section Utilities
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #00652F;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 4rem;
}

.cta-subtitle {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #FFCF18;
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.badge svg {
    width: 16px;
    height: 16px;
    color: #00652F;
}

.badge-green {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(0, 101, 47, 0.1);
    color: #00652F;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.badge-green svg {
    width: 16px;
    height: 16px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-description {
        font-size: 1.25rem;
    }
}



/* ===================================
   Benefits Section
   =================================== */
.benefits-section {
    background: linear-gradient(to bottom, #ffffff, #f9fafb);
    padding: 5rem 0;
}

.benefits-grid {
    display: grid;
    gap: 2rem;
}

.benefit-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: #FFCF18;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(to bottom right, #00652F, #009944);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    color: #FFCF18;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #00652F;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: #4b5563;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===================================
   CTA Section Default
   =================================== */
.cta-section-default {
    background-color: #00652F;
    padding: 3rem 0;
}

.cta-content {
    max-width: 1000px;
    margin: 0 auto;
}

.cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: #FFCF18;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.cta-icon svg {
    width: 32px;
    height: 32px;
    color: #00652F;
}

.cta-content h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: start;
    }
}

@media (min-width: 768px) {
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-content p {
        font-size: 1.25rem;
    }
}


/* ===================================
   CTA Section Minimal
   =================================== */
.cta-section-minimal {
    background-color: #ffffff;
    padding: 5rem 0;
}

.cta-minimal-box {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(to bottom right, #f9fafb, #ffffff);
    border: 4px solid #FFCF18;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-minimal-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.cta-minimal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: #00652F;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.cta-minimal-icon svg {
    width: 28px;
    height: 28px;
    color: #FFCF18;
}

.cta-minimal-left h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #00652F;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-minimal-left p {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.7;
}

.cta-minimal-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-minimal-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding-top: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.cta-feature-small {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkmark-small {
    width: 20px;
    height: 20px;
    color: #00652F;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .cta-minimal-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .cta-minimal-left h2 {
        font-size: 2.5rem;
    }
}

/* ===================================
   Thirty Day Launch Section
   =================================== */
.thirty-day-section {
    background: linear-gradient(to bottom, #ffffff, #f9fafb);
    padding: 5rem 0;
}

.timeline {
    max-width: 1400px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    gap: 3rem;
    margin-bottom: 1rem;
}

.timeline-image {
    position: relative;
}

.image-glow {
    position: absolute;
    inset: -1rem;
    background: linear-gradient(to bottom right, #00652F, #FFCF18);
    opacity: 0.1;
    filter: blur(3rem);
    border-radius: 1.5rem;
}

.timeline-image img {
    position: relative;
    z-index: 10;
    width: 100%;
    /* height: 500px; */
    object-fit: cover;
    border-radius: 1rem;
    border: 2px solid #e5e7eb;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.timeline-badge {
    display: inline-block;
    background-color: #00652F;
    color: #FFCF18;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    font-size: 2rem;
    color: #00652F;
    margin-bottom: 1rem;
    font-weight: 600;
}

.timeline-content > p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.timeline-features {
    list-style: none;
}

.timeline-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.timeline-features li svg {
    width: 20px;
    height: 20px;
    color: #00652F;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.timeline-features li span {
    color: #374151;
}

.heavy-lifting-cta {
    margin-top: 5rem;
    background: linear-gradient(to bottom right, #00652F, #009944);
    border: 2px solid #FFCF18;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.heavy-lifting-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.heavy-lifting-text {
    text-align: center;
}

.heavy-lifting-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.heavy-lifting-title svg {
    width: 24px;
    height: 24px;
    color: #FFCF18;
}

.heavy-lifting-title h3 {
    font-size: 1.5rem;
    color: #ffffff;
}

.heavy-lifting-text p {
    color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 1024px) {
    .timeline-item {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    .timeline-item:nth-child(odd) {
        grid-template-columns: 4fr 6fr;
    }
    .timeline-item:nth-child(even) {
        grid-template-columns: 4fr 6fr;
    }
    .timeline-item-reverse {
        direction: rtl;
    }
    
    .timeline-item-reverse > * {
        direction: ltr;
    }
    
    .timeline-content h3 {
        font-size: 2rem;
    }
    
    .heavy-lifting-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .heavy-lifting-text {
        text-align: left;
    }
    
    .heavy-lifting-title {
        justify-content: flex-start;
    }
}

/* ===================================
   Retention Section
   =================================== */
.retention-section {
    background-color: #ffffff;
    padding: 0;
}

.retention-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.retention-intro {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.retention-content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #00652F;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.retention-features {
    margin-bottom: 2rem;
}

.retention-feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.retention-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #00652F;
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.retention-icon svg {
    width: 24px;
    height: 24px;
    color: #FFCF18;
}

.retention-info h3 {
    font-size: 1.25rem;
    color: #00652F;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.retention-info p {
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.retention-stat {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.stat-number {
    font-size: 1.2rem;
    color: #00652F;
    font-weight: 500;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.retention-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.retention-visual {
    position: relative;
}

.notification-mockup {
    position: relative;
    background: linear-gradient(to bottom right, #00652F, #009944);
    border-radius: 1.5rem;
    padding: 2rem;
}

.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.mockup-avatar {
    width: 40px;
    height: 40px;
    background-color: #FFCF18;
    border-radius: 50%;
}

.mockup-info {
    flex: 1;
    margin-left: 0.75rem;
}

.mockup-line {
    height: 12px;
    width: 96px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 0.25rem;
    margin-bottom: 0.25rem;
}

.mockup-line-small {
    height: 8px;
    width: 64px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 0.25rem;
}

.mockup-header svg {
    width: 32px;
    height: 32px;
    color: #FFCF18;
}

.notification-cards {
    margin-bottom: 2rem;
}

.notification-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.notification-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.notification-header h4 {
    color: #00652F;
    font-size: 1rem;
}

.notification-time {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.notification-card p {
    font-size: 0.875rem;
    color: #4b5563;
}

.retention-impact {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid #FFCF18;
    border-radius: 0.75rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.impact-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.impact-header svg {
    width: 20px;
    height: 20px;
    color: #FFCF18;
}

.impact-header span {
    font-size: 0.875rem;
    color: #ffffff;
}

.impact-number {
    font-size: 2rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.retention-impact p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.visual-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.visual-glow-1 {
    top: -1rem;
    right: -1rem;
    width: 96px;
    height: 96px;
    background-color: rgba(255, 207, 24, 0.2);
}

.visual-glow-2 {
    bottom: -1rem;
    left: -1rem;
    width: 128px;
    height: 128px;
    background-color: rgba(0, 101, 47, 0.2);
}

@media (min-width: 768px) {
    .retention-content h2 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .retention-grid {
        grid-template-columns: 1fr 1fr;
    }
    
}

/* ===================================
   Tech Stack Section
   =================================== */
.tech-stack-section {
    background: linear-gradient(to bottom, #f9fafb, #ffffff);
    padding: 4rem 0;
}

.tech-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.tech-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.tech-card:hover {
    border-color: #FFCF18;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.tech-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.tech-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #00652F;
    border-radius: 0.5rem;
}

.tech-icon svg {
    width: 20px;
    height: 20px;
    color: #FFCF18;
}

.tech-header h3 {
    font-size: 1.125rem;
    color: #00652F;
    font-weight: 600;
}

.tech-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #4b5563;
}

.tech-item svg {
    width: 16px;
    height: 16px;
    color: #00652F;
    flex-shrink: 0;
}

.tech-stats {
    display: grid;
    gap: 1.5rem;
}

.tech-stat-card {
    background-color: rgba(0, 101, 47, 0.05);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
}

.tech-stat-number {
    font-size: 2rem;
    color: #00652F;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tech-stat-card p {
    color: #4b5563;
}

@media (min-width: 768px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===================================
   Full Service Section
   =================================== */
.full-service-section {
    background-color: #ffffff;
    padding: 0;
}

.full-service-grid {
    display: grid;
    gap: 3rem;
}

.full-service-left h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #00652F;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.full-service-left button {
    width: fit-content;
}
.full-service-left p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.full-service-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card {
    background-color: #f9fafb;
    border: 2px solid #f3f4f6;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #FFCF18;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-card {
    display: flex;
    gap: 0.75rem;
}

.service-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #00652F;
    color: #ffffff;
    border-radius: 50%;
    font-weight: 600;
    flex-shrink: 0;
}

.service-content h3 {
    font-size: 1.25rem;
    color: #00652F;
    margin-bottom: 0.75rem;
}

.service-content p {
    color: #4b5563;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .full-service-left h2 {
        font-size: 2.2rem;
    }
    
    .full-service-left p {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .full-service-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .full-service-left {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
}

/* ===================================
   Fast Launch Section
   =================================== */
.fast-launch-section {
    background: linear-gradient(to bottom, #ffffff, #f9fafb);
    padding: 3rem 0;
}

.comparison-table {
    max-width: 1200px;
    margin: 0 auto 2rem;
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 1fr;
}

.comparison-col {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-header .comparison-col {
    background-color: #f9fafb;
    font-weight: 600;
}

.comparison-header .comparison-col:first-child {
    color: #6b7280;
    font-size: 1.125rem;
}

.comparison-header .comparison-col:nth-child(2) {
    border-left: 1px solid #e5e7eb;
    color: #374151;
}

.comparison-header .comparison-col:nth-child(3) {
    border-left: 2px solid #FFCF18;
    background: linear-gradient(to bottom right, #00652F, #009944);
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comparison-header .comparison-col svg {
    width: 20px;
    height: 20px;
    color: #FFCF18;
}

.comparison-row .comparison-col {
    color: #374151;
}

.comparison-row .comparison-col:nth-child(2) {
    border-left: 1px solid #e5e7eb;
    color: #6b7280;
}

.comparison-row .comparison-col:nth-child(3) {
    border-left: 2px solid #FFCF18;
    background-color: rgba(0, 101, 47, 0.05);
    color: #00652F;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comparison-row .comparison-col svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.comparison-row:last-child .comparison-col {
    border-bottom: none;
}

.fast-launch-stats {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.launch-stat-card {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.launch-stat-number {
    font-size: 2.5rem;
    color: #00652F;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.launch-stat-title {
    color: #000000;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.launch-stat-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
}

@media (min-width: 768px) {
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
    
    .comparison-col {
        border-left: 1px solid #e5e7eb;
    }
    
    .comparison-col:first-child {
        border-left: none;
    }
    
    .comparison-header .comparison-col:nth-child(3),
    .comparison-row .comparison-col:nth-child(3) {
        border-left: 2px solid #FFCF18;
    }
    
    .fast-launch-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===================================
   Website to App Section
   =================================== */
.website-to-app-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

.benefits-large-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-large-card {
    background: linear-gradient(to bottom right, #ffffff, #f9fafb);
    border: 2px solid #f3f4f6;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.benefit-large-card:hover {
    border-color: #FFCF18;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.benefit-large-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: #00652F;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.benefit-large-card:hover .benefit-large-icon {
    transform: scale(1.1);
}

.benefit-large-icon svg {
    width: 32px;
    height: 32px;
    color: #FFCF18;
}

.benefit-large-card h3 {
    font-size: 1.5rem;
    color: #00652F;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.benefit-large-card p {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.benefit-metric {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.metric-number {
    font-size: 1.5rem;
    color: #00652F;
    font-weight: 600;
}

.metric-label {
    color: #6b7280;
}

.website-app-feature-box {
    background: linear-gradient(to bottom right, #f9fafb, #ffffff);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.feature-box-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.feature-box-left h3 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #00652F;
    margin-bottom: 1rem;
}

.feature-box-left p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.feature-checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-check-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
}

.feature-check-item svg {
    width: 20px;
    height: 20px;
    color: #00652F;
    flex-shrink: 0;
}

.feature-box-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.feature-box-right {
    position: relative;
}

.app-transformation-visual {
    position: relative;
    background: linear-gradient(to bottom right, #00652F, #009944);
    border-radius: 1.5rem;
    padding: 2rem;
}

.browser-mockup {
    background-color: #ffffff;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.browser-dots {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-dot-red {
    background-color: #ef4444;
}

.browser-dot-yellow {
    background-color: #f59e0b;
}

.browser-dot-green {
    background-color: #10b981;
}

.browser-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.browser-icon svg {
    width: 20px;
    height: 20px;
    color: #00652F;
}

.browser-line {
    height: 8px;
    width: 128px;
    background-color: #e5e7eb;
    border-radius: 0.25rem;
}

.browser-lines {
    margin-top: 0.5rem;
}

.browser-line-full {
    height: 8px;
    width: 100%;
    background-color: #f3f4f6;
    border-radius: 0.25rem;
    margin-bottom: 0.5rem;
}

.browser-line-partial {
    height: 8px;
    width: 75%;
    background-color: #f3f4f6;
    border-radius: 0.25rem;
}

.arrow-down {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.arrow-down svg {
    width: 32px;
    height: 32px;
    color: #FFCF18;
}

.app-mockup {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
}

.app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.app-logo {
    width: 32px;
    height: 32px;
    background-color: #00652F;
    border-radius: 0.5rem;
}

.app-label {
    flex: 1;
    margin-left: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.app-header svg {
    width: 20px;
    height: 20px;
    color: #FFCF18;
}

.app-image {
    height: 128px;
    background: linear-gradient(to bottom right, #f3f4f6, #e5e7eb);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.app-metrics {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.app-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9fafb;
    border-radius: 0.5rem;
    padding: 0.75rem;
    font-size: 0.875rem;
}

.app-metric span:first-child {
    color: #4b5563;
}

.metric-value {
    color: #00652F;
    font-weight: 600;
}

.conversion-badge {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid #FFCF18;
    border-radius: 0.75rem;
    padding: 1rem;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.conversion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #FFCF18;
    border-radius: 0.5rem;
}

.conversion-icon svg {
    width: 20px;
    height: 20px;
    color: #00652F;
}

.conversion-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.conversion-value {
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 600;
}

.visual-glow-3 {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    width: 128px;
    height: 128px;
    background-color: rgba(255, 207, 24, 0.2);
    border-radius: 50%;
    filter: blur(75px);
}

.visual-glow-4 {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    width: 128px;
    height: 128px;
    background-color: rgba(0, 101, 47, 0.2);
    border-radius: 50%;
    filter: blur(75px);
}

.mobile-traffic-callout {
    background-color: rgba(0, 101, 47, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

.mobile-traffic-callout p {
    font-size: 1.125rem;
    color: #4b5563;
}

.mobile-traffic-callout .highlight {
    color: #00652F;
    font-weight: 600;
}

@media (min-width: 1024px) {
    .benefits-large-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .feature-box-grid {
        grid-template-columns: 6fr 4fr;
    }
}

/* ===================================
   Conversion Features Section
   =================================== */
.conversion-features-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

.conversion-grid {
    display: grid;
    gap: 1.5rem;
}

.conversion-card {
    background-color: #ffffff;
    border: 2px solid #f3f4f6;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.conversion-card:hover {
    border-color: #FFCF18;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.conversion-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #00652F;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.conversion-card:hover .conversion-icon {
    transform: scale(1.1);
}

.conversion-icon svg {
    width: 24px;
    height: 24px;
    color: #FFCF18;
}

.conversion-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #00652F;
    margin-bottom: 0.5rem;
}

.conversion-card p {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .conversion-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .conversion-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===================================
   All Features Section
   =================================== */
.all-features-section {
    background: linear-gradient(to bottom, #f9fafb, #ffffff);
    padding: 2rem 0;
}

.all-features-grid {
    display: grid;
    gap: 2rem;
}

.feature-category-card {
    background-color: #ffffff;
    border: 2px solid #f3f4f6;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-category-card:hover {
    border-color: #FFCF18;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.category-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #00652F;
    border-bottom: 2px solid #FFCF18;
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

.category-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.category-feature {
    display: flex;
    gap: 0.75rem;
}

.category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #00652F;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.category-icon svg {
    width: 20px;
    height: 20px;
    color: #FFCF18;
}

.category-feature h4 {
    font-size: 1rem;
    color: #00652F;
    margin-bottom: 0.25rem;
}

.category-feature p {
    font-size: 0.875rem;
    color: #4b5563;
}

@media (min-width: 768px) {
    .all-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .all-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===================================
   How It Works Section
   =================================== */
.how-it-works-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

.how-grid {
    display: grid;
    gap: 2rem;
}

.how-step {
    position: relative;
    text-align: center;
}

.how-connector {
    display: none;
}

.how-step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    background-color: #00652F;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.how-step-icon svg {
    width: 48px;
    height: 48px;
    color: #FFCF18;
}

.how-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: 0 auto;
    background-color: #FFCF18;
    color: #000000;
    border-radius: 50%;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.how-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #00652F;
    margin-bottom: 0.75rem;
}

.how-step p {
    color: #4b5563;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .how-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .how-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .how-connector {
        display: block;
        position: absolute;
        left: 50%;
        top: 48px;
        width: 100%;
        height: 2px;
        background-color: #FFCF18;
        z-index: -1;
    }
    
    .how-step:last-child .how-connector {
        display: none;
    }
}

/* ===================================
   Why Choose Section
   =================================== */
.why-choose-section {
    background: linear-gradient(to bottom, #f9fafb, #ffffff);
    padding: 3rem 0;
}

.why-grid {
    display: grid;
    gap: 2rem;
}

.why-card {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.why-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: #00652F;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.why-icon svg {
    width: 28px;
    height: 28px;
    color: #FFCF18;
}

.why-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #00652F;
    margin-bottom: 0.75rem;
}

.why-card p {
    color: #4b5563;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===================================
   Pricing Section
   =================================== */
.pricing-section {
    background: linear-gradient(to bottom, #ffffff, #f9fafb);
    padding: 5rem 0;
}

.billing-toggle {
    display: inline-flex;
    align-items: center;
    background-color: #f3f4f6;
    border-radius: 9999px;
    padding: 0.25rem;
    margin-top: 2rem;
}

.toggle-btn {
    background-color: transparent;
    color: #4b5563;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.toggle-active {
    background-color: #00652F;
    color: #ffffff;
}

.save-badge {
    background-color: #FFCF18;
    color: #000000;
    font-size: 0.75rem;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
}

.pricing-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background-color: #ffffff;
    border: 2px solid #f3f4f6;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.pricing-card-highlight {
    transform: scale(1.05);
    border: 4px solid #FFCF18;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.popular-badge {
    display: inline-block;
    background-color: #FFCF18;
    color: #000000;
    font-size: 0.875rem;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.plan-name {
    font-size: 1.5rem;
    color: #00652F;
    margin-bottom: 0.5rem;
}

.plan-description {
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2.5rem;
    color: #00652F;
    font-weight: 600;
}

.price-period {
    color: #6b7280;
}

.yearly-breakdown {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
    margin-bottom: 1rem;
}

.plan-button {
    margin-bottom: 1.5rem;
}

.plan-features {
    list-style: none;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

.plan-features li svg {
    width: 20px;
    height: 20px;
    color: #00652F;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.pricing-footer {
    text-align: center;
    margin-top: 3rem;
    color: #4b5563;
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===================================
   Integrations Section
   =================================== */
.integrations-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.integration-card {
    background-color: #ffffff;
    border: 2px solid #f3f4f6;
    border-radius: 0.75rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
}

.integration-card:hover {
    border-color: #FFCF18;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.integration-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: #00652F;
    color: #FFCF18;
    border-radius: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.integration-card h3 {
    color: #00652F;
    margin-bottom: 0.25rem;
    font-size: 1rem;
    font-weight: 600;
}

.integration-category {
    font-size: 0.875rem;
    color: #6b7280;
}

.custom-integration-box {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.custom-integration-box h3 {
    font-size: 1.5rem;
    color: #00652F;
    margin-bottom: 1rem;
}

.custom-integration-box p {
    color: #4b5563;
    margin-bottom: 1.5rem;
}
@media (max-width:768px) {
    .integrations-grid {
        gap: clamp(0.3rem, 1vw, 1rem);
    }
    .integration-card {
        padding: 1rem;
    }
}
@media (min-width: 768px) {
    .integrations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .integrations-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width:768px) {
    .benefits-section, .thirty-day-section, .cta-section-minimal, .website-to-app-section, .conversion-features-section, .how-it-works-section, .integrations-section, .faq-section {
        padding: 3rem 0;
    }
    .section-header {
        margin-bottom: 2rem;
    }
    .timeline-item {
        gap: 1.5rem;
    }
    .stat-number {
        font-size: 1rem;
    }
    .metric-number {
        font-size: 1.5rem;
    }
    .timeline-content h3 {
        font-size: 1.8rem;
    }
    .how-step-icon {
        width: 76px;
        height: 76px;
    }
    .how-step-icon svg {
        width: 30px;
        height: 30px;
    }
}