/* How It Works Page Styles */

/* Base section styling with lime energy background */
.section {
    padding: 120px 20px;
    position: relative;
    background:
        repeating-linear-gradient(
            135deg,
            rgba(160, 255, 90, 0.12),
            rgba(160, 255, 90, 0.12) 1px,
            transparent 1px,
            transparent 8px
        ),
        linear-gradient(
            to bottom,
            rgba(120, 200, 120, 0.10),
            rgba(0, 0, 0, 0.15)
        ),
        #111612;
    box-shadow: 0 12px 32px rgba(128, 239, 128, 0.3), 0 6px 16px rgba(128, 239, 128, 0.25), 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* Vignette / depth fade for lime energy */
.section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at center,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.35) 70%,
            rgba(0, 0, 0, 0.65) 100%
        );
    pointer-events: none;
    z-index: 0;
}

/* Animated sheen for movement (very subtle) */
.section::before {
    content: "";
    position: absolute;
    inset: -50%;
    background:
        linear-gradient(
            120deg,
            transparent 45%,
            rgba(180, 255, 120, 0.08) 50%,
            transparent 55%
        );
    animation: limeSheen 18s linear infinite;
    pointer-events: none;
    z-index: 0;
}

/* Ensure section content is above background effects */
.section > * {
    position: relative;
    z-index: 1;
}

.section-alt {
    background:
        repeating-linear-gradient(
            135deg,
            rgba(160, 255, 90, 0.15),
            rgba(160, 255, 90, 0.15) 1px,
            transparent 1px,
            transparent 8px
        ),
        linear-gradient(
            to bottom,
            rgba(120, 200, 120, 0.12),
            rgba(0, 0, 0, 0.1)
        ),
        #121713;
}

.section-cta {
    background:
        repeating-linear-gradient(
            135deg,
            rgba(160, 255, 90, 0.12),
            rgba(160, 255, 90, 0.12) 1px,
            transparent 1px,
            transparent 8px
        ),
        linear-gradient(
            to bottom,
            rgba(120, 200, 120, 0.08),
            rgba(0, 0, 0, 0.2)
        ),
        #0f1411;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #036666;
    margin-bottom: 80px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    color: #D4D4D8;
    opacity: 0.85;
    margin-bottom: 60px;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    position: relative;
    /* Deep charcoal background to block lime beneath */
    background: linear-gradient(to bottom, var(--charcoal), var(--charcoal)), #000000;
    border-radius: 18px;
    padding: 3rem 2.5rem;
    cursor: pointer;
    box-shadow:
        0px 3px 6px rgba(0, 0, 0, 0.05),
        0px 8px 15px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(120, 220, 160, 0.1);
    transition: box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Green glass overlay for process steps */
.process-step::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.01) 2px,
            rgba(255, 255, 255, 0.01) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.01) 2px,
            rgba(255, 255, 255, 0.01) 4px
        ),
        linear-gradient(
            135deg,
            rgba(120, 220, 140, 0.16),
            rgba(120, 220, 140, 0.05)
        );
    background-blend-mode: overlay;
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 12px rgba(200, 255, 180, 0.08);
    opacity: 0.9;
    z-index: 0;
}

