* {
    box-sizing: border-box;
}

:root {
    --bg: #f7f3ea;
    --ink: #181511;
    --muted: rgba(24, 21, 17, 0.64);
    --soft: rgba(255, 255, 255, 0.68);
    --orange: #ff8c42;
    --green: #d7f3df;
    --line: rgba(24, 21, 17, 0.10);
    --shadow: 0 24px 80px rgba(24, 21, 17, 0.14);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--ink);
}

a {
    color: inherit;
    text-decoration: none;
}

.page {
    overflow: hidden;
}

.hero-section {
    position: relative;
    padding: 32px 24px 96px;
}

.glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 999px;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.75;
}

.glow-orange {
    top: -140px;
    right: -120px;
    background: #ffd2ac;
}

.glow-green {
    top: 520px;
    left: -180px;
    background: #bdeecb;
}

.nav {
    position: relative;
    z-index: 3;
    max-width: 1180px;
    margin: 0 auto;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.64);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 40px rgba(24, 21, 17, 0.06);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 17px;
    background: var(--ink);
    color: white;
    font-size: 18px;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 18px;
    letter-spacing: -0.02em;
}

.brand small {
    color: rgba(24, 21, 17, 0.52);
    font-size: 12px;
}

.nav-links {
    display: flex;
    gap: 28px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 650;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-switch {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.55);
    font-weight: 800;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-dark {
    background: var(--ink);
    color: white;
    box-shadow: 0 12px 30px rgba(24, 21, 17, 0.18);
}

.button-light {
    background: rgba(255, 255, 255, 0.55);
    color: var(--ink);
    border: 1px solid var(--line);
}

.button-white {
    background: white;
    color: var(--ink);
}

.button-large {
    min-height: 54px;
    padding: 0 28px;
}

.full {
    width: 100%;
}

.hero-grid {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    padding-top: 86px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
    gap: 72px;
}

.reveal {
    animation: reveal 0.75s ease both;
}

.reveal-delay {
    animation: reveal 0.85s ease 0.15s both;
}

@keyframes reveal {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--muted);
    font-weight: 750;
    font-size: 14px;
    box-shadow: 0 12px 40px rgba(24, 21, 17, 0.06);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 820px;
    margin-bottom: 0;
    margin-top: 26px;
    font-size: clamp(46px, 7vw, 92px);
    line-height: 0.96;
    letter-spacing: -0.07em;
    font-weight: 950;
}

.hero-text {
    max-width: 680px;
    margin-top: 28px;
    font-size: 20px;
    line-height: 1.65;
    color: var(--muted);
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 560px;
    margin-top: 38px;
    gap: 18px;
}

.stats strong {
    display: block;
    font-size: 32px;
    letter-spacing: -0.05em;
}

.stats span {
    display: block;
    margin-top: 4px;
    color: rgba(24, 21, 17, 0.56);
    font-size: 14px;
    line-height: 1.35;
}

.phone-wrap {
    position: relative;
    min-height: 720px;
    display: grid;
    place-items: center;
}

.phone-halo {
    position: absolute;
    width: 560px;
    height: 560px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    filter: blur(24px);
}

.phone {
    position: relative;
    width: 335px;
    height: 680px;
    padding: 12px;
    border: 10px solid #191612;
    border-radius: 54px;
    background: #191612;
    box-shadow: var(--shadow);
}

.phone-notch {
    position: absolute;
    z-index: 2;
    top: 13px;
    left: 50%;
    width: 120px;
    height: 28px;
    transform: translateX(-50%);
    background: #191612;
    border-radius: 999px;
}

.phone-screen {
    height: 100%;
    overflow: hidden;
    border-radius: 42px;
    background: #f9f6ef;
}

.app-top {
    padding: 56px 20px 34px;
    background: var(--orange);
    color: white;
}

.app-top p {
    margin-bottom: 6px;
    opacity: 0.8;
    font-size: 14px;
}

.app-top h2 {
    margin-bottom: 18px;
    font-size: 31px;
    line-height: 1.03;
    letter-spacing: -0.04em;
}

.search-box {
    padding: 14px 15px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(14px);
    font-size: 14px;
}

.best-card {
    margin: -18px 16px 0;
    padding: 16px;
    border-radius: 28px;
    background: white;
    box-shadow: 0 18px 50px rgba(24, 21, 17, 0.15);
}

.best-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.best-card small {
    display: block;
    margin-bottom: 4px;
    color: rgba(24, 21, 17, 0.42);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.best-card h3 {
    margin-bottom: 0;
    font-size: 19px;
}

.trade-icon {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 18px;
    background: #ddf6e4;
    font-size: 22px;
}

.muted {
    margin-top: 12px;
    margin-bottom: 0;
    color: rgba(24, 21, 17, 0.58);
    font-size: 14px;
}

.mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 14px;
}

.mini-grid div {
    padding: 12px;
    border-radius: 17px;
    background: #f7f3ea;
}

.mini-grid strong {
    display: block;
    font-size: 13px;
}

blockquote {
    margin: 14px 0;
    padding: 12px;
    border-radius: 17px;
    background: #edf9ef;
    color: #14532d;
    font-size: 13px;
    line-height: 1.45;
}

.people-list {
    display: grid;
    gap: 10px;
    padding: 14px 16px;
}

