* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif
}

body {
    background: #f5f5f7;
    color: #1d1d1f;
    overflow-x: hidden
}

:root {
    --brand: #75114f;
    --brand-soft: #f4e8ef;
    --ink: #111827;
    --panel: #f5f5f7;
    --dark: #111217;
    --link: #75114f
}

html {
    overflow-x: hidden
}

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

.navbar {
    height: 54px;
    background: rgba(12, 13, 18, .82);
    color: rgba(255, 255, 255, .86);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px)
}

.nav-inner {
    width: 100%;
    max-width: 1320px;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand {
    width: 126px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    transition: transform .2s, border-color .2s
}

.brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block
}

.brand:hover {
    transform: translateY(-1px);
    filter: brightness(1.08)
}

.navbar ul {
    display: flex;
    justify-content: center;
    flex: 1;
    gap: clamp(28px, 5vw, 64px);
    list-style: none;
    font-size: 12px;
    align-items: center
}

.navbar a {
    display: flex;
    align-items: center;
    height: 54px;
    color: rgba(255, 255, 255, .78);
    transition: color .2s, transform .2s
}

.navbar a:hover {
    color: white;
    transform: translateY(-1px)
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px)
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    background: currentColor;
    transition: transform .25s ease, opacity .25s ease
}

.navbar.menu-open .nav-toggle span:first-child {
    transform: translateY(4px) rotate(45deg)
}

.navbar.menu-open .nav-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg)
}

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

.nav-actions a {
    width: 24px;
    justify-content: center
}

@media(min-width: 1200px) {
    .nav-inner {
        max-width: 1140px
    }
}

@media(min-width: 1400px) {
    .nav-inner {
        max-width: 1320px
    }
}

.nav-icon {
    position: relative;
    display: block;
    width: 16px;
    height: 16px
}

.search-icon:before {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    border: 1.7px solid currentColor;
    border-radius: 50%;
    left: 1px;
    top: 1px
}

.search-icon:after {
    content: "";
    position: absolute;
    width: 7px;
    height: 1.7px;
    background: currentColor;
    border-radius: 2px;
    transform: rotate(45deg);
    right: 1px;
    bottom: 2px
}

.cart-icon:before {
    content: "";
    position: absolute;
    left: 3px;
    top: 5px;
    width: 10px;
    height: 8px;
    border: 1.7px solid currentColor;
    border-top: none;
    border-radius: 0 0 3px 3px
}

.cart-icon:after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 6px;
    height: 5px;
    border: 1.5px solid currentColor;
    border-bottom: none;
    border-radius: 6px 6px 0 0
}

.search-panel {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(0, 0, 0, .42);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease
}

.search-panel.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto
}

.search-box {
    min-height: 310px;
    padding: 18px 24px 34px;
    background: rgba(22, 22, 23, .96);
    color: #fff;
    transform: translateY(-22px);
    transition: transform .28s ease;
    backdrop-filter: saturate(180%) blur(24px);
    -webkit-backdrop-filter: saturate(180%) blur(24px)
}

.search-panel.active .search-box {
    transform: translateY(0)
}

.search-inner {
    max-width: 820px;
    margin: 0 auto
}

.search-row {
    display: grid;
    grid-template-columns: 28px 1fr 36px;
    align-items: center;
    gap: 14px;
    min-height: 58px
}

.search-row input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    font-size: 24px;
    font-weight: 600
}

.search-row input::placeholder {
    color: rgba(255, 255, 255, .38)
}

.search-close {
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, .68);
    font-size: 28px;
    line-height: 1;
    cursor: pointer
}

.search-close:hover {
    color: #fff
}

.quick-search {
    margin-top: 20px;
    color: rgba(255, 255, 255, .72)
}

.quick-search span {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, .45);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase
}

.quick-search a {
    display: block;
    padding: 10px 0;
    color: rgba(255, 255, 255, .82);
    font-size: 15px
}

.quick-search a:hover {
    color: #fff
}

.hero {
    min-height: 520px;
    height: calc(100vh - 44px);
    max-height: 760px;
    background: #000 url('../images/hero-airpods.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding: 0 8%
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    filter: saturate(1.08) contrast(1.04)
}

.video-toggle {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 50%;
    background: rgba(0, 0, 0, .32);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background .25s, transform .25s, border-color .25s
}