/* Card Shine Effect */
.process-step .card-shine {
    border-radius: inherit;
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.process-step .card-shine::before {
    content: '';
    width: 150%;
    padding-bottom: 150%;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    bottom: 55%;
    filter: blur(35px);
    opacity: 0.1;
    transform: translateX(-50%);
    background-image: conic-gradient(
        from 205deg at 50% 50%,
        rgba(120, 220, 140, 0) 0deg,
        #1dd1a1 25deg,
        rgba(52, 211, 153, 0.18) 295deg,
        rgba(120, 220, 140, 0) 360deg
    );
}

/* Card Background Animation */
.process-step .card-background {
    border-radius: inherit;
    position: absolute;
    inset: 0;
    overflow: hidden;
    -webkit-mask-image: radial-gradient(circle at 60% 5%, black 0%, black 15%, transparent 60%);
    mask-image: radial-gradient(circle at 60% 5%, black 0%, black 15%, transparent 60%);
}

.process-step .card-tiles {
    opacity: 0;
    transition: opacity 0.25s;
}

.process-step .tile {
    position: absolute;
    background-color: rgba(120, 220, 140, 0.05);
    animation-duration: 8s;
    animation-iteration-count: infinite;
    opacity: 0;
}

.process-step .tile-4, .process-step .tile-6, .process-step .tile-10 { animation-delay: -2s; }
.process-step .tile-3, .process-step .tile-5, .process-step .tile-8 { animation-delay: -4s; }
.process-step .tile-2, .process-step .tile-9 { animation-delay: -6s; }

.process-step .tile-1 { top: 0; left: 0; height: 10%; width: 22.5%; }
.process-step .tile-2 { top: 0; left: 22.5%; height: 10%; width: 27.5%; }
.process-step .tile-3 { top: 0; left: 50%; height: 10%; width: 27.5%; }
.process-step .tile-4 { top: 0; left: 77.5%; height: 10%; width: 22.5%; }
.process-step .tile-5 { top: 10%; left: 0; height: 22.5%; width: 22.5%; }
.process-step .tile-6 { top: 10%; left: 22.5%; height: 22.5%; width: 27.5%; }
.process-step .tile-7 { top: 10%; left: 50%; height: 22.5%; width: 27.5%; }
.process-step .tile-8 { top: 10%; left: 77.5%; height: 22.5%; width: 22.5%; }
.process-step .tile-9 { top: 32.5%; left: 50%; height: 22.5%; width: 27.5%; }
.process-step .tile-10 { top: 32.5%; left: 77.5%; height: 22.5%; width: 22.5%; }

@keyframes tile {
    0%, 12.5%, 100% { opacity: 1; }
    25%, 82.5% { opacity: 0; }
}

/* Card Lines */
.process-step .card-line {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.35s;
}

.process-step .card-line::before,
.process-step .card-line::after {
    content: '';
    position: absolute;
    background-color: rgba(120, 220, 160, 0.2);
    transition: transform 0.35s;
}

.process-step .card-line::before {
    left: 0;
    right: 0;
    height: 1px;
    transform-origin: 0 50%;
    transform: scaleX(0);
}

.process-step .card-line::after {
    top: 0;
    bottom: 0;
    width: 1px;
    transform-origin: 50% 0;
    transform: scaleY(0);
}

.process-step .line-1::before { top: 10%; }
.process-step .line-1::after { left: 22.5%; }
.process-step .line-1::before, .process-step .line-1::after { transition-delay: 0.3s; }

.process-step .line-2::before { top: 32.5%; }
.process-step .line-2::after { left: 50%; }
.process-step .line-2::before, .process-step .line-2::after { transition-delay: 0.15s; }

.process-step .line-3::before { top: 55%; }
.process-step .line-3::after { right: 22.5%; }

/* Hover State */
.process-step:hover {
    box-shadow:
        0px 5px 10px rgba(0, 0, 0, 0.04),
        0px 15px 25px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(120, 220, 160, 0.2);
}

.process-step:hover .card-shine {
    opacity: 1;
}

.process-step:hover .card-tiles {
    opacity: 1;
    transition-delay: 0.25s;
}

.process-step:hover .tile {
    animation-name: tile;
}

.process-step:hover .card-line {
    opacity: 1;
    transition-duration: 0.15s;
}

.process-step:hover .card-line::before {
    transform: scaleX(1);
}

.process-step:hover .card-line::after {
    transform: scaleY(1);
}

.process-step:hover .line-1::before,
.process-step:hover .line-1::after {
    transition-delay: 0s;
}

.process-step:hover .line-2::before,
.process-step:hover .line-2::after {
    transition-delay: 0.15s;
}

.process-step:hover .line-3::before,
.process-step:hover .line-3::after {
    transition-delay: 0.3s;
}

.process-step > * {
    position: relative;
    z-index: 2;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1dd1a1, #10ac84);
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 900;
    color: #0b1a14;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(29, 209, 161, 0.3);
}

.process-step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e6f4ef;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.process-step p {
    color: #D4D4D8;
    line-height: 1.7;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.process-step p:last-child {
    margin-bottom: 0;
}

.process-step ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.process-step li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #D4D4D8;
    line-height: 1.6;
}

.process-step li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #80EF80;
    font-weight: 700;
}

