:root {
    --primary: #d71920;
    --primary-dark: #8f0f14;
    --primary-deep: #300508;
    --secondary: #ff3b3f;
    --accent: #ffffff;
    --gold: #ffcc4d;
    --background: #fff8f8;
    --surface: #ffffff;
    --surface-soft: #fff0f0;
    --text-primary: #190406;
    --text-secondary: #5e3034;
    --border: rgba(215, 25, 32, 0.18);
    --shadow: 0 24px 70px rgba(143, 15, 20, 0.18);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
}

.container,
.content-container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 14px 40px rgba(143, 15, 20, 0.08);
}

.header-container {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.site-logo img {
    width: 132px;
    height: auto;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-left: auto;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.25s ease;
}

.nav-menu a:hover {
    color: #ffffff;
    background: var(--primary);
    transform: translateY(-2px);
}

.hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
    padding: 120px 24px 110px;
    background:
        radial-gradient(circle at 20% 10%, rgba(255, 204, 77, 0.28), transparent 28%),
        radial-gradient(circle at 85% 20%, rgba(255, 59, 63, 0.35), transparent 30%),
        linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-dark) 45%, var(--primary) 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.25));
}

.hero::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -180px;
    bottom: -220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    filter: blur(8px);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h2 {
    max-width: 960px;
    margin: 0 auto 24px;
    font-size: clamp(3rem, 7vw, 6.8rem);
    line-height: 0.9;
    letter-spacing: -0.07em;
    font-weight: 900;
}

.hero p {
    max-width: 760px;
    margin: 0 auto;
    color: #ffffff;
    font-size: clamp(1rem, 1.8vw, 1.28rem);
    line-height: 1.8;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 34px;
    padding: 16px 30px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    transition: 0.25s ease;
}

.btn:hover {
    transform: translateY(-4px);
    background: var(--gold);
    color: var(--text-primary);
}

section {
    padding: 88px 0;
}

section h2 {
    color: var(--text-primary);
    font-size: clamp(2.1rem, 4vw, 4rem);
    line-height: 0.95;
    letter-spacing: -0.045em;
    margin-bottom: 24px;
    text-align: center;
}

section h3 {
    color: var(--text-primary);
}

.content-container > p,
section .container > p {
    max-width: 880px;
    margin: 0 auto 28px;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.85;
    text-align: center;
}

.hero .container > p {
    color: #ffffff;
}

.about-section,
.mission-section,
.contact-section {
    background:
        radial-gradient(circle at top left, rgba(215, 25, 32, 0.08), transparent 30%),
        var(--surface-soft);
}

.services-section,
.pricing-section {
    background: var(--background);
}

.services-grid,
.pricing-grid,
.core-values {
/* Service Grid */
.service-grid {
    display: grid;
    gap: 22px;
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.core-values {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    list-style: none;
    padding: 0;
    margin-top: 32px;
}

.service-card,
.price-card,
.core-values li {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 20px 55px rgba(143, 15, 20, 0.1);
    transition: 0.28s ease;
}

.service-card::before,
.price-card::before,
.core-values li::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(215, 25, 32, 0.12), transparent 45%);
    opacity: 0;
    transition: 0.28s ease;
}

.service-card:hover,
.price-card:hover,
.core-values li:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: rgba(215, 25, 32, 0.35);
}

.service-card:hover::before,
.price-card:hover::before,
.core-values li:hover::before {
    opacity: 1;
}

.service-card > *,
.price-card > *,
.core-values li > * {
    position: relative;
    z-index: 2;
}

.service-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    font-size: 1.25rem;
    box-shadow: 0 14px 30px rgba(215, 25, 32, 0.25);
}

.service-card h3,
.price-card h3,
.mission-section h3 {
    color: var(--text-primary);
    font-size: 1.28rem;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.service-card p,
.price-card li,
.core-values li {
    color: var(--text-secondary);
}

.price-tag {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 18px;
}

.price-card ul {
    list-style: none;
    padding: 0;
}

.price-card li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(215, 25, 32, 0.12);
}

.price-card.featured {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 240, 240, 0.95));
    border: 2px solid rgba(215, 25, 32, 0.35);
    transform: scale(1.03);
}

.price-card.featured::after {
    content: "Most Popular";
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--primary);
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact-section a {
    color: var(--primary);
    font-weight: 900;
    text-decoration: none;
}

.contact-section a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.site-footer {
    background: var(--primary-deep);
    color: #ffffff;
    text-align: center;
    padding: 28px 0;
    font-size: 0.92rem;
}

@media (max-width: 900px) {
    .header-container {
        min-height: auto;
        padding: 16px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .site-logo img {
        width: 116px;
    }

    .nav-menu {
        width: 100%;
        gap: 6px;
    }

    .nav-menu a {
        padding: 9px 11px;
        font-size: 0.82rem;
    }

    .hero {
        padding: 86px 18px 76px;
        text-align: left;
    }

    .hero h2,
    .hero p {
        margin-left: 0;
        margin-right: 0;
        text-align: left;
    }

    section {
        padding: 64px 0;
    }

    section h2,
    .content-container > p,
    section .container > p {
        text-align: left;
    }

    .price-card.featured {
        transform: none;
    }
}
