/* ================================================================
           RESET & BASE
        ================================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0a1429;
    color: #e8f0ff;
    line-height: 1.5;
    overflow-x: hidden;
}

:root {
    --accent: #ff520d;
    --accent-glow: rgba(255, 82, 13, 0.35);
    --accent-dim: rgba(255, 82, 13, 0.12);
    --text: #e8f0ff;
    --text-dim: rgba(232, 240, 255, 0.65);
    --glass: rgba(255, 255, 255, 0.03);
    --gb: rgba(255, 255, 255, 0.07);
    --navy: #0a1429;
    --navy-2: #12284c;
    --green: #3ddc84;
    /* Android green */
    --green-dim: rgba(61, 220, 132, 0.12);
    --green-glow: rgba(61, 220, 132, 0.3);
    --blue: #4285f4;
    --blue-dim: rgba(66, 133, 244, 0.1);
    --gold: #f59e0b;
    --gold-dim: rgba(245, 158, 11, 0.12);
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 800;
    line-height: 1.2;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

section {
    padding: 100px 0;
    position: relative;
}

/* ================================================================
           SECTION TITLE
        ================================================================ */
.section-title {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
}

.section-title h2 {
    font-size: clamp(28px, 4.5vw, 54px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.05;
    letter-spacing: -0.035em;
    display: inline-block;
    position: relative;
}

.section-title h2 span {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--accent);
}



.section-title p {
    font-size: 0.95rem;
    color: var(--text-dim);
    max-width: 640px;
    margin: 28px auto 0;
    line-height: 1.85;
}

/* ================================================================
           HERO
        ================================================================ */
.hero {
    background: linear-gradient(135deg, #0a1429 0%, #12284c 100%);
    padding: 110px 0 90px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* noise texture */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

/* dot grid */
.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image:
        radial-gradient(circle at 20% 30%, var(--accent) 1.5px, transparent 1.5px),
        radial-gradient(circle at 80% 70%, var(--green) 1.5px, transparent 1.5px);
    background-size: 56px 56px;
    animation: patternFloat 22s infinite linear;
}

@keyframes patternFloat {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 56px 56px;
    }
}

/* ambient orbs */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.orb-1 {
    width: 420px;
    height: 420px;
    top: 0%;
    left: -10%;
    background: radial-gradient(circle, rgba(61, 220, 132, 0.06) 0%, transparent 70%);
    animation: orbFloat 20s infinite ease-in-out;
}

.orb-2 {
    width: 320px;
    height: 320px;
    bottom: 5%;
    right: -8%;
    background: radial-gradient(circle, rgba(255, 82, 13, 0.07) 0%, transparent 70%);
    animation: orbFloat 16s infinite ease-in-out reverse;
}

.orb-3 {
    width: 240px;
    height: 240px;
    top: 55%;
    left: 38%;
    background: radial-gradient(circle, rgba(66, 133, 244, 0.05) 0%, transparent 70%);
    animation: orbFloat 24s infinite ease-in-out 8s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

/* floating android icons */
.floating-icon {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: 0.1;
    animation: floatIcon 28s infinite ease-in-out;
    font-size: 26px;
    color: var(--green);
}

.fi-1 {
    top: 12%;
    left: 8%;
    animation-delay: 0s;
}

.fi-2 {
    top: 28%;
    right: 12%;
    animation-delay: -4s;
    color: var(--accent);
}

.fi-3 {
    bottom: 22%;
    left: 18%;
    animation-delay: -8s;
}

.fi-4 {
    bottom: 12%;
    right: 8%;
    animation-delay: -12s;
    color: var(--accent);
}

.fi-5 {
    top: 55%;
    left: 4%;
    animation-delay: -16s;
}

.fi-6 {
    top: 18%;
    right: 4%;
    animation-delay: -20s;
    color: var(--blue);
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    50% {
        transform: translateY(-38px) rotate(8deg) scale(1.15);
    }
}

/* hero grid */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    position: relative;
}

/* eyebrow */
.hero-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: #ff520d;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
}

.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1.5px;
    background: #ff520d;
    flex-shrink: 0;
}

.hero-title {
    font-size: clamp(36px, 5.5vw, 68px);
    font-weight: 900;
    line-height: 0.95;
    color: white;
    margin-bottom: 25px;
    letter-spacing: -0.04em;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
}

.hero-title .gradient-text {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--accent);
    position: relative;
}

