/* === Product Page Styles === */

/* -- Custom Properties -- */
:root {
    --p-bg: #fefefc;
    --p-text: #0a0a0a;
    --p-gray: #6b6b6b;
    --p-card-bg: #d4f0ff;
    --p-dark: #0a0a0a;
    --p-border: #f4f4f0;
    --p-hero-media-bg: #fbfbf9;
}

/* -- Announcement Banner -- */
.announcement-banner {
    position: relative;
    width: 100%;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 2.4rem;
    text-align: center;
}

.announcement-text {
    font-size: 1.3rem;
    color: #fff;
    font-weight: 500;
}

.announcement-close {
    position: absolute;
    right: 2.4rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.6rem;
    cursor: pointer;
    padding: 0.4rem;
    line-height: 1;
}

.announcement-close:hover {
    color: #fff;
}

/* -- Scroll offset for fixed header -- */
[id] {
    scroll-margin-top: 10rem;
}

#platform {
    scroll-margin-top: 0;
}

/* -- Page Override -- */
.product-page {
    background: var(--p-bg);
    color: var(--p-text);
}

/* -- Shared Tag Style -- */
.p-tag {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--p-text);
}

.p-tag-sub {
    display: block;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--p-gray);
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

/* -- Buttons -- */
.p-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.6rem;
    border-radius: 10rem;
    font-size: 1.5rem;
    font-weight: 450;
    line-height: 1;
    background: var(--p-dark);
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s;
    white-space: nowrap;
    border: none;
}

.p-btn:hover {
    opacity: 0.85;
}

.p-btn--white {
    background: #fff;
    color: var(--p-dark);
}

/* -- Placeholder Boxes -- */
.p-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 1.2rem;
}


/* ========================================
   1. HERO SECTION
   ======================================== */
.p-hero {
    padding-top: 9.6rem; /* header height + announcement banner */
    height: min(100dvh, 96rem);
    box-sizing: border-box;
}

.p-hero-inner {
    display: grid;
    grid-template-columns: 34% 66%;
    max-width: 172rem;
    margin: 0 auto;
    padding-left: 2.4rem;
    width: 100%;
    height: 100%;
}

.p-hero-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16rem 2.4rem 3.2rem 0;
}

.p-hero-top {
    display: flex;
    flex-direction: column;
}

.p-hero-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.p-hero-tags {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 3.2rem;
}

.p-hero-heading {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(3.4rem, 3.8vw + 0.5rem, 5.2rem);
    font-weight: 500;
    line-height: 0.95em;
    letter-spacing: -0.02em;
    color: var(--p-text);
}

.p-hero-body {
    font-size: 1.5rem;
    font-weight: 450;
    line-height: 1.3em;
    color: var(--p-text);
    max-width: 40rem;
    margin-bottom: 2.4rem;
}

.p-hero-right {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-right: 2.4rem;
    padding-bottom: 3.2rem;
    overflow: hidden;
}

.p-placeholder--hero {
    width: min(100%, calc((min(100dvh, 96rem) - 12.8rem) * 8.51 / 6.9));
    max-height: 100%;
    aspect-ratio: 8.51 / 6.9;
    border-radius: 1.2rem;
    overflow: hidden;
}


/* ========================================
   2. LOGO ROW
   ======================================== */
.p-logos {
    padding: 12rem 0 0;
}

.p-logos-banner {
    max-width: 172rem;
    margin: 0 auto;
    padding: 0 2.4rem;
    box-sizing: border-box;
}

.p-logos-banner img {
    width: 100%;
    height: auto;
    opacity: 0.8;
}


/* ========================================
   3. PRODUCT GRID SECTION
   ======================================== */
.p-product-grid {
    padding: 8rem 0;
}

.p-section-inner {
    max-width: 172rem;
    margin: 0 auto;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
}

.p-section-header {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    margin-bottom: 6rem;
}

.p-section-heading {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(2.4rem, 2vw, 3.2rem);
    font-weight: 500;
    line-height: 1.1em;
    letter-spacing: -0.02em;
    color: var(--p-text);
    max-width: 80rem;
}

.p-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem;
}

.p-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
}

/* -- Product Card -- */
.p-card {
    display: flex;
    flex-direction: column;
}

.p-card-media {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 1.2rem;
    overflow: hidden;
}

.p-card-media img {
    transition: transform 0.4s ease;
}

.p-card:hover .p-card-media img {
    transform: scale(1.02);
}

.p-card-media--tall {
    aspect-ratio: 3 / 4;
}

