body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0c0c0f;
    color: #f2f2f2;
    line-height: 1.6;
}

header {
    background: #090909;
    padding: 14px 26px;
    border-bottom: 1px solid #232323;
    position: sticky;
    top: 0;
    z-index: 10;
}

nav {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo-link {
    display: inline-flex;
    align-items: center;
}

.logo {
    height: 48px;
    width: auto;
    display: block;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

nav a {
    color: #f2f2f2;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.3px;
}

nav a.active,
nav a:hover {
    color: #ff3a3a;
}

.hero {
    min-height: 72vh;
    background: linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.72)), url('../img/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
}

.hero-text h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text p {
    color: #d7d7d7;
}

.btn,
button {
    background: #ff3a3a;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 700;
}

.btn:hover,
button:hover {
    opacity: 0.92;
}

section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 56px 20px;
    text-align: center;
}

section h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 30px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services,
.about,
.contact,
.pricing,
.results,
.plans {
    background: #141417;
    border: 1px solid #2a2a2f;
    border-radius: 12px;
    margin-top: 24px;
}

.service-card,
.step,
.profile,
.plan-card {
    background: #1a1a1f;
    border: 1px solid #2d2d35;
    border-top: 3px solid #ff3a3a;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.service-card p,
.step p,
.profile p,
.plan-card p,
section p,
li {
    color: #cfcfd4;
}

.steps,
.profiles,
.cards-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.img-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.contact-intro {
    max-width: 700px;
    margin: 0 auto 20px;
}

.about-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 20px;
    align-items: center;
}

.about-layout > div {
    text-align: center;
}

.about-layout img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #2d2d35;
}

.price {
    display: block;
    margin-top: 10px;
    font-size: 1.4rem;
    color: #ff3a3a;
    font-weight: 700;
}

form {
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

input,
textarea {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid #32323a;
    border-radius: 8px;
    font: inherit;
    box-sizing: border-box;
    background: #101014;
    color: #f2f2f2;
}

input::placeholder,
textarea::placeholder {
    color: #9f9fa8;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

footer {
    text-align: center;
    padding: 20px;
    background: #090909;
    border-top: 1px solid #232323;
    margin-top: 40px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.result-box {
    background: #1a1a1f;
    border: 1px solid #2d2d35;
    border-left: 4px solid #ff3a3a;
    border-radius: 10px;
    padding: 22px;
}

.result-box h3 {
    margin-top: 0;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.result-box ul {
    margin: 0;
    padding-left: 18px;
    text-align: left;
}

.lifts {
    margin-top: 24px;
}

@media (max-width: 860px) {
    .steps,
    .profiles,
    .cards-3,
    .about-layout,
    .results-grid {
        grid-template-columns: 1fr;
    }

    nav {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    nav ul {
        justify-content: center;
    }
}