.video-toggle:hover {
    background: rgba(0, 0, 0, .5);
    border-color: rgba(255, 255, 255, .7);
    transform: translateY(-2px)
}

.video-toggle:active {
    transform: translateY(0) scale(.96)
}

.video-toggle:focus-visible {
    outline: 3px solid rgba(255, 255, 255, .45);
    outline-offset: 3px
}

.pause-icon {
    width: 12px;
    height: 14px;
    border-left: 4px solid currentColor;
    border-right: 4px solid currentColor
}

.play-icon {
    width: 0;
    height: 0;
    margin-left: 3px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid currentColor
}

.intro-content {
    z-index: 1;
    max-width: 720px;
    padding: 42px 46px;
    position: relative;
    animation: heroReveal 1s ease both;
    text-shadow: 0 8px 24px rgba(0, 0, 0, .55)
}

.intro-content:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 2px;
    background: linear-gradient(135deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .24));
    box-shadow: 0 24px 70px rgba(0, 0, 0, .32);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px)
}

.intro-content:after {
    content: "";
    position: absolute;
    left: 18px;
    top: 18px;
    width: 88px;
    height: 88px;
    border-left: 2px solid rgba(255, 255, 255, .68);
    border-top: 2px solid rgba(255, 255, 255, .68)
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, .78);
    text-transform: uppercase;
    animation: heroReveal 1s ease .12s both
}

.hero h1 {
    font-size: clamp(32px, 4.6vw, 54px);
    font-weight: 800;
    line-height: .92;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0;
    animation: heroReveal 1s ease .24s both
}

.hero h1 span {
    display: block
}

.hero-industries {
    margin: 20px 0 18px;
    color: rgba(255, 255, 255, .76);
    font-size: 14px;
    line-height: 1.5;
    text-transform: lowercase;
    animation: heroReveal 1s ease .36s both
}

.hero h2 {
    max-width: 620px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, .92);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.35;
    animation: heroReveal 1s ease .44s both
}

.hero .btns {
    justify-content: center;
    animation: heroReveal 1s ease .48s both
}

.btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(117, 17, 79, .92);
    background: linear-gradient(135deg, #75114f, #9a2a6d);
    color: white;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(117, 17, 79, .22);
    transition: transform .25s, box-shadow .25s, border-color .25s, background .25s
}

.btn:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0 35%, rgba(255, 255, 255, .34) 46%, transparent 58%);
    transform: translateX(-120%);
    transition: transform .55s ease
}

.btn.outline {
    background: rgba(255, 255, 255, .72);
    color: #75114f;
    border-color: rgba(117, 17, 79, .34);
    box-shadow: 0 10px 24px rgba(29, 29, 31, .08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px)
}

.btn:hover {
    transform: translateY(-3px);
    border-color: rgba(117, 17, 79, 1);
    box-shadow: 0 18px 38px rgba(117, 17, 79, .25)
}

.btn:hover:before {
    transform: translateX(120%)
}

.btn:active {
    transform: translateY(-1px) scale(.98)
}

.btn:focus-visible {
    outline: 3px solid rgba(117, 17, 79, .28);
    outline-offset: 3px
}

.hero .btn {
    min-height: 40px;
    padding: 0 24px;
    border-color: rgba(255, 255, 255, .86);
    background: #fff;
    color: #111;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .18)
}

.hero .btn.outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .72);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none
}

.hero .btn:hover {
    box-shadow: 0 16px 34px rgba(0, 0, 0, .24)
}

.section {
    text-align: center;
    padding: 55px 20px;
    background: #f5f5f7;
    margin-top: 10px;
    overflow: hidden
}

.section h2 {
    font-size: 44px
}

.section p {
    font-size: 20px;
    margin: 5px 0 15px
}

.section img {
    max-width: 650px;
    width: 90%;
    margin-top: 25px;
    animation: zoomIn 1s ease
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 16px;
    background: #fff
}

.card {
    min-height: 520px;
    overflow: hidden;
    background: #fff;
    position: relative
}

.products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch
}

.products-heading {
    grid-column: 1 / -1;
    max-width: 760px;
    margin: 54px auto 34px;
    text-align: center
}

.products-heading span,
.product-category {
    color: #75114f;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase
}

