:root {
    --black: #0a0a0a;
    --white: #f5f2ec;
    --accent: #ff4d1c;
    --accent2: #ffd166;
    --mid: #1a1a1a;
    --border: rgba(245, 242, 236, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
     
}



/* NOISE OVERLAY */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("../assets/bg_bg.svg");
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

/* MAX WIDTH WRAPPER */
.container {
    max-width: 1360px;
    margin: 0 auto;
    width: 100%;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 60px;
    z-index: 100;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px);
    background: rgba(10, 10, 10, 0.7);
}

.nav-inner {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--accent);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

nav ul a {
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.6;
    transition: opacity 0.2s;
}

nav ul a:hover {
    opacity: 1;
}

.nav-cta {
    background: var(--accent);
    color: var(--black) !important;
    opacity: 1 !important;
    padding: 10px 22px;
    font-weight: 400 !important;
}

/* HERO */
.hero {
    min-height: 100vh;
    padding: 120px 60px 80px;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    max-width: 1360px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(255, 77, 28, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(255, 209, 102, 0.05) 0%, transparent 50%);
}

.hero-tag {
    display: inline-block;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 14px;
    margin-bottom: 32px;
    animation: fadeUp 0.8s ease both;
}

.hero h1 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(52px, 6vw, 70px);
    line-height: 0.95;
    letter-spacing: -3px;
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease 0.1s both;
}

.hero h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
}

.hero-sub {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.65;
    max-width: 460px;
    margin-bottom: 48px;
    animation: fadeUp 0.8s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    animation: fadeUp 0.8s ease 0.3s both;
}

.btn-primary {
    background: var(--accent);
    color: var(--black);
    padding: 16px 36px;
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 77, 28, 0.35);
}

.btn-ghost {
    color: var(--white);
    font-size: 14px;
    opacity: 0.6;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s;
}

.btn-ghost:hover {
    opacity: 1;
}

.btn-ghost::after {
    content: '→';
}

.hero-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    animation: fadeIn 1s ease 0.4s both;
    position: relative;
}

.phone-mockup {
    width: 260px;
    height: 520px;
    background: var(--mid);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
    transform: rotate(3deg);
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: var(--black);
    border-radius: 20px;
    z-index: 2;
}

.phone-screen {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a0a04 0%, #0d0d1a 50%, #0a1a0d 100%);
    display: flex;
    flex-direction: column;
    padding: 60px 20px 30px;
    gap: 12px;
}

.app-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.5s ease both;
}

.app-card:nth-child(1) {
    animation-delay: 0.8s;
}

.app-card:nth-child(2) {
    animation-delay: 1.0s;
}

.app-card:nth-child(3) {
    animation-delay: 1.2s;
}

.app-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.app-icon-1 {
    background: linear-gradient(135deg, #ff4d1c, #ff8c42);
}

.app-icon-2 {
    background: linear-gradient(135deg, #6c63ff, #9b8ff5);
}

.app-icon-3 {
    background: linear-gradient(135deg, #00c9a7, #48dbce);
}

.app-info {
    flex: 1;
}

.app-name {
    font-size: 12px;
    font-weight: 400;
    color: var(--white);
}

.app-stat {
    font-size: 10px;
    color: var(--accent2);
    opacity: 0.8;
}

.second-phone {
    position: absolute;
    right: -30px;
    top: 40px;
    width: 200px;
    height: 400px;
    background: var(--mid);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    transform: rotate(8deg);
    overflow: hidden;
    opacity: 0.6;
}

.second-phone-screen {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #0d0d2a 0%, #1a0a1a 100%);
    padding: 50px 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.metric-row {
    background: rgba(108, 99, 255, 0.15);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 10px;
}

.metric-val {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #9b8ff5;
}

/* STATS BAR */
.stats-bar {
    background: var(--accent);
    padding: 24px 60px;
}

.stats-bar-inner {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(10, 10, 10, 0.6);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(10, 10, 10, 0.2);
}

/* WHAT THEY WANT */
.section {
    padding: 100px 60px;
}

.section-inner {
    max-width: 1360px;
    margin: 0 auto;
}

.section-label {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 60px;
}

.needs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
}

.need-card {
    background: var(--black);
    padding: 44px 36px;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
}

.need-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--accent);
    transition: height 0.4s ease;
}

.need-card:hover {
    background: #111;
}

.need-card:hover::before {
    height: 100%;
}

.need-num {
    font-family: 'Syne', sans-serif;
    font-size: 60px;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.12;
    line-height: 1;
    margin-bottom: 16px;
}

.need-title {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
}

.need-desc {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.55;
}

/* SERVICES */
.services-section {
    padding: 100px 60px;
    background: var(--mid);
}

.services-inner {
    max-width: 1360px;
    margin: 0 auto;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
}

.service-row {
    display: flex;
    align-items: center;
    padding: 32px 40px;
    border-bottom: 1px solid var(--border);
    transition: background 0.25s;
    gap: 40px;
    cursor: pointer;
}

.service-row:last-child {
    border-bottom: none;
}

.service-row:hover {
    background: rgba(255, 77, 28, 0.05);
}

.service-row:hover .service-arrow {
    opacity: 1;
    transform: translateX(4px);
}

.service-icon-wrap {
    width: 52px;
    height: 52px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.service-content {
    flex: 1;
}

.service-name {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.service-desc {
    font-size: 14px;
    opacity: 0.5;
    line-height: 1.6;
}

.service-tag {
    background: rgba(255, 77, 28, 0.12);
    color: var(--accent);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    flex-shrink: 0;
}

.service-arrow {
    opacity: 0.2;
    transition: all 0.25s;
    font-size: 20px;
}

/* PROCESS */
.process-section {
    padding: 100px 60px;
}

.process-inner {
    max-width: 1360px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 60px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
}

.process-step {
    padding: 0 24px;
    text-align: center;
    position: relative;
}

.step-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--black);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--accent);
    transition: border-color 0.3s, background 0.3s;
    position: relative;
    z-index: 1;
}

