/**
 * Polish A/B test partnership landing page styles
 *
 * @author Novatek Team
 * @copyright Copyright (c) Novatek
 * @package Novatek_Cms
 */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700;800&display=swap");

/* =============================================================
   BASE OVERRIDES
============================================================= */

body.partner-landing-pl {
    background: #060e1a;
}

body.partner-landing-pl .columns {
    --sectionMargin: 0;
}

body.partner-landing-pl .page-main {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

body.partner-landing-pl .page-main > .columns,
body.partner-landing-pl .page-main .column.main {
    background: transparent;
    padding: 0;
    box-shadow: none;
}

body.partner-landing-pl .breadcrumbs {
    display: none;
}

body.partner-landing-pl .page-wrapper {
    background: #060e1a;
}

/* ---------- HEADER ---------- */
body.partner-landing-pl .page-header {
    background: linear-gradient(135deg, #060e1a 0%, #0a1a33 50%, #0d2240 100%) !important;
    border-bottom: 1px solid rgba(0, 200, 255, 0.12);
}

body.partner-landing-pl .page-header .panel.wrapper,
body.partner-landing-pl .page-header .header-bottom-wrap-bottom::before,
body.partner-landing-pl .page-header .header.panel,
body.partner-landing-pl .page-header .header.content,
body.partner-landing-pl .page-header .nav-sections,
body.partner-landing-pl .page-header .navigation,
body.partner-landing-pl .page-header .header-top,
body.partner-landing-pl .page-header .header-page-nav,
body.partner-landing-pl .page-header .header-bottom,
body.partner-landing-pl .page-header .header-bottom-wrap-top,
body.partner-landing-pl .page-header .header-bottom-wrap-bottom {
    background: transparent !important;
    box-shadow: none !important;
}

body.partner-landing-pl .page-header .header-page-nav {
    background: rgba(6, 14, 26, 0.6) !important;
    backdrop-filter: blur(12px);
}

body.partner-landing-pl .page-header .panel.wrapper {
    background: rgba(6, 14, 26, 0.4) !important;
    backdrop-filter: blur(8px);
}

body.partner-landing-pl .page-header input[type="text"],
body.partner-landing-pl .page-header input[type="search"] {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
}

/* ---------- FOOTER ---------- */
body.partner-landing-pl .page-footer {
    background: linear-gradient(200deg, #060e1a 0%, #0a1a33 50%, #0d2240 100%) !important;
    color: rgba(255,255,255,0.86);
}

body.partner-landing-pl .page-footer .footer.content,
body.partner-landing-pl .page-footer .footer-container,
body.partner-landing-pl .page-footer .footer.links,
body.partner-landing-pl .page-footer .copyright {
    background: transparent !important;
}

body.partner-landing-pl .page-footer a,
body.partner-landing-pl .page-footer p {
    color: rgba(255,255,255,0.86) !important;
}

body.partner-landing-pl .page-footer a:hover {
    color: #00d4ff !important;
}

/* =============================================================
   DESIGN TOKENS
============================================================= */

.novatek-pl-landing {
    --pl-bg: #060e1a;
    --pl-surface: rgba(10, 22, 42, 0.92);
    --pl-text: #e8f0ff;
    --pl-muted: #8ba4c4;
    --pl-accent: #00c8ff;
    --pl-accent-2: #3d7aff;
    --pl-accent-glow: rgba(0, 200, 255, 0.25);
    --pl-border: rgba(0, 200, 255, 0.15);
    --pl-radius: 20px;
    --pl-radius-sm: 12px;
    --pl-container: 1200px;
    --pl-pad: 24px;

    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--pl-text);
    line-height: 1.65;
    overflow-x: hidden;
}

.novatek-pl-landing *,
.novatek-pl-landing *::before,
.novatek-pl-landing *::after {
    box-sizing: border-box;
}

.novatek-pl-landing h1,
.novatek-pl-landing h2,
.novatek-pl-landing h3 {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin: 0 0 16px;
    color: #fff;
}

.novatek-pl-landing p {
    color: var(--pl-muted);
}

.novatek-pl-landing img {
    max-width: 100%;
    height: auto;
}

.pl-container {
    max-width: var(--pl-container);
    margin: 0 auto;
    padding: 0 var(--pl-pad);
}

.pl-section-title {
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    text-align: center;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 30%, var(--pl-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pl-section-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: var(--pl-muted);
    margin-bottom: 48px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* =============================================================
   BUTTONS
============================================================= */

.pl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: 14px;
    border: none;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    line-height: 1.4;
}

.pl-btn--primary {
    background: linear-gradient(135deg, var(--pl-accent) 0%, var(--pl-accent-2) 100%);
    color: #020810;
    box-shadow: 0 8px 32px rgba(0, 200, 255, 0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}

.pl-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 200, 255, 0.45), inset 0 1px 0 rgba(255,255,255,0.25);
}

.pl-btn--full {
    width: 100%;
}

.pl-btn--lg {
    padding: 18px 40px;
    font-size: 1.05rem;
    border-radius: 16px;
}

/* =============================================================
   HERO
============================================================= */

.pl-hero {
    position: relative;
    padding: 100px 0 50px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.pl-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.pl-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 900px 500px at 15% 30%, rgba(0, 200, 255, 0.18), transparent 60%),
        radial-gradient(ellipse 700px 400px at 85% 20%, rgba(61, 122, 255, 0.15), transparent 55%),
        linear-gradient(180deg, rgba(6, 14, 26, 0.3) 0%, rgba(6, 14, 26, 0.9) 100%);
    z-index: 1;
}

/* Subtle grid pattern */
.pl-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 200, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 200, 255, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 2;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000, transparent);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000, transparent);
}

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