.p-card-text {
    padding: 1.6rem 2.4rem 1.6rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.p-card-title {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--p-text);
}

.p-card-desc {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.3;
    color: var(--p-gray);
    max-width: 90%;
}


/* ========================================
   3B. CUSTOMER REVIEWS CAROUSEL
   ======================================== */
.p-reviews {
    padding: 6rem 0 4rem;
    background: #fff;
}

.p-reviews-inner {
    max-width: 172rem;
    margin: 0 auto;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
}

.p-reviews-carousel {
    position: relative;
}

.p-reviews-track {
    position: relative;
}

.p-review-slide {
    display: grid;
    grid-template-columns: 38% 1fr;
    gap: 8rem;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.p-review-slide:first-child {
    position: relative;
}

.p-review-slide.active {
    opacity: 1;
    visibility: visible;
}

.p-review-image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 1.2rem;
}

.p-review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.p-review-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 56rem;
}

.p-review-quote {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(2.4rem, 2.5vw, 3.6rem);
    font-weight: 300;
    line-height: 1.2em;
    letter-spacing: -0.02em;
    color: var(--p-text);
    margin: 0;
}

.p-review-attr {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.p-review-name {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--p-text);
    margin: 0;
}

.p-review-role {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--p-gray);
    margin: 0;
}

/* Progress bars */
.p-reviews-dots {
    display: flex;
    gap: 1.4rem;
    margin-left: calc(38% + 8rem);
    margin-top: 0;
}

.p-reviews-dot {
    flex: 1;
    height: 2.4rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem 0;
    display: flex;
    align-items: center;
}

.p-dot-bar {
    width: 100%;
    height: 2px;
    background: #d8d8d4;
    position: relative;
    overflow: hidden;
    border-radius: 1px;
}

.p-dot-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--p-text);
    border-radius: 1px;
}

/* Completed slides: fully filled */
.p-reviews-dot.completed .p-dot-progress {
    width: 100%;
    transition: none;
}

/* Active slide: animated fill */
.p-reviews-dot.active .p-dot-progress {
    animation: reviewProgress 8s linear forwards;
}

@keyframes reviewProgress {
    from { width: 0%; }
    to { width: 100%; }
}


/* ========================================
   4. FEATURE SECTION WITH ACCORDION
   ======================================== */
.p-feature {
    padding: 16rem 0;
}

.p-feature-inner {
    max-width: 172rem;
    margin: 0 auto;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 6rem;
    align-items: center;
}

.p-feature-media {
    width: 100%;
    aspect-ratio: 4.5 / 3;
    border-radius: 1.2rem;
    overflow: hidden;
    position: relative;
}

.p-placeholder--feature {
    border-radius: 0;
    background: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.p-placeholder--feature.active {
    opacity: 1;
}

.p-feature-content {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.p-feature-heading {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(2.4rem, 2.5vw, 3.6rem);
    font-weight: 500;
    line-height: 1.1em;
    letter-spacing: -0.02em;
    color: var(--p-text);
}

/* -- Accordion -- */
.p-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 1.6rem;
}

.p-accordion-item {
    position: relative;
    padding-left: 2rem;
    border-top: 1px solid var(--p-border);
}

.p-accordion-item:last-child {
    border-bottom: 1px solid var(--p-border);
}

/* Progress bar on left */
.p-accordion-bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 0;
    background: var(--p-text);
    transition: height 0.35s ease-out;
}

.p-accordion-item.active .p-accordion-bar {
    height: 100%;
    transition: height 10s linear;
}

.p-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.6rem 0;
    cursor: pointer;
    user-select: none;
}

.p-accordion-title {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.6rem;
    font-weight: 450;
    line-height: 1.3;
    color: var(--p-text);
}

