* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

main {
    background: #ffffff;
    color: #0b1f3a;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

/* body;\ Sub Header */

.entry-sub-header {
    width: 100%;
    background: linear-gradient(90deg, #ffffff 0%, #f3f0ff 38%, #826af7 100%);
    border-bottom: 1px solid rgba(130, 106, 247, 0.25);
    font-family: Arial, Helvetica, sans-serif;
}

.entry-sub-header__container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.entry-sub-header__brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.entry-sub-header__logo {
    height: 38px;
    width: auto;
    max-width: 280px;
    display: block;
    object-fit: contain;
}

.entry-sub-header__nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 26px;
    flex-wrap: wrap;
}

.entry-sub-header__nav a {
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    font-size: clamp(1.25rem, 1.2vw, 1.8rem);
    line-height: 1.1;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: -0.03em;
    transition: color 0.25s ease, transform 0.25s ease;
}

.entry-sub-header__nav a:hover {
    color: #0b1f3a;
    transform: translateY(-2px);
}

/* Hero */

.entry-hero {
    width: 100%;
    min-height: 720px;
    padding: 110px 32px;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.88) 42%, rgba(130,106,247,0.22) 100%),
        radial-gradient(circle at top right, rgba(130,106,247,0.34), transparent 42%),
        linear-gradient(135deg, #ffffff 0%, #f3f0ff 45%, #eef3ff 100%);
    display: flex;
    align-items: center;
}

.entry-hero__container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.entry-hero__content {
    max-width: 880px;
}

.entry-hero__eyebrow,
.entry-overview__eyebrow,
.entry-included__eyebrow,
.entry-model__eyebrow,
.entry-addons__eyebrow,
.entry-not-included__eyebrow,
.entry-contact__eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: #826af7;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.entry-hero h1 {
    font-size: 6.4rem;
    line-height: 1.02;
    font-weight: 700;
    letter-spacing: -0.075em;
    color: #0b1f3a;
    margin-bottom: 28px;
}

.entry-hero p {
    font-size: 2.2rem;
    line-height: 1.55;
    color: #40516a;
    max-width: 840px;
}

.entry-hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
}

.entry-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 30px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 700;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.entry-hero__button:hover {
    transform: translateY(-3px);
}

.entry-hero__button--primary {
    background: #826af7;
    color: #ffffff;
    border: 1px solid #826af7;
}

.entry-hero__button--primary:hover {
    background: #1f41ea;
    border-color: #1f41ea;
}

.entry-hero__button--secondary {
    background: #ffffff;
    color: #0b1f3a;
    border: 1px solid #d8ddec;
}

.entry-hero__button--secondary:hover {
    border-color: #826af7;
    color: #826af7;
}

/* Overview */

.entry-overview {
    width: 100%;
    padding: 96px 32px;
    background: #ffffff;
}

.entry-overview__container {
    max-width: 1080px;
    margin: 0 auto;
}

.entry-overview h2,
.entry-included__header h2,
.entry-model h2,
.entry-addons__header h2,
.entry-not-included h2,
.entry-contact h2 {
    font-size: 4.2rem;
    line-height: 1.08;
    font-weight: 650;
    letter-spacing: -0.06em;
    color: #0b1f3a;
    margin-bottom: 26px;
}

.entry-overview p {
    font-size: 2rem;
    line-height: 1.6;
    color: #40516a;
    margin-bottom: 18px;
}

/* Included */

.entry-included {
    width: 100%;
    padding: 104px 32px;
    background: #f8f9ff;
}

.entry-included__container {
    max-width: 1280px;
    margin: 0 auto;
}

.entry-included__header {
    max-width: 880px;
    margin-bottom: 58px;
}

.entry-included__header p,
.entry-addons__header p {
    font-size: 2rem;
    line-height: 1.55;
    color: #40516a;
}

.entry-included__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.entry-included__card {
    min-height: 260px;
    padding: 32px;
    border: 1px solid #e5e8ef;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(11, 31, 58, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.entry-included__card:hover,
.entry-addons__card:hover {
    transform: translateY(-6px);
    border-color: #826af7;
    box-shadow: 0 26px 70px rgba(11, 31, 58, 0.13);
}

.entry-included__card h3,
.entry-addons__card h3 {
    font-size: 2.5rem;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.045em;
    color: #0b1f3a;
    margin-bottom: 18px;
}

.entry-included__card p,
.entry-addons__card p {
    font-size: 1.8rem;
    line-height: 1.5;
    color: #40516a;
}

/* Model */

.entry-model {
    width: 100%;
    padding: 96px 32px;
    background: #ffffff;
}

.entry-model__container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 52px;
    align-items: center;
}

.entry-model__content p {
    font-size: 2rem;
    line-height: 1.6;
    color: #40516a;
    margin-bottom: 18px;
}