.pl-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pl-hero__badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 8px;
    background: rgba(0, 200, 255, 0.12);
    border: 1px solid rgba(0, 200, 255, 0.3);
    color: var(--pl-accent);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
    animation: pl-fadeUp 0.6s ease both;
}

.pl-hero__title {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 18px;
    animation: pl-fadeUp 0.6s ease 0.1s both;
}

.pl-hero__subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #a0b8d8;
    max-width: 460px;
    margin-bottom: 32px;
    animation: pl-fadeUp 0.6s ease 0.2s both;
}

.pl-hero__stats {
    display: flex;
    gap: 24px;
    margin-bottom: 36px;
    animation: pl-fadeUp 0.6s ease 0.3s both;
}

.pl-stat {
    padding: 20px 24px;
    border-radius: 16px;
    background: rgba(0, 200, 255, 0.06);
    border: 1px solid rgba(0, 200, 255, 0.18);
    flex: 1;
    backdrop-filter: blur(8px);
}

.pl-stat__number {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--pl-accent);
    line-height: 1;
    margin-bottom: 6px;
}

.pl-stat__label {
    display: block;
    font-size: 0.82rem;
    color: var(--pl-muted);
    line-height: 1.4;
}

.pl-hero__cta {
    animation: pl-fadeUp 0.6s ease 0.4s both;
}

/* Hero visual */
.pl-hero__visual {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pl-fadeUp 0.8s ease 0.2s both;
}

.pl-hero__device-cluster {
    position: relative;
    width: 100%;
    height: 100%;
}

.pl-hero__device {
    position: absolute;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pl-hero__device--main {
    width: 300px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    animation: pl-deviceFloat 6s ease-in-out infinite;
}

.pl-hero__device--secondary {
    width: 240px;
    left: 5%;
    top: 55%;
    transform: translateY(-50%) rotate(-6deg);
    z-index: 2;
    opacity: 0.9;
    animation: pl-deviceFloat 6s ease-in-out 1s infinite;
}

.pl-hero__device--tertiary {
    width: 220px;
    right: 3%;
    top: 45%;
    transform: translateY(-50%) rotate(5deg);
    z-index: 1;
    opacity: 0.85;
    animation: pl-deviceFloat 6s ease-in-out 2s infinite;
}

.pl-hero__glow {
    position: absolute;
    width: 400px;
    height: 400px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0, 200, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: pl-glowPulse 4s ease-in-out infinite;
}

/* =============================================================
   BENEFITS
============================================================= */

.pl-benefits {
    padding: 60px 0 70px;
    position: relative;
    background: linear-gradient(180deg, #060e1a 0%, #081424 50%, #060e1a 100%);
    border-top: 1px solid rgba(0, 200, 255, 0.08);
}

.pl-benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 40px auto 0;
}

.pl-benefit {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 200, 255, 0.05), rgba(61, 122, 255, 0.03));
    border: 1px solid rgba(0, 200, 255, 0.12);
    transition: all 0.3s ease;
    animation: pl-fadeUp 0.5s ease both;
    animation-delay: var(--delay);
}

