

/* Start:/local/templates/iservice/css/apple-brand-page-v1.css?178653712811203*/
.apple-brand-page {
    --apple-page-ink: #15131b;
    --apple-page-muted: #777281;
    --apple-page-line: #e8e5ee;
    --apple-page-soft: #f5f4f7;
    --apple-page-accent: #5b42ec;
    margin: 0;
    padding: 24px 0 88px;
    color: var(--apple-page-ink);
    background: #fff;
}

.apple-brand-page *,
.apple-brand-page *::before,
.apple-brand-page *::after {
    box-sizing: border-box;
}

.apple-brand-page__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 22px;
    color: #aba5ba;
    font-size: 14px;
}

.apple-brand-page__breadcrumbs a {
    color: #8f88a1;
    text-decoration: none;
}

.apple-brand-page__hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr);
    min-height: 500px;
    overflow: hidden;
    border-radius: 34px;
    background:
        radial-gradient(circle at 72% 18%, rgba(113, 83, 255, .24), transparent 35%),
        linear-gradient(135deg, #121118 0%, #191620 56%, #0c0b10 100%);
    box-shadow: 0 26px 64px rgba(23, 19, 35, .17);
}

.apple-brand-page__hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 32px 60px 64px;
    color: #fff;
}

.apple-brand-page__logo {
    display: block;
    width: 54px;
    height: auto;
    margin-bottom: 24px;
    filter: invert(1);
}

.apple-brand-page__eyebrow,
.apple-brand-page__section-kicker {
    margin: 0 0 10px;
    color: #8e75ff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.apple-brand-page__hero h1 {
    max-width: 590px;
    margin: 0;
    color: #fff;
    font-size: clamp(45px, 5vw, 72px);
    font-weight: 700;
    line-height: .98;
    letter-spacing: -.045em;
}

.apple-brand-page__lead {
    max-width: 560px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 18px;
    line-height: 1.55;
}

.apple-brand-page__primary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-height: 52px;
    margin-top: 34px;
    padding: 0 24px;
    border-radius: 15px;
    color: #17131f;
    background: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.apple-brand-page__primary-link:hover {
    color: #17131f;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
}

.apple-brand-page__hero-media {
    position: relative;
    min-height: 500px;
}

.apple-brand-page__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(18px);
}

.apple-brand-page__glow--one {
    top: 58px;
    right: 78px;
    width: 340px;
    height: 340px;
    background: rgba(119, 88, 255, .28);
}

.apple-brand-page__glow--two {
    right: -130px;
    bottom: -180px;
    width: 410px;
    height: 410px;
    background: rgba(74, 43, 183, .2);
}

.apple-brand-page__hero-device {
    position: absolute;
    z-index: 2;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 30px 36px rgba(0, 0, 0, .36));
}

.apple-brand-page__hero-device--phone {
    top: 38px;
    right: 42px;
    width: 310px;
    height: 430px;
    transform: rotate(3deg);
}

.apple-brand-page__hero-device--laptop {
    right: 250px;
    bottom: -22px;
    width: 360px;
    height: 245px;
    transform: rotate(-4deg);
}

.apple-brand-page__section {
    padding-top: 76px;
}

.apple-brand-page__section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 27px;
}

.apple-brand-page__section-heading h2,
.apple-brand-page__seo-text h2 {
    margin: 0;
    color: var(--apple-page-ink);
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 650;
    line-height: 1.08;
    letter-spacing: -.025em;
}

.apple-brand-page__section-heading > p {
    max-width: 330px;
    margin: 0 0 3px;
    color: var(--apple-page-muted);
    font-size: 14px;
}

.apple-brand-page__category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.apple-brand-page__category-card {
    position: relative;
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr) 26px;
    align-items: center;
    min-height: 150px;
    overflow: hidden;
    padding: 17px 22px 17px 16px;
    border: 1px solid #eeecf2;
    border-radius: 23px;
    color: var(--apple-page-ink);
    background: linear-gradient(145deg, #fbfbfc 0%, #f3f2f5 100%);
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.apple-brand-page__category-card:hover {
    color: var(--apple-page-ink);
    border-color: #d9d2f8;
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(42, 35, 62, .09);
}

.apple-brand-page__category-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 108px;
    height: 116px;
}

.apple-brand-page__category-image img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.apple-brand-page__category-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding-left: 14px;
}

.apple-brand-page__category-copy strong {
    font-size: 20px;
    font-weight: 650;
    line-height: 1.15;
}

.apple-brand-page__category-copy small {
    margin-top: 7px;
    color: var(--apple-page-muted);
    font-size: 13px;
}

.apple-brand-page__category-arrow {
    color: var(--apple-page-accent);
    font-size: 22px;
    transition: transform .2s ease;
}

.apple-brand-page__category-card:hover .apple-brand-page__category-arrow {
    transform: translateX(4px);
}