.highlight-text {
    color: #1dd1a1;
    font-weight: 600;
}

/* Custom Features */
.custom-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.feature-category {
    position: relative;
    /* Deep charcoal background to block lime beneath */
    background: linear-gradient(to bottom, var(--charcoal), var(--charcoal)), #000000;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(120, 220, 160, 0.1);
    cursor: pointer;
    box-shadow:
        0px 3px 6px rgba(0, 0, 0, 0.05),
        0px 8px 15px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(120, 220, 160, 0.1);
    transition: box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Green glass overlay for feature categories */
.feature-category::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.01) 2px,
            rgba(255, 255, 255, 0.01) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.01) 2px,
            rgba(255, 255, 255, 0.01) 4px
        ),
        linear-gradient(
            135deg,
            rgba(120, 220, 140, 0.16),
            rgba(120, 220, 140, 0.05)
        );
    background-blend-mode: overlay;
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 12px rgba(200, 255, 180, 0.08);
    opacity: 0.9;
    z-index: 0;
}

/* Card Shine Effect */
.feature-category .card-shine {
    border-radius: inherit;
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.feature-category .card-shine::before {
    content: '';
    width: 150%;
    padding-bottom: 150%;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    bottom: 55%;
    filter: blur(35px);
    opacity: 0.1;
    transform: translateX(-50%);
    background-image: conic-gradient(
        from 205deg at 50% 50%,
        rgba(120, 220, 140, 0) 0deg,
        #1dd1a1 25deg,
        rgba(52, 211, 153, 0.18) 295deg,
        rgba(120, 220, 140, 0) 360deg
    );
}

/* Card Background Animation */
.feature-category .card-background {
    border-radius: inherit;
    position: absolute;
    inset: 0;
    overflow: hidden;
    -webkit-mask-image: radial-gradient(circle at 60% 5%, black 0%, black 15%, transparent 60%);
    mask-image: radial-gradient(circle at 60% 5%, black 0%, black 15%, transparent 60%);
}

.feature-category .card-tiles {
    opacity: 0;
    transition: opacity 0.25s;
}

.feature-category .tile {
    position: absolute;
    background-color: rgba(120, 220, 140, 0.05);
    animation-duration: 8s;
    animation-iteration-count: infinite;
    opacity: 0;
}

.feature-category .tile-4, .feature-category .tile-6, .feature-category .tile-10 { animation-delay: -2s; }
.feature-category .tile-3, .feature-category .tile-5, .feature-category .tile-8 { animation-delay: -4s; }
.feature-category .tile-2, .feature-category .tile-9 { animation-delay: -6s; }

.feature-category .tile-1 { top: 0; left: 0; height: 10%; width: 22.5%; }
.feature-category .tile-2 { top: 0; left: 22.5%; height: 10%; width: 27.5%; }
.feature-category .tile-3 { top: 0; left: 50%; height: 10%; width: 27.5%; }
.feature-category .tile-4 { top: 0; left: 77.5%; height: 10%; width: 22.5%; }
.feature-category .tile-5 { top: 10%; left: 0; height: 22.5%; width: 22.5%; }
.feature-category .tile-6 { top: 10%; left: 22.5%; height: 22.5%; width: 27.5%; }
.feature-category .tile-7 { top: 10%; left: 50%; height: 22.5%; width: 27.5%; }
.feature-category .tile-8 { top: 10%; left: 77.5%; height: 22.5%; width: 22.5%; }
.feature-category .tile-9 { top: 32.5%; left: 50%; height: 22.5%; width: 27.5%; }
.feature-category .tile-10 { top: 32.5%; left: 77.5%; height: 22.5%; width: 22.5%; }

/* Card Lines */
.feature-category .card-line {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.35s;
}

.feature-category .card-line::before,
.feature-category .card-line::after {
    content: '';
    position: absolute;
    background-color: rgba(120, 220, 160, 0.2);
    transition: transform 0.35s;
}

.feature-category .card-line::before {
    left: 0;
    right: 0;
    height: 1px;
    transform-origin: 0 50%;
    transform: scaleX(0);
}

.feature-category .card-line::after {
    top: 0;
    bottom: 0;
    width: 1px;
    transform-origin: 50% 0;
    transform: scaleY(0);
}

.feature-category .line-1::before { top: 10%; }
.feature-category .line-1::after { left: 22.5%; }
.feature-category .line-1::before, .feature-category .line-1::after { transition-delay: 0.3s; }

.feature-category .line-2::before { top: 32.5%; }
.feature-category .line-2::after { left: 50%; }
.feature-category .line-2::before, .feature-category .line-2::after { transition-delay: 0.15s; }

.feature-category .line-3::before { top: 55%; }
.feature-category .line-3::after { right: 22.5%; }

/* Hover State */
.feature-category:hover {
    box-shadow:
        0px 5px 10px rgba(0, 0, 0, 0.04),
        0px 15px 25px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(120, 220, 160, 0.2);
}

.feature-category:hover .card-shine {
    opacity: 1;
}

.feature-category:hover .card-tiles {
    opacity: 1;
    transition-delay: 0.25s;
}

.feature-category:hover .tile {
    animation-name: tile;
}

.feature-category:hover .card-line {
    opacity: 1;
    transition-duration: 0.15s;
}

.feature-category:hover .card-line::before {
    transform: scaleX(1);
}

.feature-category:hover .card-line::after {
    transform: scaleY(1);
}

.feature-category:hover .line-1::before,
.feature-category:hover .line-1::after {
    transition-delay: 0s;
}

.feature-category:hover .line-2::before,
.feature-category:hover .line-2::after {
    transition-delay: 0.15s;
}

.feature-category:hover .line-3::before,
.feature-category:hover .line-3::after {
    transition-delay: 0.3s;
}

.feature-category > * {
    position: relative;
    z-index: 2;
}

.feature-category h3 {
    color: #80EF80;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-category ul {
    list-style: none;
    padding: 0;
}

.feature-category li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #D4D4D8;
    line-height: 1.6;
}