.pl-benefit:hover {
    transform: translateX(6px);
    border-color: rgba(0, 200, 255, 0.35);
    background: linear-gradient(135deg, rgba(0, 200, 255, 0.1), rgba(61, 122, 255, 0.06));
    box-shadow: 0 8px 30px rgba(0, 200, 255, 0.1);
}

.pl-benefit__icon {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--pl-accent), var(--pl-accent-2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #020810;
    box-shadow: 0 6px 20px rgba(0, 200, 255, 0.3);
}

.pl-benefit__text {
    font-size: 1rem;
    font-weight: 600;
    color: #e0ecff;
}

/* =============================================================
   FORM SECTION
============================================================= */

.pl-form-section {
    padding: 70px 0 80px;
    position: relative;
    background:
        radial-gradient(ellipse 600px 400px at 30% 50%, rgba(0, 200, 255, 0.08), transparent),
        radial-gradient(ellipse 500px 350px at 70% 40%, rgba(61, 122, 255, 0.06), transparent),
        linear-gradient(180deg, #060e1a 0%, #0a1627 50%, #060e1a 100%);
}

.pl-form-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 200, 255, 0.2);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 200, 255, 0.05);
}

.pl-form-card__info {
    padding: 52px 48px;
    background:
        linear-gradient(150deg, rgba(0, 200, 255, 0.1) 0%, rgba(61, 122, 255, 0.05) 100%),
        linear-gradient(150deg, #0a1a33, #0d2240);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.pl-form-card__info::after {
    content: "";
    position: absolute;
    right: -30px;
    bottom: -40px;
    width: 220px;
    height: 220px;
    background: var(--pl-form-device-url, none) no-repeat center;
    background-size: contain;
    opacity: 0.1;
    pointer-events: none;
    transform: rotate(-12deg);
}

.pl-form-card__title {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    line-height: 1.2;
    margin-bottom: 14px;
}

.pl-form-card__desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #a0b8d8;
    margin-bottom: 32px;
}

.pl-form-card__trust {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pl-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: #c0d4ee;
    padding: 10px 16px;
    border-radius: 10px;
    background: rgba(0, 200, 255, 0.05);
    border: 1px solid rgba(0, 200, 255, 0.1);
}

.pl-trust-item svg {
    color: var(--pl-accent);
    flex: 0 0 auto;
    opacity: 0.85;
}

.pl-form-card__form {
    padding: 48px 44px;
    background: linear-gradient(160deg, #0c1e38, #081424);
}

/* Form fields */
.pl-field {
    margin-bottom: 18px;
}

.pl-field__label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #8ba4c4;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pl-field__input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(0, 200, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: #e8f0ff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.25s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.pl-field__input:focus {
    border-color: var(--pl-accent);
    background: rgba(0, 200, 255, 0.06);
    box-shadow: 0 0 0 3px rgba(0, 200, 255, 0.12);
}

.pl-field__input::placeholder {
    color: rgba(139, 164, 196, 0.6);
}

.pl-field__select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238ba4c4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.pl-field__select option {
    background: #0c1e38;
    color: #e8f0ff;
}

.pl-form__submit {
    margin-top: 8px;
    font-size: 1rem;
    padding: 16px;
    border-radius: 14px;
    position: relative;
}

.pl-form__message {
    margin-top: 14px;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 0.9rem;
    text-align: center;
}

.pl-form__message--success {
    background: rgba(46, 213, 115, 0.12);
    border: 1px solid rgba(46, 213, 115, 0.3);
    color: #6ee89d;
}

.pl-form__message--error {
    background: rgba(255, 71, 87, 0.12);
    border: 1px solid rgba(255, 71, 87, 0.3);
    color: #ff8a94;
}

/* Magento validation */
.pl-form-card__form .mage-error {
    color: #ff8a94;
    font-size: 0.8rem;
    margin-top: 4px;
}

.pl-form-card__form .pl-field__input.mage-error {
    border-color: rgba(255, 71, 87, 0.5);
    color: #e8f0ff;
    font-size: 0.95rem;
    margin-top: 0;
}