.person {
    display: grid;
    grid-template-columns: 45px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 11px;
    border-radius: 24px;
    background: white;
    box-shadow: 0 10px 30px rgba(24, 21, 17, 0.04);
}

.avatar {
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    border-radius: 17px;
    background: #f0e4d4;
    font-weight: 900;
}

.person strong,
.person span {
    display: block;
}

.person span {
    margin-top: 2px;
    color: rgba(24, 21, 17, 0.52);
    font-size: 12px;
}

.person b {
    font-size: 12px;
}

.float-card {
    position: absolute;
    z-index: 3;
    min-width: 210px;
    padding: 15px;
    border-radius: 24px;
    background: white;
    box-shadow: var(--shadow);
    animation: float 4s ease-in-out infinite;
}

.float-card strong,
.float-card span {
    display: block;
}

.float-card strong {
    font-size: 14px;
}

.float-card span {
    margin-top: 4px;
    color: rgba(24, 21, 17, 0.55);
    font-size: 12px;
}

.float-left {
    left: 0;
    top: 95px;
}

.float-right {
    right: -8px;
    bottom: 170px;
    animation-delay: 0.6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.content-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 86px 24px;
}

.section-head {
    max-width: 760px;
}

.section-head.centered {
    margin: 0 auto;
    text-align: center;
}

.section-head p,
.orange-label {
    margin-bottom: 14px;
    color: #bd570d;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0.22em;
}

.section-head h2,
.trust-section h2,
.form-copy h2 {
    margin: 0;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.02;
    letter-spacing: -0.06em;
    font-weight: 950;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 46px;
}

.step-card {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 12px 40px rgba(24, 21, 17, 0.04);
}

.step-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 26px;
    border-radius: 22px;
    background: var(--ink);
    color: white;
    font-size: 24px;
}

.step-card small {
    color: rgba(24, 21, 17, 0.36);
    font-weight: 950;
}

.step-card h3 {
    margin: 8px 0 14px;
    font-size: 26px;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.step-card p {
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.7;
}

.trust-section {
    max-width: 1180px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 56px;
    padding: 64px;
    border-radius: 48px;
    background: var(--ink);
    color: white;
}

.trust-section > div > p:not(.orange-label) {
    margin-top: 24px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 18px;
    line-height: 1.7;
}

.activity-list {
    display: grid;
    gap: 14px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 70px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 750;
}

.use-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 46px;
}

.use-card {
    min-height: 128px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.68);
    text-align: left;
    font-size: 18px;
}

.use-card strong {
    display: block;
    margin-top: 18px;
}

.form-section {
    max-width: 1180px;
    margin: 40px auto 80px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 42px;
    align-items: center;
    padding: 64px;
    border-radius: 48px;
    background: var(--orange);
    color: white;
    box-shadow: var(--shadow);
}

.form-copy p {
    max-width: 680px;
    margin: 24px 0 30px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.7;
}

.request-form {
    padding: 28px;
    border-radius: 34px;
    background: white;
    color: var(--ink);
    box-shadow: 0 20px 60px rgba(24, 21, 17, 0.14);
}

.request-form h3 {
    margin-bottom: 8px;
    font-size: 28px;
    letter-spacing: -0.04em;
}

.request-form p {
    margin-bottom: 20px;
    color: var(--muted);
    line-height: 1.5;
}

.request-form label {
    display: block;
    margin: 14px 0 8px;
    font-size: 13px;
    font-weight: 900;
}

.request-form input,
.request-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 13px 14px;
    font: inherit;
    background: #f9f6ef;
    outline: none;
}

.request-form input:focus,
.request-form textarea:focus {
    border-color: rgba(255, 140, 66, 0.7);
    box-shadow: 0 0 0 4px rgba(255, 140, 66, 0.16);
}

.request-form button {
    margin-top: 18px;
}

footer {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    padding: 0 24px 44px;
    color: rgba(24, 21, 17, 0.55);
    font-size: 14px;
}

footer p {
    width: 100%;
    margin-bottom: 0;
    text-align: center;
}

footer a {
    font-weight: 800;
}

@media (max-width: 980px) {
    .nav-links {
        display: none;
    }

    .hero-grid,
    .trust-section,
    .form-section {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 46px;
        padding-top: 56px;
    }

    .phone-wrap {
        min-height: 700px;
    }

    .steps,
    .use-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-section,
    .form-section {
        margin-left: 24px;
        margin-right: 24px;
        padding: 38px;
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding: 18px 14px 64px;
    }

    .nav {
        border-radius: 28px;
        align-items: flex-start;
    }

    .brand small,
    .nav-actions .button {
        display: none;
    }

    h1 {
        font-size: 46px;
    }

    .hero-text {
        font-size: 17px;
    }

    .stats,
    .steps,
    .use-grid {
        grid-template-columns: 1fr;
    }

    .phone-wrap {
        min-height: 660px;
        transform: scale(0.88);
        transform-origin: top center;
        margin-bottom: -80px;
    }

    .float-left {
        left: -20px;
    }

    .float-right {
        right: -28px;
    }

    .content-section {
        padding: 60px 18px;
    }

    .trust-section,
    .form-section {
        margin-left: 18px;
        margin-right: 18px;
        padding: 28px;
        border-radius: 34px;
    }

    .section-head h2,
    .trust-section h2,
    .form-copy h2 {
        font-size: 38px;
    }
}