.apple-brand-page__series-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.apple-brand-page__series-list a {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0 19px;
    border: 1px solid var(--apple-page-line);
    border-radius: 14px;
    color: #28232f;
    background: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.apple-brand-page__series-list a:hover {
    color: #fff;
    border-color: var(--apple-page-accent);
    background: var(--apple-page-accent);
}

.apple-brand-page__products {
    margin-top: 76px;
    padding: 54px 28px 34px;
    border-radius: 30px;
    background: var(--apple-page-soft);
}

.apple-brand-page__products .apple-brand-page__section-heading {
    padding: 0 16px;
}

.apple-brand-page__all-link {
    color: var(--apple-page-accent);
    font-size: 15px;
    font-weight: 650;
    text-decoration: none;
}

.apple-brand-page__all-link span {
    display: inline-block;
    margin-left: 9px;
    transition: transform .2s ease;
}

.apple-brand-page__all-link:hover span {
    transform: translateX(4px);
}

.apple-brand-page__catalog-component {
    min-height: 120px;
}

.apple-brand-page__seo-text {
    display: grid;
    grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
    gap: 60px;
    margin-top: 76px;
    padding: 42px 46px;
    border: 1px solid var(--apple-page-line);
    border-radius: 26px;
    background: #fff;
}

.apple-brand-page__seo-text > p {
    margin: 0;
    color: #676170;
    font-size: 16px;
    line-height: 1.72;
}

@media (max-width: 1180px) {
    .apple-brand-page__hero {
        grid-template-columns: minmax(0, 1fr) 390px;
    }

    .apple-brand-page__hero-content {
        padding-left: 44px;
    }

    .apple-brand-page__hero-device--phone {
        right: 5px;
        width: 280px;
    }

    .apple-brand-page__hero-device--laptop {
        right: 170px;
        width: 300px;
    }

    .apple-brand-page__category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .apple-brand-page {
        padding: 12px 0 58px;
    }

    .apple-brand-page__breadcrumbs {
        margin-bottom: 14px;
        font-size: 12px;
    }

    .apple-brand-page__hero {
        grid-template-columns: 1fr;
        min-height: 570px;
        border-radius: 25px;
    }

    .apple-brand-page__hero-content {
        justify-content: flex-start;
        padding: 32px 23px 250px;
    }

    .apple-brand-page__logo {
        width: 42px;
        margin-bottom: 18px;
    }

    .apple-brand-page__eyebrow {
        font-size: 11px;
    }

    .apple-brand-page__hero h1 {
        font-size: 43px;
    }

    .apple-brand-page__lead {
        margin-top: 17px;
        font-size: 15px;
        line-height: 1.48;
    }

    .apple-brand-page__primary-link {
        width: 100%;
        min-height: 50px;
        margin-top: 23px;
    }

    .apple-brand-page__hero-media {
        position: absolute;
        inset: auto 0 0;
        min-height: 250px;
    }

    .apple-brand-page__hero-device--phone {
        top: -42px;
        right: 6px;
        width: 190px;
        height: 255px;
    }

    .apple-brand-page__hero-device--laptop {
        right: 104px;
        bottom: -6px;
        width: 230px;
        height: 160px;
    }

    .apple-brand-page__glow--one {
        top: -20px;
        right: 14px;
        width: 240px;
        height: 240px;
    }

    .apple-brand-page__section {
        padding-top: 54px;
    }

    .apple-brand-page__section-heading {
        display: block;
        margin-bottom: 21px;
    }

    .apple-brand-page__section-heading h2,
    .apple-brand-page__seo-text h2 {
        font-size: 30px;
    }

    .apple-brand-page__section-heading > p {
        margin-top: 10px;
    }

    .apple-brand-page__category-grid {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .apple-brand-page__category-card {
        grid-template-columns: 82px minmax(0, 1fr) 24px;
        min-height: 112px;
        padding: 11px 17px 11px 10px;
        border-radius: 19px;
    }

    .apple-brand-page__category-image {
        width: 80px;
        height: 88px;
    }

    .apple-brand-page__category-copy {
        padding-left: 11px;
    }

    .apple-brand-page__category-copy strong {
        font-size: 18px;
    }

    .apple-brand-page__series-list {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 1px 1px 8px;
        scrollbar-width: none;
    }

    .apple-brand-page__series-list::-webkit-scrollbar {
        display: none;
    }

    .apple-brand-page__series-list a {
        flex: 0 0 auto;
        min-height: 44px;
    }

    .apple-brand-page__products {
        margin: 54px -8px 0;
        padding: 34px 8px 20px;
        border-radius: 24px;
    }

    .apple-brand-page__products .apple-brand-page__section-heading {
        padding: 0 10px;
    }

    .apple-brand-page__all-link {
        display: inline-block;
        margin-top: 13px;
    }

    .apple-brand-page__seo-text {
        grid-template-columns: 1fr;
        gap: 21px;
        margin-top: 54px;
        padding: 28px 22px;
        border-radius: 22px;
    }

    .apple-brand-page__seo-text > p {
        font-size: 15px;
        line-height: 1.65;
    }
}

/* End */
/* /local/templates/iservice/css/apple-brand-page-v1.css?178653712811203 */