/* green glitch echo */
.hero-title .gradient-text::after {
    content: 'Android Apps That Win';
    position: absolute;
    left: 2px;
    top: 0;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(61, 220, 132, 0.45);
    opacity: 0;
    animation: glitch 4s infinite 0.12s;
}

@keyframes glitch {

    0%,
    100% {
        opacity: 0;
        transform: translateX(0);
    }

    5% {
        opacity: 0.6;
        transform: translateX(-3px);
    }

    9% {
        opacity: 0;
        transform: translateX(2px);
    }

    13% {
        opacity: 0;
    }
}

.hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 28px;
    color: var(--text-dim);
    line-height: 1.85;
    font-weight: 400;
    max-width: 460px;
    opacity: 0;
    animation: fadeUp 0.8s 0.55s forwards;
}

/* hero stats */
.hero-stats {
    display: flex;
    gap: 28px;
    margin: 26px 0;
    opacity: 0;
    animation: fadeUp 0.8s 0.65s forwards;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat-num {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--green);
    letter-spacing: -0.04em;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.hero-stat-sep {
    width: 1px;
    background: var(--gb);
    align-self: stretch;
}

/* buttons */
.hero-cta {
    display: flex;
    gap: 14px;
    margin-top: 22px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.88s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.2s;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 15px 36px;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.btn-primary:hover {
    box-shadow: 0 0 48px var(--accent-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dim);
    padding: 14px 30px;
    border: 1px solid var(--gb);
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, .25);
    color: var(--text);
}

/* ================================================================
           3D PHONE FLIP CARD
        ================================================================ */
.phone-display-wrapper {
    position: relative;
    perspective: 1100px;
    opacity: 0;
    animation: fadeUp 1s 0.6s forwards;
    display: flex;
    justify-content: center;
}

.three-d-phone-container {
    position: relative;
    width: 300px;
    height: 580px;
    transform-style: preserve-3d;
    animation: phoneFlip 10s infinite ease-in-out;
    animation-delay: 2s;
}

@keyframes phoneFlip {

    0%,
    22% {
        transform: rotateY(0deg) rotateX(0deg);
    }

    32%,
    54% {
        transform: rotateY(180deg) rotateX(0deg);
    }

    62%,
    76% {
        transform: rotateY(0deg) rotateX(8deg) rotateZ(-3deg);
    }

    86%,
    100% {
        transform: rotateY(0deg) rotateX(0deg);
    }
}

/* phone shell — shared */
.phone-front,
.phone-back {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 42px;
    overflow: hidden;
}

/* ── PHONE FRONT: App screen ── */
.phone-front {
    transform: rotateY(0deg);
    z-index: 2;
    /* Phone chassis */
    background: linear-gradient(160deg, #1a1a2e 0%, #16213e 100%);
    border: 3px solid rgba(255, 82, 13, 0.4);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06),
        0 56px 100px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(255, 82, 13, 0.08),
        inset 0 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    padding: 0;
}

/* top orange glow bar */
.phone-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--green), var(--accent));
    box-shadow: 0 0 18px var(--accent-glow);
    z-index: 10;
    border-radius: 42px 42px 0 0;
}

/* phone top notch bar */
.phone-notch {
    height: 36px;
    background: #0d0d1a;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.phone-notch-pill {
    width: 80px;
    height: 10px;
    border-radius: 20px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* status bar icons */
.phone-notch-status {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 700;
}

/* screen content */
.phone-screen {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #0f1923;
    position: relative;
}

/* app header bar */
.app-topbar {
    background: linear-gradient(135deg, #0e1f45, #12284c);
    padding: 14px 16px 12px;
    border-bottom: 1px solid rgba(255, 82, 13, 0.15);
    flex-shrink: 0;
}

.app-topbar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.app-logo {
    font-size: 0.85rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
}

.app-logo span {
    color: var(--accent);
}

.app-topbar-icons {
    display: flex;
    gap: 12px;
}

.app-topbar-icons i {
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* search pill */
.app-search {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 82, 13, 0.12);
    border-radius: 20px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-search i {
    font-size: 0.65rem;
    color: var(--text-dim);
}

.app-search span {
    font-size: 0.65rem;
    color: var(--text-dim);
    font-weight: 500;
}

/* hero banner inside app */
.app-banner {
    background: linear-gradient(135deg, rgba(255, 82, 13, 0.15), rgba(61, 220, 132, 0.08));
    border-bottom: 1px solid rgba(255, 82, 13, 0.1);
    padding: 14px 16px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.app-banner::before {
    content: '';
    position: absolute;
    right: -20px;
    top: -20px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 82, 13, 0.15), transparent);
}

.app-banner-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 4px;
}

.app-banner-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.app-banner-sub {
    font-size: 0.62rem;
    color: var(--text-dim);
    line-height: 1.4;
}

/* quick actions row */
.app-quick-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.03);
    flex-shrink: 0;
    border-bottom: 1px solid var(--gb);
}