/* =============================================================
   INDUSTRIES MARQUEE
============================================================= */

.pl-industries {
    padding: 60px 0 70px;
    background: linear-gradient(180deg, #060e1a 0%, #081020 50%, #060e1a 100%);
    overflow: hidden;
}

.pl-industries .pl-section-title {
    margin-bottom: 40px;
}

.pl-industries__marquee {
    overflow: hidden;
    margin-bottom: 14px;
    mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.pl-industries__track {
    display: flex;
    gap: 14px;
    width: max-content;
    padding: 8px 0;
    animation: pl-marquee 30s linear infinite;
}

.pl-industries__track--reverse {
    animation: pl-marqueeReverse 35s linear infinite;
}

.pl-industries__marquee:hover .pl-industries__track {
    animation-play-state: paused;
}

.pl-industries__chip {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    background: linear-gradient(135deg, rgba(0, 200, 255, 0.1), rgba(61, 122, 255, 0.06));
    border: 1px solid rgba(0, 200, 255, 0.22);
    color: #d0e2ff;
    transition: all 0.3s ease;
}

.pl-industries__chip--outline {
    background: transparent;
    border: 1px solid rgba(0, 200, 255, 0.15);
    color: var(--pl-muted);
}

.pl-industries__chip:hover {
    border-color: rgba(0, 200, 255, 0.5);
    color: #fff;
    background: rgba(0, 200, 255, 0.12);
}

/* =============================================================
   DEVICE SHOWCASE
============================================================= */

.pl-showcase {
    padding: 60px 0 80px;
    position: relative;
    background: linear-gradient(180deg, #060e1a 0%, #081424 50%, #060e1a 100%);
}

.pl-showcase__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pl-showcase__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 16px 20px;
    border-radius: 18px;
    background: linear-gradient(150deg, rgba(10, 26, 51, 0.9), rgba(8, 20, 36, 0.95));
    border: 1px solid rgba(0, 200, 255, 0.1);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.pl-showcase__item:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 200, 255, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 200, 255, 0.08);
}

.pl-showcase__img-wrap {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    position: relative;
}

.pl-showcase__img-wrap::after {
    content: "";
    position: absolute;
    width: 70%;
    height: 70%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 200, 255, 0.08), transparent 70%);
    pointer-events: none;
}

.pl-showcase__img-wrap img {
    max-height: 180px;
    max-width: 90%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
    transition: transform 0.35s ease;
    position: relative;
    z-index: 1;
}

.pl-showcase__item:hover .pl-showcase__img-wrap img {
    transform: scale(1.08);
}

.pl-showcase__label {
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--pl-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.3s ease;
}

a.pl-showcase__item--link {
    text-decoration: none;
    display: flex;
}

.pl-showcase__item--link:hover .pl-showcase__label {
    color: var(--pl-accent);
}

.pl-showcase__price {
    margin-top: 6px;
    text-align: center;
}

.pl-showcase__price .price-box {
    margin: 0;
    line-height: 1.3;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 8px;
}

/* Hide verbose labels like "Regular Price", "Special Price" */
.pl-showcase__price .price-label {
    display: none;
}

/* Discount badge */
.pl-showcase__price .price-box .special-price .price-wrapper::before {
    content: none;
}

.pl-showcase__price .old-price .price {
    color: var(--pl-muted);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: line-through;
    opacity: 0.7;
}

.pl-showcase__price .price {
    color: var(--pl-accent);
    font-size: 0.92rem;
    font-weight: 700;
}

.pl-showcase__price .price-final_price .price {
    color: var(--pl-accent);
}

/* =============================================================
   LOGOS
============================================================= */

.pl-logos {
    padding: 70px 0 80px;
    background: linear-gradient(180deg, #060e1a, #081020, #060e1a);
    border-top: 1px solid rgba(0, 200, 255, 0.06);
    overflow: hidden;
}

.pl-logos .pl-section-title {
    margin-bottom: 44px;
}

.pl-logos__marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
}

.pl-logos__track {
    display: flex;
    align-items: center;
    gap: 50px;
    width: max-content;
    animation: pl-marquee 40s linear infinite;
}

.pl-logos__marquee:hover .pl-logos__track {
    animation-play-state: paused;
}

.pl-logos__item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 16px 28px;
}