.feature-category li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #80EF80;
    font-weight: 700;
}

.note-text {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(29, 209, 161, 0.08);
    border-radius: 8px;
    color: #D4D4D8;
    line-height: 1.6;
}

.note-text strong {
    color: #1dd1a1;
}

/* Infrastructure Info */
.infrastructure-info {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
    padding: 2.5rem;
    /* Deep charcoal background to block lime beneath */
    background: linear-gradient(to bottom, var(--charcoal), var(--charcoal)), #000000;
    border-radius: 16px;
    border: 1px solid rgba(120, 220, 160, 0.1);
    cursor: pointer;
    box-shadow:
        0px 3px 6px rgba(0, 0, 0, 0.05),
        0px 8px 15px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(120, 220, 160, 0.1);
    transition: box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Green glass overlay for infrastructure info */
.infrastructure-info::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.01) 2px,
            rgba(255, 255, 255, 0.01) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.01) 2px,
            rgba(255, 255, 255, 0.01) 4px
        ),
        linear-gradient(
            135deg,
            rgba(120, 220, 140, 0.16),
            rgba(120, 220, 140, 0.05)
        );
    background-blend-mode: overlay;
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 12px rgba(200, 255, 180, 0.08);
    opacity: 0.9;
    z-index: 0;
}

/* Card Shine Effect */
.infrastructure-info .card-shine {
    border-radius: inherit;
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.infrastructure-info .card-shine::before {
    content: '';
    width: 150%;
    padding-bottom: 150%;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    bottom: 55%;
    filter: blur(35px);
    opacity: 0.1;
    transform: translateX(-50%);
    background-image: conic-gradient(
        from 205deg at 50% 50%,
        rgba(120, 220, 140, 0) 0deg,
        #1dd1a1 25deg,
        rgba(52, 211, 153, 0.18) 295deg,
        rgba(120, 220, 140, 0) 360deg
    );
}

/* Card Background Animation */
.infrastructure-info .card-background {
    border-radius: inherit;
    position: absolute;
    inset: 0;
    overflow: hidden;
    -webkit-mask-image: radial-gradient(circle at 60% 5%, black 0%, black 15%, transparent 60%);
    mask-image: radial-gradient(circle at 60% 5%, black 0%, black 15%, transparent 60%);
}

.infrastructure-info .card-tiles {
    opacity: 0;
    transition: opacity 0.25s;
}

.infrastructure-info .tile {
    position: absolute;
    background-color: rgba(120, 220, 140, 0.05);
    animation-duration: 8s;
    animation-iteration-count: infinite;
    opacity: 0;
}

.infrastructure-info .tile-4, .infrastructure-info .tile-6, .infrastructure-info .tile-10 { animation-delay: -2s; }
.infrastructure-info .tile-3, .infrastructure-info .tile-5, .infrastructure-info .tile-8 { animation-delay: -4s; }
.infrastructure-info .tile-2, .infrastructure-info .tile-9 { animation-delay: -6s; }

.infrastructure-info .tile-1 { top: 0; left: 0; height: 10%; width: 22.5%; }
.infrastructure-info .tile-2 { top: 0; left: 22.5%; height: 10%; width: 27.5%; }
.infrastructure-info .tile-3 { top: 0; left: 50%; height: 10%; width: 27.5%; }
.infrastructure-info .tile-4 { top: 0; left: 77.5%; height: 10%; width: 22.5%; }
.infrastructure-info .tile-5 { top: 10%; left: 0; height: 22.5%; width: 22.5%; }
.infrastructure-info .tile-6 { top: 10%; left: 22.5%; height: 22.5%; width: 27.5%; }
.infrastructure-info .tile-7 { top: 10%; left: 50%; height: 22.5%; width: 27.5%; }
.infrastructure-info .tile-8 { top: 10%; left: 77.5%; height: 22.5%; width: 22.5%; }
.infrastructure-info .tile-9 { top: 32.5%; left: 50%; height: 22.5%; width: 27.5%; }
.infrastructure-info .tile-10 { top: 32.5%; left: 77.5%; height: 22.5%; width: 22.5%; }

/* Card Lines */
.infrastructure-info .card-line {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.35s;
}

.infrastructure-info .card-line::before,
.infrastructure-info .card-line::after {
    content: '';
    position: absolute;
    background-color: rgba(120, 220, 160, 0.2);
    transition: transform 0.35s;
}

.infrastructure-info .card-line::before {
    left: 0;
    right: 0;
    height: 1px;
    transform-origin: 0 50%;
    transform: scaleX(0);
}

.infrastructure-info .card-line::after {
    top: 0;
    bottom: 0;
    width: 1px;
    transform-origin: 50% 0;
    transform: scaleY(0);
}

.infrastructure-info .line-1::before { top: 10%; }
.infrastructure-info .line-1::after { left: 22.5%; }
.infrastructure-info .line-1::before, .infrastructure-info .line-1::after { transition-delay: 0.3s; }

.infrastructure-info .line-2::before { top: 32.5%; }
.infrastructure-info .line-2::after { left: 50%; }
.infrastructure-info .line-2::before, .infrastructure-info .line-2::after { transition-delay: 0.15s; }

.infrastructure-info .line-3::before { top: 55%; }
.infrastructure-info .line-3::after { right: 22.5%; }

/* Hover State */
.infrastructure-info:hover {
    box-shadow:
        0px 5px 10px rgba(0, 0, 0, 0.04),
        0px 15px 25px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(120, 220, 160, 0.2);
}

.infrastructure-info:hover .card-shine {
    opacity: 1;
}

.infrastructure-info:hover .card-tiles {
    opacity: 1;
    transition-delay: 0.25s;
}

.infrastructure-info:hover .tile {
    animation-name: tile;
}

.infrastructure-info:hover .card-line {
    opacity: 1;
    transition-duration: 0.15s;
}

.infrastructure-info:hover .card-line::before {
    transform: scaleX(1);
}

.infrastructure-info:hover .card-line::after {
    transform: scaleY(1);
}

.infrastructure-info:hover .line-1::before,
.infrastructure-info:hover .line-1::after {
    transition-delay: 0s;
}

.infrastructure-info:hover .line-2::before,
.infrastructure-info:hover .line-2::after {
    transition-delay: 0.15s;
}

.infrastructure-info:hover .line-3::before,
.infrastructure-info:hover .line-3::after {
    transition-delay: 0.3s;
}

.infrastructure-info > * {
    position: relative;
    z-index: 2;
}

.infrastructure-info h3 {
    color: #80EF80;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.infrastructure-info p {
    color: #D4D4D8;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.infrastructure-info ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
}

.infrastructure-info li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #D4D4D8;
}