.app-quick-btn {
    background: #0f1923;
    padding: 10px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.app-quick-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.app-quick-label {
    font-size: 0.52rem;
    color: var(--text-dim);
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

/* feed cards inside app */
.app-feed {
    flex: 1;
    overflow: hidden;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.app-section-label {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 2px;
}

.app-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--gb);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    cursor: default;
}

.app-card:hover {
    background: var(--accent-dim);
    border-color: rgba(255, 82, 13, 0.25);
}

.app-card-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.app-card-body {
    flex: 1;
    min-width: 0;
}

.app-card-title {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.app-card-sub {
    font-size: 0.58rem;
    color: var(--text-dim);
    font-weight: 500;
}

.app-card-badge {
    font-size: 0.55rem;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 20px;
    flex-shrink: 0;
}

/* bottom nav bar */
.app-navbar {
    background: #0d0d1a;
    border-top: 1px solid var(--gb);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 8px 0 10px;
    flex-shrink: 0;
}

.app-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    cursor: default;
}

.app-nav-item i {
    font-size: 0.9rem;
    color: var(--text-dim);
    transition: color 0.2s;
}

.app-nav-item.active i {
    color: var(--accent);
}

.app-nav-item span {
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.app-nav-item.active span {
    color: var(--accent);
}

/* home indicator */
.phone-home-bar {
    height: 22px;
    background: #0d0d1a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phone-home-pill {
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.2);
}

/* side buttons */
.phone-side-btn {
    position: absolute;
    border-radius: 3px;
    background: linear-gradient(180deg, #1a1a2e, #12284c);
    border: 1px solid rgba(255, 82, 13, 0.2);
}

.phone-vol-up {
    left: -5px;
    top: 100px;
    width: 4px;
    height: 28px;
}

.phone-vol-down {
    left: -5px;
    top: 136px;
    width: 4px;
    height: 44px;
}

.phone-power {
    right: -5px;
    top: 115px;
    width: 4px;
    height: 44px;
}

/* ── PHONE BACK: Tech stack ── */
.phone-back {
    background: linear-gradient(160deg, #12284c 0%, #0a1429 100%);
    border: 2px solid rgba(61, 220, 132, 0.3);
    transform: rotateY(180deg);
    box-shadow: 0 56px 100px rgba(0, 0, 0, 0.6), 0 0 60px rgba(61, 220, 132, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 28px 22px;
}

/* scan sweep */
.phone-back::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(45deg, transparent 30%, rgba(61, 220, 132, 0.04) 50%, transparent 70%),
        linear-gradient(135deg, transparent 30%, rgba(255, 82, 13, 0.04) 50%, transparent 70%);
    animation: cardScan 4s infinite linear;
    pointer-events: none;
    border-radius: 42px;
}

@keyframes cardScan {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

/* top glow bar */
.phone-back::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--accent), var(--green));
    box-shadow: 0 0 18px var(--green-glow);
    border-radius: 42px 42px 0 0;
}

.pb-android-icon {
    font-size: 2.8rem;
    color: var(--green);
    margin-bottom: 14px;
    animation: iconPulse 3s infinite ease-in-out;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 32px var(--green-glow);
}

@keyframes iconPulse {

    0%,
    100% {
        text-shadow: 0 0 18px var(--green-glow);
    }

    50% {
        text-shadow: 0 0 42px rgba(61, 220, 132, 0.6);
    }
}

.pb-title {
    font-size: 1.2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 1;
}

.pb-title span {
    color: var(--green);
}

.pb-sub {
    font-size: 0.78rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

/* tech stack chips */
.pb-tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.pb-tech-chip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(61, 220, 132, 0.12);
    border-radius: 10px;
    padding: 10px 8px;
    text-align: center;
    transition: all 0.3s;
    cursor: default;
}

.pb-tech-chip:hover {
    background: var(--green-dim);
    border-color: rgba(61, 220, 132, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(61, 220, 132, 0.1);
}

.pb-tech-chip i {
    font-size: 1.3rem;
    display: block;
    margin-bottom: 6px;
    transition: transform 0.3s;
}

.pb-tech-chip:hover i {
    transform: scale(1.15);
}

.pb-tech-chip span {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text);
}

/* phone responsive */
@media(max-width:1200px) {
    .phone-display-wrapper {
        padding: 0 20px;
    }

    .three-d-phone-container {
        width: 280px;
        height: 540px;
    }
}

@media(max-width:768px) {
    .three-d-phone-container {
        width: 260px;
        height: 500px;
    }
}

@media(max-width:480px) {
    .three-d-phone-container {
        width: 240px;
        height: 460px;
    }
}

/* ================================================================
           TICKER
        ================================================================ */
.wd-ticker {
    position: relative;
    z-index: 2;
    padding: 18px 0;
    overflow: hidden;
    border-top: 1px solid var(--gb);
    border-bottom: 1px solid var(--gb);
    background: rgba(61, 220, 132, 0.015);
}

.wd-ticker__track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: tickerScroll 32s linear infinite;
}