.p-accordion-icon {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    color: var(--p-text);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.p-accordion-item.active .p-accordion-icon {
    transform: rotate(45deg);
}

.p-accordion-body {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    padding-bottom: 0;
}

.p-accordion-body > p {
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.p-accordion-item.active .p-accordion-body {
    grid-template-rows: 1fr;
    padding-bottom: 1.6rem;
}

.p-accordion-item.active .p-accordion-body > p {
    opacity: 1;
    transition: opacity 0.4s ease 0.15s;
}

.p-accordion-body p {
    font-size: 1.5rem;
    font-weight: 450;
    line-height: 1.3em;
    color: var(--p-gray);
    max-width: 38rem;
}


/* ========================================
   5. HIGHLIGHTS SECTION
   ======================================== */
.p-highlights {
    padding: 10rem 0;
    background: #d4f0ff;
}


.p-highlights-inner {
    max-width: 172rem;
    margin: 0 auto;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
}

.p-highlights-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 4.8rem;
}

.p-highlights-heading {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(2.4rem, 2vw, 3.2rem);
    font-weight: 500;
    line-height: 1.1em;
    letter-spacing: -0.02em;
    color: var(--p-text);
    max-width: 80rem;
}

.p-highlights-heading strong {
    font-weight: 500;
}

.p-highlights-sub {
    color: var(--p-text);
    transition: color 0.8s ease;
}

.p-highlights-nav {
    display: flex;
    gap: 0.8rem;
    flex-shrink: 0;
    margin-top: 0.8rem;
}

.p-highlights-arrow {
    width: 4rem;
    height: 4rem;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--p-text);
    transition: opacity 0.2s;
    padding: 0;
}

.p-highlights-arrow:hover {
    opacity: 0.5;
}

.p-highlights-track-wrap {
    overflow: hidden;
}

.p-highlights-track {
    display: flex;
    gap: 2.4rem;
    transition: transform 0.4s ease;
}

.p-highlight-card {
    min-width: calc(28% - 1.2rem);
    max-width: calc(28% - 1.2rem);
    width: calc(28% - 1.2rem);
    border: none;
    border-radius: 1.2rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
    flex-shrink: 0;
    transition: background-color 0.8s ease, border-color 0.8s ease;
}

.p-highlights.active .p-highlight-card {
    background: #fff;
}

.p-highlight-media {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    flex-shrink: 0;
}

.p-placeholder--highlight {
    width: 100%;
    height: 100%;
    background: #d4f0ff;
}

.p-highlight-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.p-highlight-body {
    padding: 2.4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.p-highlight-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    color: var(--p-gray);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.p-highlight-tag {
    font-weight: 600;
    color: var(--p-text);
    transition: color 0.8s ease;
}

.p-highlight-date {
    font-weight: 400;
    color: var(--p-gray);
    transition: color 0.8s ease;
}

.p-highlight-title {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--p-text);
    transition: color 0.8s ease;
}

.p-highlight-desc {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--p-gray);
    transition: color 0.8s ease;
}

.p-highlight-link {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--p-text);
    transition: color 0.8s ease;
}

.p-highlights.active .p-highlight-link {
    text-decoration: none;
    margin-top: auto;
    padding-top: 0.8rem;
}

.p-highlight-link:hover {
    text-decoration: underline;
}


/* ========================================
   6. SECURITY SECTION
   ======================================== */
.p-security {
    background: var(--p-dark);
    padding: 10rem 0;
}

.p-security-inner {
    max-width: 172rem;
    margin: 0 auto;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
    display: flex;
    flex-direction: column;
    gap: 6.4rem;
}