.infrastructure-info li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #D4D4D8;
    opacity: 0.5;
}

.infrastructure-info a {
    color: #1dd1a1;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.infrastructure-info a:hover {
    opacity: 0.8;
}

/* CTA Centered */
.cta-centered {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(120, 220, 160, 0.1);
}

.cta-message {
    font-size: 1.15rem;
    color: #e6f4ef;
    margin-bottom: 1.5rem;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    background: linear-gradient(135deg, #1dd1a1, #10ac84);
    color: #0b1a14;
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.35),
        inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.45),
        inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

/* Design Package */
.design-package {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    /* Deep charcoal background to block lime beneath */
    background: linear-gradient(to bottom, var(--charcoal), var(--charcoal)), #000000;
    border-radius: 18px;
    border: 1px solid rgba(120, 220, 160, 0.1);
    box-shadow:
        0px 3px 6px rgba(0, 0, 0, 0.05),
        0px 8px 15px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(120, 220, 160, 0.1);
    transition: box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Green glass overlay for design package */
.design-package::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(120, 220, 140, 0.16),
            rgba(120, 220, 140, 0.05)
        );
    border-radius: 18px;
    pointer-events: none;
    box-shadow: inset 0 0 12px rgba(200, 255, 180, 0.08);
    opacity: 0.9;
    z-index: 0;
}