.wd-ticker__item {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text);
    padding: 0 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    transition: color 0.3s;
}

.wd-ticker__item:hover {
    color: var(--accent);
}

.wd-ticker__sep {
    color: var(--green);
}

@keyframes tickerScroll {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ================================================================
           PROCESS / HOW WE BUILD
        ================================================================ */
.process-section {
    background: linear-gradient(180deg, #0a1429 0%, #0d1e3d 100%);
    border-top: 1px solid var(--gb);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2px;
    margin-top: 16px;
}

.process-step {
    background: var(--glass);
    border: 1px solid var(--gb);
    padding: 48px 28px 40px;
    position: relative;
    overflow: hidden;
    cursor: default;
    text-align: center;
    transition: border-color 0.4s, background 0.4s, transform 0.35s;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), rgba(255, 130, 50, 0.4));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    box-shadow: 0 0 12px var(--accent-glow);
}

.process-step:hover {
    border-color: rgba(255, 82, 13, 0.3);
    background: rgba(255, 82, 13, 0.04);
    transform: translateY(-6px);
}

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

.step-num-tag {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--accent);
    background: #0a1429;
    border: 1px solid rgba(255, 82, 13, 0.3);
    border-top: none;
    padding: 4px 14px;
    border-radius: 0 0 8px 8px;
}

.step-icon-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--accent-dim);
    border: 1px solid rgba(255, 82, 13, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.7rem;
    color: var(--accent);
    transition: transform 0.3s, box-shadow 0.3s;
}

.process-step:hover .step-icon-circle {
    transform: scale(1.1);
    box-shadow: 0 0 28px var(--accent-glow);
}

.process-step h3 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.process-step p {
    color: var(--text-dim);
    font-size: 0.85rem;
    line-height: 1.85;
}

/* ================================================================
           TECH STACK SECTION
        ================================================================ */
.tech-stack {
    background: linear-gradient(135deg, #0a1429 0%, #12284c 100%);
    border-top: 1px solid var(--gb);
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2px;
    margin-top: 16px;
}

.tech-category {
    background: var(--glass);
    border: 1px solid var(--gb);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: border-color 0.4s, background 0.4s, transform 0.35s;
}

.tech-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--accent);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
    box-shadow: 0 0 12px var(--accent-glow);
}

.tech-category:hover {
    border-color: rgba(255, 82, 13, 0.3);
    background: rgba(255, 82, 13, 0.04);
    transform: translateY(-4px);
}

.tech-category:hover::before {
    transform: scaleY(1);
}

.tc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gb);
}

.tc-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--accent-dim);
    border: 1px solid rgba(255, 82, 13, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
    transition: transform 0.3s, box-shadow 0.3s;
}

.tech-category:hover .tc-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--accent-glow);
}

.tc-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
}

.tc-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.tc-chip {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--gb);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-dim);
    transition: all 0.25s;
    cursor: default;
}

.tc-chip:hover {
    background: var(--accent-dim);
    border-color: rgba(255, 82, 13, 0.3);
    color: var(--text);
}

/* ================================================================
           APP TYPES / SERVICES
        ================================================================ */