.products-heading h2 {
    margin: 12px 0 0;
    color: #111827;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.05
}

.product-card {
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 520px;
    text-align: center;
    border-radius: 0;
    background: #f5f5f7;
    box-shadow: none;
    transition: transform .3s ease
}

.product-card:hover {
    transform: translateY(-3px)
}

.product-media {
    min-height: 280px;
    display: flex;
    align-items: end;
    justify-content: center;
    overflow: hidden;
    padding: 0 36px 34px
}

.product-media img {
    width: 100%;
    max-width: 480px;
    max-height: 280px;
    display: block;
    object-fit: contain;
    transition: transform .55s ease, filter .55s ease
}

.logo-media img {
    max-width: 330px
}

.product-card:hover .product-media img {
    transform: scale(1.06);
    filter: saturate(1.03) contrast(1.02)
}

.product-content {
    padding: 46px 28px 8px;
    background: transparent
}

.product-content h3 {
    margin: 8px 0 8px;
    color: #111827;
    font-size: 32px;
    line-height: 1.1
}

.product-content p {
    color: #3b3b40;
    font-size: 18px;
    line-height: 1.35;
    margin: 0 0 14px
}

.product-link {
    display: inline-flex;
    align-items: center;
    min-height: auto;
    padding: 0;
    border: 0;
    color: #75114f;
    font-size: 15px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    transition: color .25s ease
}

.product-link:after {
    content: ">";
    margin-left: 6px;
    font-size: 13px
}

.product-link:hover {
    color: #4e0b35
}

.entertainment {
    position: relative;
    background:
        radial-gradient(circle at 18% 12%, rgba(117, 17, 79, .24), transparent 28%),
        linear-gradient(135deg, #111217 0%, #1b1820 54%, #111217 100%);
    padding: 76px 0 82px;
    text-align: center;
    overflow: hidden
}

.entertainment:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 54px 54px;
    opacity: .42;
    pointer-events: none
}

.entertainment-kicker {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-bottom: 12px;
    color: #d9a9c7;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase
}

.entertainment h2 {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: clamp(34px, 5vw, 62px);
    line-height: .95;
    margin-bottom: 34px;
    text-transform: uppercase
}

.movie-slider {
    position: relative;
    z-index: 1;
    overflow: hidden
}

.movie-slide {
    height: 500px;
    margin: 0 10px;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    color: white;
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .5)
}

.movie-slide:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .28) 56%, rgba(0, 0, 0, .08)),
        linear-gradient(0deg, rgba(117, 17, 79, .32), transparent 42%)
}

.movie-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.2) contrast(1.08);
    transform: scale(1.04);
    transition: transform 1.4s ease
}

.slick-center .movie-slide img,
.movie-slide:hover img {
    transform: scale(1.12)
}

.movie-slide .text {
    position: absolute;
    z-index: 2;
    left: 44px;
    bottom: 44px;
    max-width: 560px;
    text-align: left
}

.movie-slide .text span {
    display: inline-block;
    margin-bottom: 14px;
    color: #d9a9c7;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase
}

.movie-slide h3 {
    font-size: clamp(32px, 4.2vw, 56px);
    max-width: 560px;
    line-height: .98;
    text-transform: uppercase
}

.movie-slide button {
    margin-top: 24px;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: 2px;
    background: #fff;
    color: #05060a;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform .25s ease, background .25s ease, color .25s ease
}

.movie-slide button:hover {
    transform: translateY(-3px);
    background: #75114f;
    color: #fff;
    border-color: #75114f
}

.entertainment .slick-dots {
    bottom: -44px
}

.entertainment .slick-dots li button:before {
    color: #fff;
    opacity: .35
}

.entertainment .slick-dots li.slick-active button:before {
    color: #d9a9c7;
    opacity: 1
}

footer {
    background: #111217;
    padding: 54px 7% 28px;
    font-size: 13px;
    color: rgba(255, 255, 255, .68);
    line-height: 1.65
}

.footer-intro {
    max-width: 620px;
    margin-bottom: 34px
}

.footer-intro h3 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 8px
}

.footer-intro p {
    color: rgba(255, 255, 255, .68);
    font-size: 15px
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 30px
}

footer h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 14px
}

footer ul {
    list-style: none
}