.design-package > * {
    position: relative;
    z-index: 1;
}

.design-package h3 {
    color: #80EF80;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.package-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 2rem;
}

.package-details > div {
    background: rgba(20, 40, 35, 0.15);
    border-radius: 12px;
    padding: 2rem;
}

.package-details h4 {
    color: #e6f4ef;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.package-details ul {
    list-style: none;
    padding: 0;
}

.package-details li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #D4D4D8;
    line-height: 1.6;
}

.included li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #80EF80;
    font-weight: 700;
}

.requirements li::before,
.not-included li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1dd1a1;
    font-weight: 700;
}

.package-details strong {
    color: #1dd1a1;
}

.scope-note {
    text-align: center;
    color: #D4D4D8;
    opacity: 0.85;
    font-style: italic;
    margin-top: 1.5rem;
}

/* Launch Offer */
.launch-offer {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.launch-offer h2 {
    color: #80EF80;
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1.5rem;
}

.offer-text {
    font-size: 1.2rem;
    color: #e6f4ef;
    margin-bottom: 1rem;
    font-weight: 600;
}

.offer-subtext {
    font-size: 1rem;
    color: #D4D4D8;
    opacity: 0.85;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Referral Program */
.referral-info {
    max-width: 800px;
    margin: 0 auto;
}

.referral-headline {
    font-size: 1.2rem;
    color: #e6f4ef;
    text-align: center;
    margin-bottom: 2.5rem;
}

.referral-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 2rem;
}

.referral-option {
    position: relative;
    /* Deep charcoal background to block lime beneath */
    background: linear-gradient(to bottom, var(--charcoal), var(--charcoal)), #000000;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(120, 220, 160, 0.1);
    text-align: center;
    box-shadow:
        0px 3px 6px rgba(0, 0, 0, 0.05),
        0px 8px 15px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(120, 220, 160, 0.1);
    transition: box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Green glass overlay for referral options */
.referral-option::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(120, 220, 140, 0.16),
            rgba(120, 220, 140, 0.05)
        );
    border-radius: 16px;
    pointer-events: none;
    box-shadow: inset 0 0 12px rgba(200, 255, 180, 0.08);
    opacity: 0.9;
    z-index: 0;
}