.entry-model__panel {
    padding: 34px;
    border-radius: 24px;
    border: 1px solid #826af7;
    background: linear-gradient(180deg, #ffffff 0%, #f3f0ff 100%);
    box-shadow: 0 18px 45px rgba(11, 31, 58, 0.08);
}

.entry-model__panel h3 {
    font-size: 2.6rem;
    line-height: 1.15;
    letter-spacing: -0.045em;
    color: #0b1f3a;
    margin-bottom: 24px;
}

.entry-model__panel ul {
    list-style: none;
}

.entry-model__panel li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 15px;
    font-size: 1.9rem;
    line-height: 1.45;
    color: #40516a;
}

.entry-model__panel li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #826af7;
}

/* Add-ons */

.entry-addons {
    width: 100%;
    padding: 104px 32px;
    background: #f8f9ff;
}

.entry-addons__container {
    max-width: 1280px;
    margin: 0 auto;
}

.entry-addons__header {
    max-width: 920px;
    margin-bottom: 58px;
}

.entry-addons__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.entry-addons__card {
    min-height: 250px;
    padding: 32px;
    border: 1px solid #e5e8ef;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(11, 31, 58, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* Not Included */

.entry-not-included {
    width: 100%;
    padding: 96px 32px;
    background: linear-gradient(135deg, #ffffff 0%, #f3f0ff 50%, #eef3ff 100%);
}

.entry-not-included__container {
    max-width: 1280px;
    margin: 0 auto;
}

.entry-not-included__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 44px;
}

.entry-not-included__grid div {
    padding: 26px;
    border: 1px solid #e5e8ef;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.84);
    color: #40516a;
    font-size: 1.8rem;
    line-height: 1.45;
}

/* Contact */

.entry-contact {
    width: 100%;
    padding: 86px 32px;
    background: linear-gradient(135deg, #0b1f3a 0%, #1f41ea 52%, #826af7 100%);
    color: #ffffff;
}

.entry-contact__container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.entry-contact__content {
    max-width: 860px;
}

.entry-contact__eyebrow {
    color: rgba(255, 255, 255, 0.78);
}

.entry-contact h2 {
    color: #ffffff;
}

.entry-contact p {
    font-size: 2rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
}

.entry-contact__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 30px;
    border-radius: 999px;
    background: #ffffff;
    color: #0b1f3a;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 700;
    white-space: nowrap;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.entry-contact__button:hover {
    transform: translateY(-3px);
    background: #f3f0ff;
    color: #826af7;
}

/* Responsive */

@media (max-width: 1100px) {
    .entry-sub-header__container {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .entry-sub-header__nav {
        width: 100%;
        justify-content: flex-start;
    }

    .entry-included__grid,
    .entry-addons__grid,
    .entry-not-included__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .entry-model__container {
        grid-template-columns: 1fr;
    }

    .entry-contact__container {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .entry-sub-header {
        background: linear-gradient(135deg, #ffffff 0%, #f3f0ff 48%, #826af7 100%);
    }

    .entry-sub-header__container {
        padding: 20px 24px;
    }

    .entry-sub-header__logo {
        height: auto;
        width: 100%;
        max-width: 240px;
    }

    .entry-sub-header__nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .entry-sub-header__nav a {
        width: 100%;
        padding: 12px 14px;
        border: 1px solid rgba(130, 106, 247, 0.22);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.72);
        color: #10233f;
        font-size: 1.3rem;
    }

    .entry-hero {
        min-height: auto;
        padding: 88px 24px;
    }

    .entry-hero h1 {
        font-size: 4rem;
    }

    .entry-hero p,
    .entry-overview p,
    .entry-included__header p,
    .entry-model__content p,
    .entry-addons__header p,
    .entry-contact p {
        font-size: 2rem;
    }

    .entry-overview,
    .entry-included,
    .entry-model,
    .entry-addons,
    .entry-not-included {
        padding: 74px 24px;
    }

    .entry-overview h2,
    .entry-included__header h2,
    .entry-model h2,
    .entry-addons__header h2,
    .entry-not-included h2,
    .entry-contact h2 {
        font-size: 3rem;
    }

    .entry-included__grid,
    .entry-addons__grid,
    .entry-not-included__grid {
        grid-template-columns: 1fr;
    }

    .entry-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .entry-hero__button,
    .entry-contact__button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .entry-sub-header__container {
        padding: 18px;
    }

    .entry-sub-header__nav {
        grid-template-columns: 1fr;
    }

    .entry-hero {
        padding: 72px 18px;
    }

    .entry-hero h1 {
        font-size: 3.2rem;
    }

    .entry-overview,
    .entry-included,
    .entry-model,
    .entry-addons,
    .entry-not-included,
    .entry-contact {
        padding: 58px 18px;
    }

    .entry-included__card,
    .entry-addons__card,
    .entry-model__panel,
    .entry-not-included__grid div {
        padding: 26px;
    }

    .entry-included__card h3,
    .entry-addons__card h3,
    .entry-model__panel h3 {
        font-size: 2.3rem;
    }
}