footer li {
    margin: 7px 0
}

footer a {
    color: inherit;
    transition: color .2s ease
}

footer a:hover {
    color: #fff
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .52)
}

.about-hero {
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 7%;
    text-align: center;
    color: #fff;
    background:
        linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .42)),
        url('../images/hero-airpods.jpg') center/cover no-repeat
}

.about-hero div {
    max-width: 820px
}

.about-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: #d9a9c7;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px
}

.about-hero h1 {
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1;
    margin-bottom: 16px
}

.about-hero p {
    max-width: 650px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .84);
    font-size: 18px;
    line-height: 1.6
}

.about-story {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
    gap: clamp(34px, 6vw, 80px);
    align-items: center;
    padding: 90px 7%;
    background: #fff
}

.about-copy h2,
.mission-vision h2,
.values-heading h2 {
    margin: 14px 0 18px;
    color: #111827;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.05
}

.about-copy p,
.mission-vision p,
.values-grid p {
    color: #5f6673;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 14px
}

.about-image {
    position: relative
}

.about-image:before {
    content: "";
    position: absolute;
    left: -18px;
    top: -18px;
    width: 120px;
    height: 120px;
    border-left: 2px solid #75114f;
    border-top: 2px solid #75114f
}

.about-image img {
    width: 100%;
    height: 520px;
    display: block;
    object-fit: cover;
    box-shadow: 0 30px 80px rgba(17, 24, 39, .16)
}

.about-solutions {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: #d9dce3;
    padding: 1px
}

.about-solutions article {
    min-height: 260px;
    padding: 34px 28px;
    background: #f5f5f7
}

.about-solutions span {
    color: #75114f;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px
}

.about-solutions h3,
.values-grid h3 {
    margin: 18px 0 10px;
    color: #111827;
    font-size: 23px
}

.about-solutions p {
    color: #5f6673;
    font-size: 15px;
    line-height: 1.65
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 90px 7%;
    background: #fff
}

.mission-vision > div,
.values-grid > div {
    padding: 36px;
    background: #f5f5f7;
    border-left: 3px solid #75114f
}

.values-section {
    padding: 80px 7%;
    background: #f5f5f7
}

.values-heading {
    max-width: 680px;
    margin-bottom: 30px
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px
}

.values-grid > div {
    background: #fff
}

.products-page-hero {
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 90px 7%;
    text-align: center;
    color: #fff;
    background:
        linear-gradient(rgba(0, 0, 0, .58), rgba(0, 0, 0, .38)),
        url('../images/automation-software.jpg') center/cover no-repeat
}

.products-page-hero h1 {
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1;
    margin-bottom: 14px
}

.products-page-hero p {
    max-width: 700px;
    color: rgba(255, 255, 255, .86);
    font-size: 18px;
    line-height: 1.6
}

.products-catalog {
    display: grid;
    gap: 28px;
    padding: 90px 7%;
    background: #fff
}

.catalog-card {
    display: grid;
    grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(28px, 5vw, 66px);
    padding: clamp(28px, 5vw, 54px);
    background: #f5f5f7
}

.catalog-card:nth-child(even) .catalog-image {
    order: 2
}

.catalog-image {
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    overflow: hidden
}

.catalog-image img {
    width: 100%;
    height: 360px;
    display: block;
    object-fit: contain;
    padding: 26px;
    transition: transform .45s ease
}

.catalog-card:hover .catalog-image img {
    transform: scale(1.05)
}

.catalog-copy span {
    color: #75114f;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px
}

.catalog-copy h2 {
    margin: 12px 0 14px;
    color: #111827;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.05
}

.catalog-copy p {
    color: #5f6673;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 20px
}

.catalog-copy ul {
    display: grid;
    gap: 8px;
    margin-bottom: 24px;
    color: #30343b;
    list-style: none
}

.catalog-copy li {
    position: relative;
    padding-left: 18px
}

.catalog-copy li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    background: #75114f
}

.catalog-copy a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 0 20px;
    background: #111217;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform .25s ease, background .25s ease
}

.catalog-copy a:hover {
    transform: translateY(-3px);
    background: #75114f
}

.contact-hero {
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 90px 7%;
    text-align: center;
    color: #fff;
    background:
        linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .42)),
        url('../images/college-mac.jpg') center/cover no-repeat
}

