/* HERO SECTION */

.hero {
    min-height: 40vh;
    padding: 120px 6% 80px;
    background:
        radial-gradient(circle at top left, rgba(0, 255, 180, 0.14), transparent 35%),
        radial-gradient(circle at bottom right, rgba(90, 80, 255, 0.18), transparent 40%),
        rgba(1, 1, 6, .7);
    color: #fff;
    overflow: hidden;
}

.hero-inner {
    width: min(100%, 1200px);
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-content {
    max-width: 650px;
    z-index: 2;
}

.eyebrow {
    margin-bottom: 1rem;
    color: #00ffc8;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero h1 {
    margin-bottom: 1.5rem;
    font-size: clamp(2.7rem, 7vw, 5.8rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.hero-subtext {
    max-width: 560px;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    color: #010106;
    background: linear-gradient(135deg, #00ffc8, #4d7cff);
    box-shadow: 0 0 30px rgba(0, 255, 200, 0.25);
}

.btn-secondary {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
}

.hero-visual {
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: center;
}

.glow-card {
    width: min(360px, 90vw);
    padding: 2rem;
    border: 1px solid rgba(0, 255, 200, 0.22);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow:
        0 0 50px rgba(0, 255, 200, 0.12),
        inset 0 0 30px rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
}

.code-line {
    display: block;
    margin: 0.7rem 0;
    color: rgba(255, 255, 255, 0.55);
    font-family: monospace;
    font-size: 1rem;
}

.code-line.active {
    color: #00ffc8;
    font-size: 1.6rem;
    font-weight: 700;
    text-shadow: 0 0 18px rgba(0, 255, 200, 0.55);
}

@media (max-width: 1000px) {
    .hero {
        min-height: auto;
        padding: 110px 6% 70px;
    }

    .hero-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 3rem;
    }

    .hero-content {
        max-width: 650px;
        width: 100%;
    }

    .hero-visual {
        width: 100%;
        justify-content: center;
    }

    .glow-card {
        width: 100%;
        max-width: 420px;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 95px;
    }

    .btn {
        width: 100%;
    }
}

/* SERVICES - TRANSPARENT CARDS */
.feature-cards{
    background: rgba(1, 1, 6, .7);
}

.inner-feature-cards{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.glass-card{
    min-height: 320px;
    border-radius: 24px;
    position: relative;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 312px;

    background:
        linear-gradient(
        180deg,
        rgba(255,255,255,0.04) 0%,
        rgba(255,255,255,0.015) 100%
        );

    border: 1px solid rgba(80, 180, 255, 0.22);

    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.03),
        0 0 0 1px rgba(0,180,255,0.05),
        0 0 18px rgba(0,180,255,0.10),
        0 0 40px rgba(0,120,255,0.08);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    overflow: hidden;
}

    /* subtle inner glow */
.glass-card::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;

    background:
        radial-gradient(
        circle at top left,
        rgba(1, 105, 105, 0.15),
        transparent 35%
        ),
        radial-gradient(
        circle at bottom right,
        rgba(1, 47, 85, 0.08),
        transparent 40%
        );
}

    /* faint neon edge glow near bottom like your screenshot */
.glass-card::after{
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: -8px;
    height: 30px;
    border-radius: 50%;
    background: rgba(42, 0, 90, 0.22);
    filter: blur(16px);
    pointer-events: none;
}

.glass-card img{
    width: 128px;
    height: 128px;
    object-fit: contain;
    margin-bottom: 1.25rem;
    filter:
        drop-shadow(0 0 8px rgba(0,255,255,.35))
        drop-shadow(0 0 14px rgba(0,140,255,.25));
}

.glass-card h3{
    font-size: 1.35rem;
    margin-bottom: .75rem;
    align-self: flex-start;
    /* border: 1px solid red; */
}

.glass-card p{
    color: rgba(255,255,255,.72);
    line-height: 1.6;
    /* border: 1px solid red; */
}

    /* tablet break point */
@media (max-width: 1050px){
    .inner-feature-cards{
        grid-template-columns: repeat(2, 1fr);
        justify-items:center;
    }

    .glass-card{
        width:100%;
    }
}

    /* mobile break point */
@media (max-width: 900px){
    .inner-feature-cards{
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .glass-card{
        min-height: 260px;
        max-width: 80%;
    }
}

/* WHY CHOOSE US */

.why-section {
    padding: 100px 8%;
    color: #fff;
    background: rgba(1, 1, 6, .7);
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.section-heading .eyebrow {
    margin-bottom: 1rem;
    color: #00ffc8;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-heading h2 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.section-heading p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    line-height: 1.7;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    position: relative;
    padding: 2rem;
    border: 1px solid rgba(0, 255, 200, 0.16);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025));
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.why-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: radial-gradient(circle at top left, rgba(0, 255, 200, 0.18), transparent 45%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 255, 200, 0.38);
    box-shadow: 0 24px 80px rgba(0, 255, 200, 0.08);
}

.why-card:hover::before {
    opacity: 1;
}

.why-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 1.4rem;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #010106;
    background: linear-gradient(135deg, #00ffc8, #4d7cff);
    font-size: 1.5rem;
    font-weight: 900;
    box-shadow: 0 0 30px rgba(0, 255, 200, 0.2);
}

.why-card h3 {
    margin-bottom: 0.7rem;
    font-size: 1.25rem;
    }

    .why-card p {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.7;
    }

    @media (max-width: 1000px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-section {
        padding: 80px 6%;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: 1.6rem;
    }
}

/* CTA SECTION */

.cta-section {
    padding: 110px 8%;
    background:
        radial-gradient(circle at top left, rgba(0,255,200,0.08), transparent 35%),
        radial-gradient(circle at bottom right, rgba(77,124,255,0.12), transparent 40%),
        rgba(1, 1, 6, .7);
}

.cta-box {
    max-width: 950px;
    margin: 0 auto;
    padding: 4rem 3rem;
    text-align: center;
    color: #fff;
    border: 1px solid rgba(0,255,200,0.18);
    border-radius: 32px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.45),
        0 0 60px rgba(0,255,200,0.05);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: "";
    position: absolute;
    inset: -1px;
    background:
        radial-gradient(circle at 20% 20%, rgba(0,255,200,0.14), transparent 25%),
        radial-gradient(circle at 80% 80%, rgba(77,124,255,0.12), transparent 30%);
    pointer-events: none;
}

.cta-eyebrow {
    position: relative;
    margin-bottom: 1rem;
    color: #00ffc8;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.cta-box h2 {
    position: relative;
    margin-bottom: 1rem;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.cta-text {
    position: relative;
    max-width: 640px;
    margin: 0 auto 2rem;
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    line-height: 1.8;
}

.cta-actions {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.05);
    transition: all 0.25s ease;
}

.btn-ghost:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.1);
}

@media (max-width: 700px) {
    .cta-section {
        padding: 90px 6%;
    }

    .cta-box {
        padding: 3rem 1.5rem;
    }

    .cta-actions a {
        width: 100%;
    }
}