.app-types {
    background: linear-gradient(180deg, #0d1e3d 0%, #0a1429 100%);
    border-top: 1px solid var(--gb);
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2px;
    margin-top: 16px;
}

.type-card {
    background: var(--glass);
    border: 1px solid var(--gb);
    overflow: hidden;
    position: relative;
    cursor: default;
    transition: border-color 0.4s, background 0.4s, transform 0.35s;
    display: flex;
    flex-direction: column;
}

.type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), rgba(255, 130, 50, 0.4));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    box-shadow: 0 0 12px var(--accent-glow);
    z-index: 2;
}

.type-card:hover {
    border-color: rgba(255, 82, 13, 0.35);
    background: rgba(255, 82, 13, 0.04);
    transform: translateY(-6px);
}

.type-card:hover::before {
    transform: scaleX(1);
}

.type-image {
    height: 190px;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    filter: brightness(0.55) saturate(0.65);
    transition: filter 0.5s, transform 0.5s;
}

.type-card:hover .type-image {
    filter: brightness(0.7) saturate(0.8);
    transform: scale(1.03);
}

.type-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(10, 20, 41, 0.95));
    display: flex;
    align-items: flex-end;
    padding: 18px;
}

.type-image-overlay h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.type-content {
    padding: 24px 28px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.type-icon {
    width: 46px;
    height: 46px;
    background: var(--accent-dim);
    border: 1px solid rgba(255, 82, 13, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 1.2rem;
    color: var(--accent);
    transition: transform 0.3s, box-shadow 0.3s;
}

.type-card:hover .type-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--accent-glow);
}

.type-card h3 {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.type-card p {
    color: var(--text-dim);
    font-size: 0.83rem;
    line-height: 1.85;
    flex: 1;
    margin-bottom: 14px;
}

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

.type-features li {
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--text-dim);
    font-size: 0.8rem;
    font-weight: 500;
    border-bottom: 1px solid var(--gb);
}

.type-features li:last-child {
    border: none;
}

.type-features li i {
    color: var(--accent);
    font-size: 0.68rem;
}


/* ================================================================
           RESULTS SECTION
        ================================================================ */
.results-section {
    background: linear-gradient(180deg, #0a1429 0%, #0d1e3d 100%);
    border-top: 1px solid var(--gb);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(1fr);
    gap: 2px;
    margin-bottom: 3px;
}

.result-stat-box {
    background: var(--glass);
    border: 1px solid var(--gb);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: border-color 0.4s, background 0.4s, transform 0.35s;
}

.result-stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--accent);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.result-stat-box:hover {
    border-color: rgba(255, 82, 13, 0.35);
    background: var(--accent-dim);
    transform: translateY(-4px);
}

.result-stat-box:hover::before {
    transform: scaleY(1);
}

.rsb-num {
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 900;
    color: var(--accent);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 6px;
}

.rsb-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
}

/* results list */
.results-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 2px;
}

.results-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.ri-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    background: var(--accent-dim);
    border: 1px solid rgba(255, 82, 13, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent);
    transition: transform 0.3s, box-shadow 0.3s;
}

.results-item:hover .ri-icon {
    transform: scale(1.08);
    box-shadow: 0 0 18px var(--accent-glow);
}

.results-item h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: #fff;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.results-item p {
    color: var(--text-dim);
    font-size: 0.83rem;
    line-height: 1.85;
}

/* ================================================================
           CTA
        ================================================================ */
.cta {
    background: linear-gradient(135deg, #0a1429, #12284c);
    text-align: center;
    border-top: 1px solid var(--gb);
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 300px;
    background: radial-gradient(ellipse, rgba(255, 82, 13, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 22px;
}

.cta-label::before,
.cta-label::after {
    content: '';
    width: 40px;
    height: 1.5px;
    background: var(--accent);
}

.cta h2 {
    font-size: clamp(28px, 4vw, 52px);
    color: #fff;
    margin-bottom: 22px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.cta h2 .ghost {
    color: transparent;
    -webkit-text-stroke: 1px rgba(232, 240, 255, 0.4);
}

.cta p {
    font-size: 0.95rem;
    color: var(--text-dim);
    margin-bottom: 44px;
    line-height: 1.85;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================================================
           KEYFRAMES
        ================================================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================================================
           RESPONSIVE
        ================================================================ */
@media(max-width:1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .phone-display-wrapper {
        justify-content: center;
    }
}

@media(max-width:992px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {
    section {
        padding: 72px 0;
    }

    .hero {
        padding: 80px 0 60px;
        min-height: auto;
    }

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

    .hero-cta,
    .hero-stats {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media(max-width:480px) {
    .hero-title {
        font-size: 2rem;
    }
}