.contact-hero h1 {
    max-width: 820px;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1;
    margin-bottom: 14px
}

.contact-hero p {
    max-width: 650px;
    color: rgba(255, 255, 255, .86);
    font-size: 18px;
    line-height: 1.6
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, .75fr);
    gap: clamp(28px, 5vw, 70px);
    padding: 90px 7%;
    background: #fff
}

.contact-info h2,
.contact-form h2,
.contact-map h2 {
    margin: 14px 0 22px;
    color: #111827;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.05
}

.contact-block {
    padding: 24px;
    margin-bottom: 16px;
    background: #f5f5f7;
    border-left: 3px solid #75114f
}

.contact-block h3 {
    margin-bottom: 8px;
    color: #111827;
    font-size: 20px
}

.contact-block p {
    color: #5f6673;
    line-height: 1.7
}

.contact-methods {
    display: grid;
    gap: 12px;
    margin-top: 24px
}

.contact-methods a {
    display: grid;
    gap: 4px;
    padding: 18px 20px;
    color: #111827;
    background: #fff;
    border: 1px solid rgba(17, 24, 39, .1);
    box-shadow: 0 16px 42px rgba(17, 24, 39, .06);
    transition: transform .25s ease, border-color .25s ease
}

.contact-methods a:hover {
    transform: translateY(-3px);
    border-color: rgba(117, 17, 79, .32)
}

.contact-methods span {
    color: #75114f;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase
}

.contact-form {
    padding: 34px;
    background: #f5f5f7
}

.contact-form label {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
    color: #111827;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(17, 24, 39, .14);
    background: #fff;
    padding: 13px 14px;
    font: inherit;
    color: #111827;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #75114f;
    box-shadow: 0 0 0 3px rgba(117, 17, 79, .12)
}

.contact-form button {
    width: 100%;
    min-height: 46px;
    border: 0;
    background: #111217;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform .25s ease, background .25s ease
}

.contact-form button:hover {
    transform: translateY(-3px);
    background: #75114f
}

.contact-map {
    padding: 0 7% 90px;
    background: #fff
}

.contact-map > div {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px;
    background:
        linear-gradient(rgba(17, 18, 23, .8), rgba(17, 18, 23, .72)),
        url('../images/hero-airpods.jpg') center/cover no-repeat;
    color: #fff
}

.contact-map h2 {
    color: #fff
}