.process-step:hover .step-dot {
    border-color: var(--accent);
    background: rgba(255, 77, 28, 0.1);
}

.step-title {
    font-family: 'Syne', sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 13px;
    opacity: 0.5;
    line-height: 1.7;
}

/* TESTIMONIAL */
.testimonial-section {
    padding: 100px 60px;
    background: var(--accent);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial-inner {
    max-width: 1360px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial-section::before {
    content: '"';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Syne', sans-serif;
    font-size: 400px;
    font-weight: 800;
    color: rgba(10, 10, 10, 0.07);
    line-height: 1;
}

.testimonial-text {
    font-family: 'Syne', sans-serif;
    font-size: clamp(24px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--black);
    max-width: 800px;
    margin: 0 auto 32px;
    line-height: 1.15;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    color: rgba(10, 10, 10, 0.6);
    font-size: 14px;
    z-index: 1;
    position: relative;
}

/* CTA */
.cta-section {
    padding: 120px 60px;
    position: relative;
}

.cta-inner {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--border));
}

.cta-section h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(44px, 6vw, 80px);
    font-weight: 800;
    letter-spacing: -3px;
    line-height: 1;
}

.cta-section h2 span {
    color: var(--accent);
}

.cta-sub {
    font-size: 17px;
    opacity: 0.5;
    max-width: 400px;
    line-height: 1.6;
}

.cta-form {
    display: flex;
    gap: 0;
    width: 100%;
    max-width: 500px;
}

.cta-input {
    flex: 1;
    background: var(--mid);
    border: 1px solid var(--border);
    border-right: none;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    padding: 16px 20px;
    outline: none;
}

.cta-input::placeholder {
    opacity: 0.3;
}

.cta-input:focus {
    border-color: var(--accent);
}

.cta-btn {
    background: var(--accent);
    color: var(--black);
    border: none;
    padding: 16px 32px;
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: opacity 0.2s;
}

.cta-btn:hover {
    opacity: 0.9;
}

/* FOOTER */
footer {
    padding: 40px 60px;
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 20px;
}

.footer-logo span {
    color: var(--accent);
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--white);
    opacity: 0.4;
    text-decoration: none;
    font-size: 13px;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 0.9;
}

footer p {
    font-size: 12px;
    opacity: 0.3;
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* SCROLL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    nav {
        padding: 0 24px;
    }

    nav ul {
        display: none;
    }

    .hero {
        padding: 100px 24px 60px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-right {
        display: none;
    }

    .stats-bar {
        padding: 24px;
    }

    .stats-bar-inner {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .section,
    .services-section,
    .process-section,
    .cta-section {
        padding: 60px 24px;
    }

    .needs-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .process-steps::before {
        display: none;
    }

    .footer-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    footer {
        padding: 32px 24px;
    }
}