.pl-logos__item img {
    height: 48px;
    width: auto;
    max-width: none;
    filter: grayscale(100%) brightness(1.1);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.pl-logos__item:hover img {
    filter: none;
    opacity: 1;
}

/* =============================================================
   BOTTOM CTA
============================================================= */

.pl-bottom-cta {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #060e1a, #081424);
}

.pl-bottom-cta__card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 52px 56px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(0, 200, 255, 0.12) 0%, rgba(61, 122, 255, 0.06) 100%),
        linear-gradient(135deg, #0a1a33, #0d2240);
    border: 2px solid rgba(0, 200, 255, 0.3);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(0, 200, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.pl-bottom-cta__card::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 200, 255, 0.12), transparent 70%);
    right: -150px;
    top: -150px;
    pointer-events: none;
}

.pl-bottom-cta__content {
    position: relative;
    z-index: 1;
}

.pl-bottom-cta__content h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    margin-bottom: 8px;
}

.pl-bottom-cta__content p {
    font-size: 1rem;
    margin: 0;
}

.pl-bottom-cta .pl-btn {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

/* =============================================================
   ANIMATIONS
============================================================= */

@keyframes pl-fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pl-deviceFloat {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-12px);
    }
}

@keyframes pl-deviceFloatSecondary {
    0%, 100% { transform: translateY(-50%) rotate(-6deg); }
    50% { transform: translateY(calc(-50% - 10px)) rotate(-6deg); }
}

@keyframes pl-deviceFloatTertiary {
    0%, 100% { transform: translateY(-50%) rotate(5deg); }
    50% { transform: translateY(calc(-50% - 8px)) rotate(5deg); }
}

.pl-hero__device--secondary {
    animation: pl-deviceFloatSecondary 6s ease-in-out 1s infinite;
}

.pl-hero__device--tertiary {
    animation: pl-deviceFloatTertiary 6s ease-in-out 2s infinite;
}

@keyframes pl-glowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes pl-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

@keyframes pl-marqueeReverse {
    0% { transform: translateX(-33.333%); }
    100% { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
    .pl-hero__device,
    .pl-hero__glow,
    .pl-industries__track,
    .pl-logos__track {
        animation: none !important;
    }
    .pl-benefit,
    .pl-hero__badge,
    .pl-hero__title,
    .pl-hero__subtitle,
    .pl-hero__stats,
    .pl-hero__cta,
    .pl-hero__visual {
        animation: none !important;
        opacity: 1 !important;
    }
}

/* =============================================================
   RESPONSIVE
============================================================= */

@media (max-width: 1024px) {
    .pl-hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pl-hero__visual {
        height: 380px;
    }

    .pl-hero__device--main {
        width: 250px;
    }

    .pl-hero__device--secondary {
        width: 200px;
        left: 3%;
    }

    .pl-hero__device--tertiary {
        width: 180px;
        right: 3%;
    }

    .pl-form-card {
        grid-template-columns: 1fr;
    }

    .pl-form-card__info {
        padding: 40px 36px 32px;
    }

    .pl-form-card__form {
        padding: 32px 36px 40px;
    }

    .pl-showcase__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pl-bottom-cta__card {
        flex-direction: column;
        text-align: center;
        padding: 40px 32px;
    }
}

@media (max-width: 768px) {
    .pl-hero {
        padding: 80px 0 60px;
        min-height: auto;
    }

    .pl-hero__stats {
        flex-direction: column;
        gap: 12px;
    }

    .pl-hero__visual {
        height: 260px;
    }

    .pl-hero__device--main {
        width: 170px;
    }

    .pl-hero__device--secondary {
        width: 130px;
    }

    .pl-hero__device--tertiary {
        width: 120px;
    }

    .pl-benefits__grid {
        grid-template-columns: 1fr;
    }

    .pl-showcase__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pl-form-card__info,
    .pl-form-card__form {
        padding: 28px 24px;
    }

    .pl-bottom-cta__card {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .pl-hero__visual {
        height: 220px;
    }

    .pl-hero__device--secondary,
    .pl-hero__device--tertiary {
        display: none;
    }

    .pl-hero__device--main {
        width: 180px;
    }

    .pl-showcase__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .pl-showcase__img-wrap img {
        max-height: 120px;
    }
}