.contact-map p {
    max-width: 620px;
    color: rgba(255, 255, 255, .76);
    line-height: 1.7
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes heroReveal {
    from {
        opacity: 0;
        transform: translateY(22px) scale(.98);
        filter: blur(8px)
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0)
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(.9)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s
}

.reveal.active {
    opacity: 1;
    transform: translateY(0)
}

@media(max-width:768px) {
    .navbar {
        height: 58px
    }

    .nav-inner {
        padding: 0 18px;
        position: relative
    }

    .nav-toggle {
        display: flex;
        order: 3
    }

    .navbar ul {
        position: absolute;
        left: 18px;
        right: 18px;
        top: 58px;
        display: grid;
        gap: 0;
        padding: 12px;
        background: rgba(12, 13, 18, .96);
        border: 1px solid rgba(255, 255, 255, .1);
        box-shadow: 0 24px 50px rgba(0, 0, 0, .34);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        pointer-events: none;
        transition: opacity .25s ease, transform .25s ease, visibility .25s ease
    }

    .navbar.menu-open ul {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto
    }

    .navbar a {
        height: 48px;
        white-space: nowrap
    }

    .navbar ul a {
        justify-content: center;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        font-size: 15px
    }

    .navbar ul li:last-child a {
        border-bottom: 0
    }

    .brand,
    .nav-actions a {
        height: 40px
    }

    .hero {
        margin-top: 0;
        min-height: 560px;
        height: calc(100vh - 92px);
        max-height: none;
        padding: 24px 16px;
        align-items: center;
        justify-content: center
    }

    .hero-video {
        object-position: center;
        transform: scale(1.08)
    }

    .video-toggle {
        top: 16px;
        right: 16px;
        width: 38px;
        height: 38px
    }

    .intro-content {
        width: min(100%, 560px);
        padding: 32px 24px
    }

    .hero-kicker {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 10px
    }

    .hero h1 {
        font-size: 30px;
        line-height: .98
    }

    .hero-industries {
        margin: 16px 0 14px;
        font-size: 13px;
        line-height: 1.6
    }

    .hero h2 {
        margin-bottom: 22px;
        font-size: 16px;
        line-height: 1.35
    }

    .hero .btn {
        min-height: 38px;
        padding: 0 20px;
        font-size: 13px
    }

    .section h2 {
        font-size: 34px
    }

    .grid {
        grid-template-columns: 1fr;
        padding: 12px
    }

    .products-heading h2 {
        font-size: 30px
    }

    .products-heading {
        margin: 42px auto 24px
    }

    .product-card {
        min-height: 460px
    }

    .product-content {
        padding: 38px 22px 8px
    }

    .product-content h3 {
        font-size: 28px
    }

    .product-content p {
        font-size: 16px
    }

    .product-media {
        min-height: 245px;
        padding: 0 24px 28px
    }

    .card {
        min-height: 430px
    }

    .product-card.card {
        min-height: 0
    }

    .movie-slide {
        height: 360px
    }

    .movie-slide h3 {
        font-size: 30px
    }

    .movie-slide .text {
        left: 24px;
        bottom: 28px;
        max-width: calc(100% - 48px)
    }

    .movie-slide button {
        padding: 10px 16px;
        font-size: 12px
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-bottom {
        flex-direction: column
    }

    footer {
        padding: 30px 25px
    }

    .about-story,
    .mission-vision,
    .values-grid {
        grid-template-columns: 1fr
    }

    .about-story,
    .mission-vision,
    .values-section {
        padding: 62px 22px
    }

    .about-image img {
        height: 380px
    }

    .about-solutions {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .catalog-card,
    .catalog-card:nth-child(even) {
        grid-template-columns: 1fr
    }

    .catalog-card:nth-child(even) .catalog-image {
        order: 0
    }

    .products-catalog {
        padding: 62px 22px
    }

    .catalog-image,
    .catalog-image img {
        height: 320px;
        min-height: 320px
    }

    .contact-layout {
        grid-template-columns: 1fr;
        padding: 62px 22px
    }

    .contact-map {
        padding: 0 22px 62px
    }
}

@media(max-width:420px) {
    .hero {
        min-height: 540px;
        padding: 18px 12px
    }

    .intro-content {
        padding: 28px 18px
    }

    .hero h1 {
        font-size: 26px
    }

    .hero-industries {
        font-size: 12px
    }

    .hero h2 {
        font-size: 14px
    }

    .hero .btns {
        gap: 8px
    }

    .hero .btn {
        min-height: 36px;
        padding: 0 16px
    }

    .grid {
        padding: 10px
    }

    .product-card {
        min-height: 420px
    }

    .product-content {
        padding: 34px 18px 8px
    }

    .product-content h3 {
        font-size: 24px
    }

    .product-content p {
        font-size: 14px
    }

    .product-media {
        min-height: 220px;
        padding: 0 18px 24px
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-intro h3 {
        font-size: 22px
    }

    .about-hero {
        min-height: 360px;
        padding: 72px 18px
    }

    .about-hero h1 {
        font-size: 32px
    }

    .about-hero p {
        font-size: 15px
    }

    .about-solutions {
        grid-template-columns: 1fr
    }

    .about-solutions article,
    .mission-vision > div,
    .values-grid > div {
        padding: 28px 22px
    }

    .products-page-hero {
        min-height: 350px;
        padding: 72px 18px
    }

    .products-page-hero h1 {
        font-size: 32px
    }

    .products-page-hero p {
        font-size: 15px
    }

    .products-catalog {
        padding: 48px 14px;
        gap: 18px
    }

    .catalog-card {
        padding: 22px
    }

    .catalog-image,
    .catalog-image img {
        height: 250px;
        min-height: 250px
    }

    .catalog-copy h2 {
        font-size: 26px
    }

    .contact-hero {
        min-height: 350px;
        padding: 72px 18px
    }

    .contact-hero h1 {
        font-size: 32px
    }

    .contact-hero p {
        font-size: 15px
    }

    .contact-layout {
        padding: 48px 14px
    }

    .contact-form,
    .contact-block,
    .contact-map > div {
        padding: 24px 20px
    }

    .contact-map {
        padding: 0 14px 48px
    }
}

/* Software intro section */
.software-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    align-items: center;
    gap: clamp(34px, 6vw, 78px);
    padding: clamp(70px, 9vw, 120px) 7%;
    background:
        radial-gradient(circle at 18% 18%, rgba(117, 17, 79, .13), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #f4f4f7 54%, #ffffff 100%);
    overflow: hidden;
    position: relative;
}

.software-hero:before {
    content: "";
    position: absolute;
    inset: auto 7% 58px auto;
    width: 160px;
    height: 160px;
    border-right: 2px solid rgba(117, 17, 79, .28);
    border-bottom: 2px solid rgba(117, 17, 79, .28)
}

.software-media {
    position: relative;
    min-height: 560px;
}

.software-media:before,
.software-media:after {
    content: "";
    position: absolute;
    border: 2px solid #75114f;
    z-index: 1;
    pointer-events: none
}

.software-media:before {
    width: 118px;
    height: 118px;
    left: -18px;
    top: -18px;
    border-right: 0;
    border-bottom: 0
}

.software-media:after {
    width: 150px;
    height: 150px;
    right: -20px;
    bottom: -20px;
    border-left: 0;
    border-top: 0
}

.software-media img {
    width: 100%;
    height: 560px;
    display: block;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 32px 80px rgba(17, 24, 39, .18)
}

.gemini-logo-card {
    position: absolute;
    top: 28px;
    left: 28px;
    z-index: 3;
    width: 210px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, .92);
    border-bottom: 3px solid #75114f;
    box-shadow: 0 22px 48px rgba(17, 24, 39, .18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px)
}

.gemini-logo-card img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: none;
    border-radius: 0
}

.software-badge {
    position: absolute;
    left: 28px;
    bottom: 28px;
    z-index: 2;
    padding: 15px 18px;
    background: rgba(255, 255, 255, .88);
    border-left: 4px solid #75114f;
    box-shadow: 0 20px 45px rgba(17, 24, 39, .16);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px)
}

.software-badge span,
.section-label {
    display: block;
    color: #75114f;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
}

.software-badge strong {
    display: block;
    margin-top: 4px;
    color: #1d1d1f;
    font-size: 18px
}

.software-copy {
    max-width: 610px;
    position: relative;
    z-index: 1
}

.software-copy h2 {
    margin: 16px 0 18px;
    color: #111827;
    font-size: clamp(30px, 4vw, 46px);
    line-height: .96;
    letter-spacing: 0;
    text-transform: uppercase;
}

.software-copy p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin: 0
}