.referral-option > * {
    position: relative;
    z-index: 1;
}

.referral-option:hover {
    border-color: rgba(120, 220, 160, 0.25);
    transform: translateY(-4px);
}

.referral-option h3 {
    color: #e6f4ef;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.benefit {
    font-size: 1.5rem;
    color: #80EF80;
    font-weight: 700;
}

.referral-terms {
    text-align: center;
    color: #D4D4D8;
    opacity: 0.85;
    font-size: 0.95rem;
    line-height: 1.6;
}

.referral-terms strong {
    color: #1dd1a1;
}

/* Footer */
.footer {
    background: #14171a;
    padding: 80px 20px 40px;
    color: #D4D4D8;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-brand h3 {
    color: #80EF80;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #D4D4D8;
    opacity: 0.85;
    line-height: 1.6;
}

.footer-links {
    display: contents;
}

.footer-col h4 {
    color: #e6f4ef;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    color: #D4D4D8;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #1dd1a1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(120, 220, 160, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #D4D4D8;
    opacity: 0.7;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .section {
        padding: 80px 20px;
    }

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

    .custom-features {
        grid-template-columns: 1fr;
    }

    .package-details {
        grid-template-columns: 1fr;
    }

    .referral-benefits {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
/* Design Package and Referral Option - Shared Hover Card Styles */
.design-package,
.referral-option {
    cursor: pointer;
}

.design-package .card-shine,
.referral-option .card-shine {
    border-radius: inherit;
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.design-package .card-shine::before,
.referral-option .card-shine::before {
    content: '';
    width: 150%;
    padding-bottom: 150%;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    bottom: 55%;
    filter: blur(35px);
    opacity: 0.1;
    transform: translateX(-50%);
    background-image: conic-gradient(
        from 205deg at 50% 50%,
        rgba(120, 220, 140, 0) 0deg,
        #1dd1a1 25deg,
        rgba(52, 211, 153, 0.18) 295deg,
        rgba(120, 220, 140, 0) 360deg
    );
}

.design-package .card-background,
.referral-option .card-background {
    border-radius: inherit;
    position: absolute;
    inset: 0;
    overflow: hidden;
    -webkit-mask-image: radial-gradient(circle at 60% 5%, black 0%, black 15%, transparent 60%);
    mask-image: radial-gradient(circle at 60% 5%, black 0%, black 15%, transparent 60%);
}

.design-package .card-tiles,
.referral-option .card-tiles {
    opacity: 0;
    transition: opacity 0.25s;
}

.design-package .tile,
.referral-option .tile {
    position: absolute;
    background-color: rgba(120, 220, 140, 0.05);
    animation-duration: 8s;
    animation-iteration-count: infinite;
    opacity: 0;
}

.design-package .tile-4, .design-package .tile-6, .design-package .tile-10,
.referral-option .tile-4, .referral-option .tile-6, .referral-option .tile-10 { 
    animation-delay: -2s; 
}

.design-package .tile-3, .design-package .tile-5, .design-package .tile-8,
.referral-option .tile-3, .referral-option .tile-5, .referral-option .tile-8 { 
    animation-delay: -4s; 
}

.design-package .tile-2, .design-package .tile-9,
.referral-option .tile-2, .referral-option .tile-9 { 
    animation-delay: -6s; 
}

.design-package .tile-1, .referral-option .tile-1 { top: 0; left: 0; height: 10%; width: 22.5%; }
.design-package .tile-2, .referral-option .tile-2 { top: 0; left: 22.5%; height: 10%; width: 27.5%; }
.design-package .tile-3, .referral-option .tile-3 { top: 0; left: 50%; height: 10%; width: 27.5%; }
.design-package .tile-4, .referral-option .tile-4 { top: 0; left: 77.5%; height: 10%; width: 22.5%; }
.design-package .tile-5, .referral-option .tile-5 { top: 10%; left: 0; height: 22.5%; width: 22.5%; }
.design-package .tile-6, .referral-option .tile-6 { top: 10%; left: 22.5%; height: 22.5%; width: 27.5%; }
.design-package .tile-7, .referral-option .tile-7 { top: 10%; left: 50%; height: 22.5%; width: 27.5%; }
.design-package .tile-8, .referral-option .tile-8 { top: 10%; left: 77.5%; height: 22.5%; width: 22.5%; }
.design-package .tile-9, .referral-option .tile-9 { top: 32.5%; left: 50%; height: 22.5%; width: 27.5%; }
.design-package .tile-10, .referral-option .tile-10 { top: 32.5%; left: 77.5%; height: 22.5%; width: 22.5%; }

.design-package .card-line,
.referral-option .card-line {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.35s;
}

.design-package .card-line::before, .design-package .card-line::after,
.referral-option .card-line::before, .referral-option .card-line::after {
    content: '';
    position: absolute;
    background-color: rgba(120, 220, 160, 0.2);
    transition: transform 0.35s;
}

.design-package .card-line::before,
.referral-option .card-line::before {
    left: 0;
    right: 0;
    height: 1px;
    transform-origin: 0 50%;
    transform: scaleX(0);
}

.design-package .card-line::after,
.referral-option .card-line::after {
    top: 0;
    bottom: 0;
    width: 1px;
    transform-origin: 50% 0;
    transform: scaleY(0);
}

.design-package .line-1::before, .referral-option .line-1::before { top: 10%; }
.design-package .line-1::after, .referral-option .line-1::after { left: 22.5%; }
.design-package .line-1::before, .design-package .line-1::after,
.referral-option .line-1::before, .referral-option .line-1::after { transition-delay: 0.3s; }

.design-package .line-2::before, .referral-option .line-2::before { top: 32.5%; }
.design-package .line-2::after, .referral-option .line-2::after { left: 50%; }
.design-package .line-2::before, .design-package .line-2::after,
.referral-option .line-2::before, .referral-option .line-2::after { transition-delay: 0.15s; }

.design-package .line-3::before, .referral-option .line-3::before { top: 55%; }
.design-package .line-3::after, .referral-option .line-3::after { right: 22.5%; }

.design-package:hover,
.referral-option:hover {
    box-shadow:
        0px 5px 10px rgba(0, 0, 0, 0.04),
        0px 15px 25px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(120, 220, 160, 0.2);
}

.design-package:hover .card-shine,
.referral-option:hover .card-shine {
    opacity: 1;
}

.design-package:hover .card-tiles,
.referral-option:hover .card-tiles {
    opacity: 1;
    transition-delay: 0.25s;
}

.design-package:hover .tile,
.referral-option:hover .tile {
    animation-name: tile;
}

.design-package:hover .card-line,
.referral-option:hover .card-line {
    opacity: 1;
    transition-duration: 0.15s;
}

.design-package:hover .card-line::before,
.referral-option:hover .card-line::before {
    transform: scaleX(1);
}

.design-package:hover .card-line::after,
.referral-option:hover .card-line::after {
    transform: scaleY(1);
}

.design-package:hover .line-1::before, .design-package:hover .line-1::after,
.referral-option:hover .line-1::before, .referral-option:hover .line-1::after {
    transition-delay: 0s;
}

.design-package:hover .line-2::before, .design-package:hover .line-2::after,
.referral-option:hover .line-2::before, .referral-option:hover .line-2::after {
    transition-delay: 0.15s;
}

.design-package:hover .line-3::before, .design-package:hover .line-3::after,
.referral-option:hover .line-3::before, .referral-option:hover .line-3::after {
    transition-delay: 0.3s;
}