.p-security-heading {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(2.4rem, 2.5vw, 3.6rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.1em;
    max-width: 74rem;
    color: #fff;
}

.p-security-grid {
    display: flex;
    flex-wrap: wrap;
}

.p-security-card {
    flex: 1 1 0;
    min-width: 25%;
    min-height: 28rem;
    padding: 2.4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 4rem;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.p-security-card:first-child {
    padding-left: 0;
}

.p-security-card:last-child,
.p-security-card--last {
    border-right: none;
    padding-right: 0;
}

.p-security-card-top {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.p-security-card-title {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.1em;
    color: #fff;
}

.p-security-card-desc {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.4em;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.6rem;
}

.p-security-card-icon {
    width: 4.8rem;
    height: 4.8rem;
    opacity: 0.6;
    color: #fff;
}

/* ========================================
   9. CTA SECTION
   ======================================== */
.p-footer-cta {
    background: #fff;
    padding: 4rem 0 4rem;
}

.p-footer-cta-inner {
    max-width: 172rem;
    margin: 0 auto;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--p-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.p-footer-cta-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.p-footer-cta-heading {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(2.4rem, 2.5vw, 3.6rem);
    font-weight: 500;
    line-height: 1.1em;
    letter-spacing: -0.02em;
    color: var(--p-dark);
}

.p-footer-cta-sub {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.4em;
    color: var(--p-gray);
}

.p-footer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.2rem;
    background: var(--p-dark);
    color: #fff;
    border-radius: 10rem;
    font-size: 1.3rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
    margin-top: 0.4rem;
}

.p-footer-cta-btn:hover {
    opacity: 0.85;
}


/* ========================================
   9. FOOTER
   ======================================== */
.p-footer {
    padding: 4rem 0 8rem;
}

.p-footer-inner {
    max-width: 172rem;
    margin: 0 auto;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8rem;
}

.p-footer-logo {
    padding-top: 0.4rem;
}

.p-footer-nav {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

.p-footer-col-title {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--p-text);
    margin-bottom: 1.6rem;
}

.p-footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.p-footer-col a {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--p-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.p-footer-col a:hover {
    color: var(--p-text);
}

.p-footer-logo-big {
    background: #fff;
    max-width: 172rem;
    margin: 0 auto;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
    overflow: hidden;
    height: 24rem;
}

.p-footer-logo-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 0.06;
}


/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1100px) {
    .p-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .p-security-heading {
        font-size: clamp(2.4rem, 2.5vw, 3.6rem);
    }



    .p-security-card {
        min-width: 50%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .p-security-card:nth-child(2) {
        border-right: none;
    }

    .p-footer-nav {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 3.2rem;
    }
}

@media (max-width: 950px) {
    .p-hero {
        padding-top: 9.2rem;
        height: auto;
    }

    .p-hero-inner {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-left: 2.4rem;
        padding-right: 2.4rem;
    }

    .p-hero-left {
        padding: 4rem 0 3.2rem;
        gap: 3.2rem;
    }

    .p-hero-right {
        min-height: auto;
        padding-right: 0;
    }

    .p-placeholder--hero {
        aspect-ratio: 16 / 10;
    }

    .p-hero-heading {
        font-size: clamp(3.2rem, 7vw, 4.2rem);
    }

    .p-logos {
        padding-top: 6rem;
    }

    /* Review carousel: stack image and quote */
    .p-review-slide {
        grid-template-columns: 1fr;
        gap: 3.2rem;
    }

    .p-review-image {
        max-width: 28rem;
    }

    .p-review-quote {
        font-size: clamp(2rem, 4vw, 2.8rem);
    }

    .p-reviews-dots {
        margin-left: 0;
        margin-top: 3.2rem;
    }

    .p-feature-inner {
        grid-template-columns: 1fr;
    }

    .p-feature-media {
        order: -1;
    }

    .p-feature {
        padding: 6rem 0;
    }

    .p-grid-3 {
        grid-template-columns: 1fr;
    }

    .p-footer-inner {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .p-footer-nav {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 3.2rem;
    }

    .p-product-grid,
    .p-highlights,
    .p-security,
    .p-footer-cta {
        padding: 5rem 0 6rem;
    }

    .p-highlight-card {
        min-width: calc(85% - 1.2rem);
        max-width: calc(85% - 1.2rem);
        width: calc(85% - 1.2rem);
    }

    .p-footer-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 3.2rem;
    }

    .p-security-heading {
        font-size: clamp(2.2rem, 5vw, 3rem);
    }

    .p-security-grid {
        flex-direction: column;
    }

    .p-security-card {
        min-width: 100%;
        min-height: auto;
        aspect-ratio: auto;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding: 2.4rem 0;
    }

    .p-security-card:first-child {
        padding-left: 0;
    }

    .p-security-card:last-child {
        border-bottom: none;
        padding-right: 0;
    }

    .p-security-card-icon {
        display: none;
    }

    .p-highlights-header {
        flex-direction: column;
        gap: 2rem;
    }

    .p-footer-logo-big {
        height: 10rem;
    }

    .p-section-header {
        margin-bottom: 4rem;
    }

    .p-section-heading {
        font-size: clamp(2rem, 4.5vw, 2.8rem);
    }

    .p-feature-heading {
        font-size: clamp(2rem, 4.5vw, 2.8rem);
    }

    .p-footer-cta-heading {
        font-size: clamp(2rem, 4.5vw, 2.8rem);
    }

    .p-highlights-heading {
        font-size: clamp(2rem, 4.5vw, 2.8rem);
    }
}

@media (max-width: 600px) {
    .p-grid-4 {
        grid-template-columns: 1fr;
    }

    .p-card-media {
        aspect-ratio: auto;
    }

    .p-review-image {
        max-width: 100%;
        aspect-ratio: 4 / 3;
    }

    .p-highlight-card {
        min-width: calc(90% - 1.2rem);
        max-width: calc(90% - 1.2rem);
        width: calc(90% - 1.2rem);
    }

    .p-footer-nav {
        grid-template-columns: 1fr;
        row-gap: 2.4rem;
    }
}