.software-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 30px 0;
}

.software-points span {
    min-height: 54px;
    display: flex;
    align-items: center;
    padding: 14px 16px;
    background: #fff;
    border-left: 3px solid #75114f;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    color: #1d1d1f;
    font-size: 14px;
    font-weight: 700;
}

.software-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 24px;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: .25s ease;
}

.primary-btn {
    background: #75114f;
    color: white;
}

.secondary-btn {
    border: 1px solid #75114f;
    color: #75114f;
    background: #fff;
}

.primary-btn:hover,
.secondary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(117, 17, 79, .16);
}
    
@media (max-width: 900px) {
    .software-hero {
        grid-template-columns: 1fr;
        padding: 70px 24px;
    }

    .software-media {
        order: 1;
        min-height: auto;
    }

    .software-copy {
        order: 2;
        max-width: none
    }

    .software-media img {
        height: 430px
    }

    .software-copy h2 {
        font-size: 34px
    }

    .software-hero:before {
        display: none
    }
}
    
@media (max-width: 576px) {
    .software-hero {
        padding: 56px 18px;
    }

    .software-media img {
        height: 320px
    }

    .gemini-logo-card {
        top: 16px;
        left: 16px;
        width: 170px;
        padding: 10px 12px
    }

    .software-badge {
        left: 16px;
        bottom: 16px;
        padding: 12px 14px
    }

    .software-copy h2 {
        font-size: 28px;
    }

    .software-copy p {
        font-size: 16px;
    }

    .software-points {
        grid-template-columns: 1fr;
    }

    .software-actions {
        gap: 10px
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }

    .software-media:before,
    .software-media:after {
        width: 78px;
        height: 78px
    }
}


