
:root {
    --navy-950: #041225;
    --navy-900: #071a33;
    --navy-800: #0b2a51;
    --blue-700: #0668d7;
    --blue-600: #0789e6;
    --cyan-500: #12bdf1;
    --cyan-300: #7ee9ff;
    --slate-900: #162033;
    --slate-700: #526070;
    --slate-500: #8190a3;
    --slate-200: #dce5ee;
    --slate-100: #edf3f8;
    --white: #ffffff;
    --shadow: 0 22px 70px rgba(4, 18, 37, 0.14);
    --shadow-soft: 0 14px 44px rgba(9, 40, 77, 0.08);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--slate-900);
    background: #f8fbfe;
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

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

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}

.section {
    position: relative;
    padding: 110px 0;
}

.page-glow {
    position: fixed;
    pointer-events: none;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.16;
    z-index: -1;
}

.page-glow-one {
    top: -180px;
    right: -180px;
    background: var(--cyan-500);
}

.page-glow-two {
    top: 50%;
    left: -320px;
    background: var(--blue-600);
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    background: rgba(248, 251, 254, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(7, 26, 51, 0.05);
    transition: 0.25s ease;
}

.site-header.scrolled {
    box-shadow: 0 10px 30px rgba(4, 18, 37, 0.06);
    background: rgba(255, 255, 255, 0.92);
}

.nav {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    letter-spacing: -0.04em;
    font-size: 21px;
    color: var(--navy-900);
}

.brand img {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    object-fit: cover;
    object-position: center 29%;
    box-shadow: 0 8px 24px rgba(6, 104, 215, 0.12);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-700);
}

.nav-links > a {
    transition: 0.2s ease;
}

.nav-links > a:not(.nav-cta):hover {
    color: var(--blue-700);
}

.nav-cta {
    padding: 11px 17px;
    color: white !important;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--blue-700), var(--cyan-500));
    box-shadow: 0 10px 24px rgba(6, 104, 215, 0.22);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: white;
    box-shadow: var(--shadow-soft);
    padding: 12px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 4px 0;
    background: var(--navy-900);
    border-radius: 99px;
}

.hero {
    padding-top: 170px;
    min-height: 840px;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.03fr 0.97fr;
    gap: 70px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue-700);
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan-500);
    box-shadow: 0 0 0 5px rgba(18, 189, 241, 0.12);
}

.hero h1,
.section-heading h2,
.product-copy h2,
.trust-panel h2,
.contact-copy h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    line-height: 1.04;
    letter-spacing: -0.052em;
    color: var(--navy-950);
}

.hero h1 {
    max-width: 690px;
    font-size: clamp(50px, 6vw, 78px);
}

.hero h1 span,
.section-heading h2 span,
.product-copy h2 span,
.trust-panel h2 span,
.contact-copy h2 span {
    color: var(--blue-600);
}

.hero-lead {
    max-width: 650px;
    margin: 28px 0 0;
    color: var(--slate-700);
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-weight: 750;
    transition: 0.22s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: white;
    background: linear-gradient(135deg, var(--blue-700), var(--cyan-500));
    box-shadow: 0 15px 34px rgba(6, 104, 215, 0.24);
}

.btn-secondary {
    color: var(--navy-900);
    background: rgba(255, 255, 255, 0.84);
    border-color: rgba(7, 26, 51, 0.1);
    box-shadow: var(--shadow-soft);
}

.btn-light {
    background: white;
    color: var(--navy-900);
}

.btn-block {
    width: 100%;
}

.trust-row {
    display: flex;
    gap: 36px;
    margin-top: 45px;
}

.trust-item {
    display: grid;
    gap: 1px;
}

.trust-item strong {
    font-family: "Manrope", sans-serif;
    font-size: 22px;
    color: var(--navy-900);
}

.trust-item span {
    font-size: 12px;
    color: var(--slate-500);
}

.hero-visual {
    position: relative;
    min-height: 590px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-card {
    position: relative;
    width: min(100%, 525px);
    aspect-ratio: 1 / 1;
    border-radius: 46px;
    background:
        radial-gradient(circle at 70% 20%, rgba(18, 189, 241, 0.14), transparent 32%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(237, 247, 255, 0.96));
    border: 1px solid rgba(7, 137, 230, 0.12);
    box-shadow: 0 34px 90px rgba(4, 18, 37, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brand-card::after {
    content: "";
    position: absolute;
    inset: 24px;
    border-radius: 34px;
    border: 1px solid rgba(7, 137, 230, 0.07);
    pointer-events: none;
}

.brand-card img {
    position: relative;
    z-index: 2;
    width: 88%;
    filter: drop-shadow(0 12px 20px rgba(4, 18, 37, 0.08));
}

.brand-card-glow {
    position: absolute;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    background: rgba(18, 189, 241, 0.17);
    filter: blur(65px);
}

.floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 17px;
    border: 1px solid rgba(7, 26, 51, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 50px rgba(4, 18, 37, 0.13);
}

.floating-card strong,
.floating-card small {
    display: block;
}

.floating-card strong {
    color: var(--navy-900);
    font-size: 13px;
}

.floating-card small {
    margin-top: 1px;
    color: var(--slate-500);
    font-size: 11px;
}

.floating-card-one {
    left: -22px;
    bottom: 108px;
}

.floating-card-two {
    right: -10px;
    top: 98px;
}

.mini-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: white;
    background: linear-gradient(135deg, var(--blue-700), var(--cyan-500));
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #27c87d;
    box-shadow: 0 0 0 7px rgba(39, 200, 125, 0.12);
}

.partners-strip {
    padding: 34px 0;
    background: white;
    border-top: 1px solid var(--slate-100);
    border-bottom: 1px solid var(--slate-100);
}

.partners-strip .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.partners-strip p {
    margin: 0;
    color: var(--slate-500);
    font-size: 13px;
}

.device-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    font-weight: 700;
    color: #96a2b1;
    font-size: 13px;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 58px;
    text-align: center;
}

.section-heading-left {
    margin: 0;
    text-align: left;
}

.section-heading h2,
.product-copy h2,
.trust-panel h2,
.contact-copy h2 {
    font-size: clamp(38px, 4vw, 56px);
}

.section-heading p,
.product-copy > p {
    margin: 20px 0 0;
    color: var(--slate-700);
    font-size: 16px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(7, 26, 51, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    border-radius: 15px;
    color: white;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--navy-900), var(--blue-600));
}

.feature-card h3 {
    margin: 0 0 10px;
    font-family: "Manrope", sans-serif;
    font-size: 21px;
    color: var(--navy-900);
}

.feature-card p {
    margin: 0;
    color: var(--slate-700);
    font-size: 14px;
}

.product-section {
    background:
        linear-gradient(180deg, rgba(235, 246, 255, 0.68), rgba(248, 251, 254, 0)),
        radial-gradient(circle at 22% 50%, rgba(18, 189, 241, 0.12), transparent 28%);
}

.product-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 90px;
    align-items: center;
}

.product-preview {
    display: flex;
    justify-content: center;
}

.player-shell {
    position: relative;
    width: min(100%, 430px);
    padding: 24px;
    overflow: hidden;
    border-radius: 32px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 255, 0.96));
    border: 1px solid rgba(7, 26, 51, 0.08);
    box-shadow: 0 28px 80px rgba(4, 18, 37, 0.14);
}

.player-shell::before {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    top: -90px;
    right: -70px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(18, 189, 241, 0.16), rgba(18, 189, 241, 0));
    pointer-events: none;
}

.player-top {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.player-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.player-brand-mark {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-700), var(--cyan-500));
    box-shadow: 0 0 0 5px rgba(18, 189, 241, 0.09);
}

.player-label {
    color: var(--slate-500);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.player-live {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border-radius: 999px;
    color: #148153;
    background: rgba(34, 196, 122, 0.09);
    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
}

.player-live i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c47a;
    box-shadow: 0 0 0 4px rgba(34, 196, 122, 0.1);
}

.player-live.is-idle {
    color: var(--slate-500);
    background: rgba(103, 121, 145, 0.08);
}

.player-live.is-idle i {
    background: #93a4b8;
    box-shadow: 0 0 0 4px rgba(147, 164, 184, 0.1);
}

.player-live.is-loading {
    color: #0878df;
    background: rgba(8, 120, 223, 0.08);
}

.player-live.is-loading i {
    background: #0878df;
    animation: radioPulse 1.25s ease-in-out infinite;
}

.radio-artwork {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 250px;
    margin-top: 18px;
}

.radio-artwork-ring {
    position: relative;
    width: 238px;
    height: 238px;
    display: grid;
    place-items: center;
    padding: 9px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(8, 120, 223, 0.14), rgba(18, 189, 241, 0.05));
    box-shadow: inset 0 0 0 1px rgba(8, 120, 223, 0.08), 0 20px 50px rgba(6, 67, 126, 0.10);
}

.radio-artwork-ring::before,
.radio-artwork-ring::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.radio-artwork-ring::before {
    inset: -9px;
    border: 1px solid rgba(18, 189, 241, 0.16);
}

.radio-artwork-ring::after {
    inset: -19px;
    border: 1px dashed rgba(8, 120, 223, 0.10);
}

.radio-artwork-ring img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 50%;
}

.radio-signal {
    position: absolute;
    right: 22px;
    bottom: 30px;
    height: 34px;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 8px 10px;
    border-radius: 14px;
    color: var(--blue-700);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(7, 26, 51, 0.07);
    box-shadow: 0 10px 26px rgba(4, 18, 37, 0.10);
    backdrop-filter: blur(8px);
}

.radio-signal span {
    width: 3px;
    height: 8px;
    border-radius: 99px;
    background: linear-gradient(180deg, var(--cyan-500), var(--blue-700));
}

.player-shell.is-playing .radio-signal span:nth-child(1) { animation: radioEq .8s ease-in-out .1s infinite alternate; }
.player-shell.is-playing .radio-signal span:nth-child(2) { animation: radioEq .7s ease-in-out .25s infinite alternate; }
.player-shell.is-playing .radio-signal span:nth-child(3) { animation: radioEq .9s ease-in-out .05s infinite alternate; }
.player-shell.is-playing .radio-signal span:nth-child(4) { animation: radioEq .65s ease-in-out .2s infinite alternate; }
.player-shell.is-playing .radio-signal span:nth-child(5) { animation: radioEq .85s ease-in-out .15s infinite alternate; }

.track-meta {
    position: relative;
    z-index: 2;
    margin-top: 10px;
    text-align: center;
}

.track-meta span,
.track-meta strong,
.track-meta small {
    display: block;
}

.track-meta span {
    color: var(--blue-600);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.track-meta strong {
    margin-top: 6px;
    font-family: "Manrope", sans-serif;
    font-size: 22px;
    color: var(--navy-900);
}

.track-meta small {
    margin-top: 3px;
    color: var(--slate-500);
    font-size: 13px;
}

.radio-wave {
    height: 30px;
    margin: 18px 2px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.radio-wave i {
    width: 3px;
    height: 7px;
    border-radius: 99px;
    background: linear-gradient(180deg, var(--cyan-500), var(--blue-700));
    opacity: 0.42;
    transition: height .2s ease, opacity .2s ease;
}

.player-shell.is-playing .radio-wave i {
    opacity: 1;
    animation: radioWave 1s ease-in-out infinite alternate;
}

.player-shell.is-playing .radio-wave i:nth-child(2n) { animation-delay: .18s; }
.player-shell.is-playing .radio-wave i:nth-child(3n) { animation-delay: .32s; }
.player-shell.is-playing .radio-wave i:nth-child(4n) { animation-delay: .08s; }

.radio-control-panel {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 58px 1fr 36px;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 22px;
    background: rgba(7, 26, 51, 0.045);
    border: 1px solid rgba(7, 26, 51, 0.06);
}

.radio-main-button {
    position: relative;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    flex: 0 0 58px;
    padding: 0;
    border: 0;
    border-radius: 18px;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(135deg, #0878df 0%, #13b9ec 100%);
    box-shadow: 0 12px 26px rgba(8, 125, 222, 0.23);
    transition: transform .2s ease, box-shadow .2s ease;
}

.radio-main-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 15px 30px rgba(8, 125, 222, 0.30);
}

.radio-main-button:active {
    transform: scale(.97);
}

.radio-icon {
    position: absolute;
    width: 25px;
    height: 25px;
    transition: opacity .18s ease, transform .18s ease;
}

.radio-icon-play {
    opacity: 1;
    transform: scale(1);
    margin-left: 2px;
}

.radio-icon-pause {
    opacity: 0;
    transform: scale(.78);
}

.player-shell.is-playing .radio-icon-play {
    opacity: 0;
    transform: scale(.78);
}

.player-shell.is-playing .radio-icon-pause {
    opacity: 1;
    transform: scale(1);
}

.radio-control-copy {
    min-width: 0;
}

.radio-control-copy strong,
.radio-control-copy span {
    display: block;
}

.radio-control-copy strong {
    color: var(--navy-900);
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.radio-control-copy span {
    margin-top: 3px;
    overflow: hidden;
    color: var(--slate-500);
    font-size: 11px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.radio-volume {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--slate-500);
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(7, 26, 51, 0.05);
}

.radio-volume svg {
    width: 19px;
    height: 19px;
}

@keyframes radioWave {
    from { height: 7px; }
    to { height: 27px; }
}

@keyframes radioEq {
    from { height: 8px; }
    to { height: 22px; }
}

@keyframes radioPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(8, 120, 223, 0.08); }
    50% { box-shadow: 0 0 0 8px rgba(8, 120, 223, 0); }
}

@media (max-width: 520px) {
    .player-shell {
        padding: 18px;
        border-radius: 28px;
    }

    .radio-artwork {
        min-height: 220px;
    }

    .radio-artwork-ring {
        width: 205px;
        height: 205px;
    }

    .radio-signal {
        right: 10px;
        bottom: 20px;
    }

    .radio-control-panel {
        grid-template-columns: 54px 1fr 34px;
        gap: 11px;
        padding: 10px;
    }

    .radio-main-button {
        width: 54px;
        height: 54px;
        border-radius: 17px;
    }
}

.product-copy {
    max-width: 570px;
}

.check-list {
    display: grid;
    gap: 15px;
    margin-top: 32px;
}

.check-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--slate-700);
    font-weight: 600;
    font-size: 14px;
}

.check-list span {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    background: linear-gradient(135deg, var(--blue-700), var(--cyan-500));
    font-size: 12px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.price-card {
    position: relative;
    padding: 34px;
    border-radius: 26px;
    background: white;
    border: 1px solid rgba(7, 26, 51, 0.08);
    box-shadow: var(--shadow-soft);
}

.price-card.featured {
    color: white;
    background: linear-gradient(160deg, var(--navy-900), #0a3f75);
    border-color: rgba(18, 189, 241, 0.3);
    box-shadow: 0 28px 80px rgba(4, 18, 37, 0.2);
    transform: translateY(-10px);
}

.recommended {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(18, 189, 241, 0.17);
    color: var(--cyan-300);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.price-name {
    display: block;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    color: var(--blue-700);
}

.featured .price-name {
    color: var(--cyan-300);
}

.price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: 14px;
}

.price strong {
    font-family: "Manrope", sans-serif;
    font-size: 38px;
    letter-spacing: -0.04em;
}

.price small {
    color: var(--slate-500);
}

.featured .price small {
    color: rgba(255, 255, 255, 0.58);
}

.price-card p {
    min-height: 50px;
    color: var(--slate-700);
    font-size: 13px;
}

.featured p {
    color: rgba(255, 255, 255, 0.68);
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 26px 0 30px;
    display: grid;
    gap: 13px;
}

.price-card li {
    color: var(--slate-700);
    font-size: 13px;
}

.price-card li::before {
    content: "✓";
    margin-right: 10px;
    color: var(--blue-600);
    font-weight: 800;
}

.featured li {
    color: rgba(255, 255, 255, 0.8);
}

.featured li::before {
    color: var(--cyan-300);
}

.trust-section {
    padding-top: 40px;
}

.trust-panel {
    padding: 54px;
    border-radius: var(--radius-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background:
        radial-gradient(circle at 10% 10%, rgba(18, 189, 241, 0.17), transparent 25%),
        linear-gradient(140deg, #f0f8fe, #ffffff);
    border: 1px solid rgba(7, 137, 230, 0.09);
    box-shadow: var(--shadow-soft);
}

.trust-panel p {
    margin: 0;
    color: var(--slate-700);
}

.faq-section {
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    border: 1px solid var(--slate-100);
    border-radius: 16px;
    background: #fbfdff;
    overflow: hidden;
}

.faq-list summary {
    list-style: none;
    padding: 20px 22px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    color: var(--navy-900);
    font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    color: var(--blue-600);
    font-size: 20px;
    transition: 0.2s ease;
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list details p {
    margin: 0;
    padding: 0 22px 22px;
    color: var(--slate-700);
    font-size: 14px;
}

.contact-section {
    padding-top: 90px;
}

.contact-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    padding: 58px;
    border-radius: 36px;
    color: white;
    background:
        radial-gradient(circle at 75% 20%, rgba(18, 189, 241, 0.25), transparent 30%),
        linear-gradient(135deg, #06162c 0%, #08386b 100%);
    box-shadow: 0 34px 100px rgba(4, 18, 37, 0.24);
}

.contact-card::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    right: -140px;
    top: -160px;
}

.eyebrow-light {
    color: var(--cyan-300);
}

.contact-copy h2 {
    color: white;
}

.contact-copy h2 span {
    color: var(--cyan-300);
}

.contact-copy p {
    color: rgba(255, 255, 255, 0.68);
}

.contact-form {
    position: relative;
    z-index: 2;
    padding: 26px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-form label {
    display: grid;
    gap: 7px;
    margin-bottom: 14px;
}

.contact-form label span {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.74);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    outline: 0;
    padding: 13px 14px;
    color: white;
    background: rgba(255, 255, 255, 0.09);
    transition: 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--cyan-300);
    box-shadow: 0 0 0 3px rgba(126, 233, 255, 0.12);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.38);
}

.contact-form textarea {
    resize: vertical;
    min-height: 105px;
}

.form-note {
    display: block;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.46);
    font-size: 10px;
    text-align: center;
}

.site-footer {
    padding: 58px 0 34px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: end;
    gap: 40px;
}

.footer-brand img {
    width: 42px;
    height: 42px;
}

.footer-grid p {
    margin: 8px 0 0;
    color: var(--slate-500);
    font-size: 12px;
}

.footer-links {
    display: flex;
    gap: 20px;
    color: var(--slate-700);
    font-size: 12px;
    font-weight: 600;
}

.footer-copy {
    color: var(--slate-500);
    font-size: 11px;
}

.toast {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1200;
    max-width: calc(100% - 44px);
    padding: 14px 18px;
    border-radius: 14px;
    color: white;
    background: var(--navy-900);
    box-shadow: var(--shadow);
    font-size: 13px;
    transform: translateY(30px);
    opacity: 0;
    pointer-events: none;
    transition: 0.28s ease;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.reveal-delay {
    transition-delay: 0.12s;
}

@media (max-width: 980px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 82px;
        left: 20px;
        right: 20px;
        display: grid;
        gap: 0;
        padding: 14px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow);
        transform: translateY(-14px);
        opacity: 0;
        pointer-events: none;
        transition: 0.22s ease;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links a {
        padding: 13px 14px;
        border-radius: 10px;
    }

    .nav-cta {
        margin-top: 6px;
        text-align: center;
    }

    .hero {
        padding-top: 140px;
    }

    .hero-grid,
    .product-grid,
    .faq-grid,
    .contact-card {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 34px;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-lead {
        margin-inline: auto;
    }

    .hero-actions,
    .trust-row {
        justify-content: center;
    }

    .hero-visual {
        min-height: 520px;
    }

    .floating-card-one {
        left: 6%;
    }

    .floating-card-two {
        right: 5%;
    }

    .partners-strip .container {
        display: grid;
        justify-items: center;
        text-align: center;
    }

    .feature-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 660px;
        margin-inline: auto;
    }

    .price-card.featured {
        transform: none;
    }

    .product-grid,
    .faq-grid {
        gap: 54px;
    }

    .product-copy,
    .section-heading-left {
        max-width: 720px;
        margin-inline: auto;
        text-align: center;
    }

    .check-list {
        max-width: 520px;
        margin-inline: auto;
        margin-top: 30px;
        text-align: left;
    }

    .trust-panel {
        grid-template-columns: 1fr;
        gap: 22px;
        text-align: center;
    }

    .contact-card {
        gap: 36px;
    }

    .contact-copy {
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 78px 0;
    }

    .nav {
        min-height: 72px;
    }

    .brand img {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .brand span {
        font-size: 19px;
    }

    .nav-links {
        top: 72px;
        left: 14px;
        right: 14px;
    }

    .hero {
        min-height: auto;
        padding-top: 124px;
    }

    .hero h1 {
        font-size: clamp(42px, 13vw, 60px);
    }

    .hero-lead {
        font-size: 16px;
    }

    .hero-actions {
        display: grid;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .trust-row {
        gap: 24px;
        justify-content: space-between;
    }

    .hero-visual {
        min-height: 390px;
    }

    .brand-card {
        border-radius: 30px;
    }

    .floating-card {
        padding: 11px 13px;
    }

    .floating-card-one {
        bottom: 52px;
        left: -4px;
    }

    .floating-card-two {
        top: 40px;
        right: -4px;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2,
    .product-copy h2,
    .trust-panel h2,
    .contact-copy h2 {
        font-size: 38px;
    }

    .feature-card,
    .price-card {
        padding: 26px;
    }

    .player-shell {
        padding: 16px;
        border-radius: 26px;
    }

    .trust-panel,
    .contact-card {
        padding: 34px 22px;
        border-radius: 26px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .device-row {
        justify-content: center;
        gap: 14px 18px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}


.contact-form select {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    outline: 0;
    padding: 13px 14px;
    color: white;
    background: rgba(255, 255, 255, 0.09);
    transition: 0.2s ease;
    appearance: none;
}

.contact-form select:focus {
    border-color: var(--cyan-300);
    box-shadow: 0 0 0 3px rgba(126, 233, 255, 0.12);
}

.contact-form select option {
    color: var(--navy-900);
    background: white;
}

.event-mark {
    margin-top: 18px;
    font-family: "Manrope", sans-serif;
    font-size: 36px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: var(--navy-900);
}

.featured .event-mark {
    color: white;
}





/* =====================================================
   AIR MUSIC - HERO / ACCIONES FLOTANTES
===================================================== */

/* El logo conserva las tarjetas decorativas, pero sin tapar el área central. */
.hero-visual {
    overflow: visible;
}

.brand-card {
    padding: 26px;
}

.brand-card img {
    width: 91%;
    height: 91%;
    object-fit: contain;
}

.hero-visual .floating-card {
    display: flex !important;
}

.floating-card-one {
    left: -46px;
    bottom: 58px;
}

.floating-card-two {
    right: -34px;
    top: 46px;
}

/* ===== Volver arriba / lado izquierdo ===== */
.air-back-top {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 99990;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(7, 26, 51, 0.12);
    border-radius: 15px;
    color: var(--navy-900);
    background: rgba(255, 255, 255, 0.64);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 12px 34px rgba(4, 18, 37, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease, background .2s ease;
    cursor: pointer;
}

.air-back-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.air-back-top:hover {
    background: rgba(255, 255, 255, 0.92);
    transform: translateY(-2px);
}

.air-back-top svg {
    width: 23px;
    height: 23px;
    fill: currentColor;
}

/* ===== WhatsApp Pill / lado derecho ===== */
:root {
    --wa-green: #25D366;
    --wa-green-dark: #1EBE5B;
    --wa-dark: #075E54;
    --wa-on: #fff;
}

#web_widget_wrap[data-pos="right"] .wa-pill {
    right: 18px;
    left: auto;
}

#web_widget_wrap[data-pos="left"] .wa-pill {
    left: 18px;
    right: auto;
}

.wa-pill {
    position: fixed;
    bottom: 18px;
    z-index: 99999;
    opacity: 0;
    transform: translateY(8px);
    animation: waIn .35s ease forwards .2s;
}

.wa-pill-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 48px;
    padding: 0 18px 0 12px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    background: var(--wa-green);
    color: var(--wa-on);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: .2px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, .20);
    transition: all .18s ease;
}

.wa-pill-btn:hover {
    background: var(--wa-green-dark);
    transform: translateY(-1px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, .24);
}

.wa-pill-ic {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-pill-ic svg {
    width: 18px;
    height: 18px;
    color: var(--wa-green);
}

.wa-mini {
    position: absolute;
    bottom: 58px;
    width: min(340px, calc(100vw - 36px));
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .24);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px) scale(.96);
    transition: transform .22s cubic-bezier(.2,.8,.2,1), opacity .22s ease;
}

#web_widget_wrap[data-pos="right"] .wa-mini {
    right: 0;
    transform-origin: bottom right;
}

#web_widget_wrap[data-pos="left"] .wa-mini {
    left: 0;
    transform-origin: bottom left;
}

.wa-pill.open .wa-mini {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.wa-mini-head {
    background: linear-gradient(135deg, var(--wa-green), var(--wa-dark));
    color: #fff;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa-mini-ic {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-mini-ic svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

.wa-mini-title {
    font-weight: 900;
    line-height: 1.1;
}

.wa-mini-sub {
    opacity: .9;
    font-size: 12.5px;
    margin-top: 2px;
}

.wa-mini-close {
    margin-left: auto;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    border: 0;
    cursor: pointer;
    background: rgba(255, 255, 255, .16);
    color: #fff;
    font-size: 20px;
    line-height: 1;
}

.wa-mini-close:hover {
    background: rgba(255, 255, 255, .26);
}

.wa-mini-body {
    padding: 12px;
}

.wa-mini-bubble {
    background: #E8F8F1;
    border: 1px solid #D1F2E0;
    padding: 10px;
    border-radius: 14px;
    color: #0f172a;
    font-size: 13.5px;
    margin-bottom: 10px;
}

.wa-mini-label {
    font-size: 12px;
    color: #64748b;
    display: block;
    margin: 6px 0;
}

.wa-mini-input {
    width: 100%;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    padding: 10px;
    outline: none;
    resize: none;
    font-size: 13.5px;
    color: #0f172a;
    background: #fff;
}

.wa-mini-input:focus {
    border-color: var(--wa-green);
    box-shadow: 0 0 0 4px rgba(37, 211, 102, .15);
}

.wa-mini-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
}

.wa-mini-hint {
    font-size: 12px;
    color: #64748b;
}

.wa-mini-send {
    border: 0;
    border-radius: 14px;
    padding: 10px 14px;
    background: var(--wa-green);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .15s ease, background .2s ease;
}

.wa-mini-send:hover {
    background: var(--wa-green-dark);
    transform: scale(1.04);
}

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

@media (max-width: 980px) {
    .floating-card-one {
        left: 1%;
        bottom: 28px;
    }

    .floating-card-two {
        right: 1%;
        top: 28px;
    }
}

@media (max-width: 640px) {
    .floating-card-one {
        left: -2px;
        bottom: 20px;
    }

    .floating-card-two {
        right: -2px;
        top: 18px;
    }

    .air-back-top {
        left: 14px;
        bottom: 14px;
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

    .wa-pill {
        right: 14px !important;
        bottom: 14px;
    }

    .wa-pill-btn {
        height: 46px;
        font-size: 14px;
        padding: 0 15px 0 10px;
    }

    .wa-mini {
        width: min(330px, calc(100vw - 28px));
    }
}


/* =====================================================
   AIR MUSIC - AJUSTE VISUAL FINAL HERO + WHATSAPP
===================================================== */

.hero {
    background:
        radial-gradient(circle at 82% 18%, rgba(18, 189, 241, .14), transparent 28%),
        radial-gradient(circle at 7% 78%, rgba(7, 137, 230, .08), transparent 24%);
}

.hero-visual {
    position: relative;
    overflow: visible;
}

.brand-card {
    overflow: visible;
    border-radius: 40px;
    background:
        radial-gradient(circle at 78% 12%, rgba(18, 189, 241, .12), transparent 30%),
        linear-gradient(145deg, rgba(255,255,255,.96), rgba(237,247,255,.96));
}

.brand-card::before {
    content: "";
    position: absolute;
    inset: -18px;
    z-index: -1;
    border-radius: 52px;
    background:
        radial-gradient(circle at 20% 70%, rgba(18,189,241,.12), transparent 30%),
        linear-gradient(135deg, rgba(7,137,230,.04), rgba(18,189,241,.09));
}

.floating-card {
    min-width: 210px;
    padding: 14px 17px;
    border-radius: 16px;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(7,26,51,.08);
    box-shadow: 0 18px 45px rgba(4,18,37,.12);
}

.floating-card-one {
    left: -70px;
    top: 88px;
    bottom: auto;
}

.floating-card-two {
    right: -72px;
    top: 42px;
}

.floating-card-three {
    right: -25px;
    bottom: 34px;
    top: auto;
}

.mini-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue-700), var(--cyan-500));
    color: #fff;
}

.mini-icon svg {
    width: 20px;
    height: 20px;
}

.mini-icon-soft {
    background: linear-gradient(135deg, #e6f5ff, #cfeeff);
    color: var(--blue-600);
}

.mini-icon-heart {
    background: linear-gradient(135deg, #ecf8ff, #d9f0ff);
    color: #1e9ef0;
}

.trust-row {
    align-items: flex-start;
}

.trust-item {
    min-width: 105px;
}

.trust-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 10px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--blue-600) !important;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(7,137,230,.12);
    box-shadow: 0 8px 24px rgba(7,137,230,.08);
}

.trust-icon svg {
    width: 21px;
    height: 21px;
}

/* WhatsApp: identidad AirMusic + verde WhatsApp */
.wa-pill-btn {
    background: linear-gradient(135deg, #16c96e, #25D366);
    box-shadow: 0 16px 34px rgba(7,26,51,.18);
}

.wa-mini {
    border: 1px solid rgba(7,137,230,.10);
    box-shadow: 0 28px 70px rgba(4,18,37,.22);
}

.wa-mini-head {
    background:
        linear-gradient(135deg, #0a84df 0%, #0870ca 42%, #118c71 78%, #19b866 100%);
    padding: 14px;
}

.wa-mini-ic {
    background: rgba(255,255,255,.18);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}

.wa-mini-bubble {
    background: linear-gradient(135deg, #f1f8fd, #eaf8f3);
    border: 1px solid rgba(7,137,230,.09);
    color: #17304c;
}

.wa-mini-input {
    min-height: 92px;
    padding: 12px;
    border-color: #dce7f0;
}

.wa-mini-input:focus {
    border-color: var(--blue-600);
    box-shadow: 0 0 0 4px rgba(7,137,230,.10);
}

.wa-mini-count {
    margin-top: -5px;
    text-align: right;
    font-size: 11px;
    color: #94a3b8;
}

.wa-mini-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 11px;
}

.wa-mini-quick button {
    border: 0;
    border-radius: 999px;
    padding: 7px 11px;
    color: var(--blue-700);
    background: #eaf5ff;
    font-size: 11.5px;
    font-weight: 700;
    cursor: pointer;
    transition: .18s ease;
}

.wa-mini-quick button:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--blue-700), var(--cyan-500));
    transform: translateY(-1px);
}

.wa-mini-row {
    margin-top: 14px;
}

.wa-mini-send {
    min-width: 180px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0ebc5a, #25D366);
    box-shadow: 0 10px 24px rgba(37,211,102,.20);
    font-size: 13px;
}

.wa-mini-send:hover {
    background: linear-gradient(135deg, #0aa84f, #20c760);
    transform: translateY(-1px);
}

.wa-send-ic {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.18);
    font-size: 15px;
}

.wa-mini-phone {
    margin-top: 11px;
    text-align: center;
    color: #526b82;
    font-size: 12px;
    font-weight: 700;
}

.wa-mini-brandline {
    margin: 12px -12px -12px;
    min-height: 52px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #0a3f75;
    background:
        radial-gradient(circle at 10% 100%, rgba(18,189,241,.18), transparent 34%),
        linear-gradient(180deg, #f9fcff, #eff8fd);
    border-top: 1px solid rgba(7,137,230,.08);
}

.wa-mini-brandline span {
    margin-right: 8px;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 800;
    font-style: italic;
}

.wa-mini-brandline i {
    display: block;
    width: 3px;
    border-radius: 99px;
    background: linear-gradient(180deg, var(--blue-600), var(--cyan-500));
}

.wa-mini-brandline i:nth-of-type(1),
.wa-mini-brandline i:nth-of-type(5) { height: 8px; }
.wa-mini-brandline i:nth-of-type(2),
.wa-mini-brandline i:nth-of-type(4) { height: 15px; }
.wa-mini-brandline i:nth-of-type(3) { height: 23px; }

@media (max-width: 980px) {
    .floating-card-one {
        left: -10px;
        top: 40px;
    }

    .floating-card-two {
        right: -8px;
        top: 10px;
    }

    .floating-card-three {
        right: 8px;
        bottom: 18px;
    }
}

@media (max-width: 640px) {
    .floating-card {
        min-width: auto;
        max-width: 165px;
        padding: 10px 12px;
    }

    .floating-card-one {
        left: -4px;
        top: 26px;
    }

    .floating-card-two {
        right: -4px;
        top: 6px;
    }

    .floating-card-three {
        right: 0;
        bottom: 8px;
    }

    .floating-card strong {
        font-size: 11px;
    }

    .floating-card small {
        font-size: 9px;
    }

    .mini-icon {
        width: 32px;
        height: 32px;
    }

    .wa-mini-send {
        min-width: 0;
    }
}


/* =====================================================
   AIR MUSIC v5 - CORRECCIONES DEFINITIVAS
===================================================== */

/* Evita cualquier SVG descontrolado por estilos heredados */
.hero svg,
#web_widget_wrap svg,
.air-back-top svg {
    display: block;
    max-width: 100%;
}

/* Botones: sin raya, borde extraño ni pseudo-elementos heredados */
.hero-actions .btn,
.hero-actions .btn::before,
.hero-actions .btn::after {
    text-decoration: none !important;
    outline: 0 !important;
}

.hero-actions .btn {
    position: relative;
    overflow: hidden;
    border: 1px solid transparent !important;
    box-shadow: none;
}

.hero-actions .btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #0878df 0%, #13b9ec 100%);
    box-shadow: 0 14px 30px rgba(7, 137, 230, .22);
}

.hero-actions .btn-primary:hover {
    box-shadow: 0 18px 34px rgba(7, 137, 230, .28);
}

.hero-actions .btn-arrow {
    display: inline-block;
    line-height: 1;
    text-decoration: none !important;
}

/* Hero visual */
.hero-visual {
    position: relative !important;
    min-height: 590px;
    overflow: visible !important;
    isolation: isolate;
}

.brand-card {
    position: absolute !important;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: min(100%, 525px);
    z-index: 2;
    overflow: hidden !important;
}

.brand-card img {
    width: 91%;
    height: 91%;
    object-fit: contain;
}

/* Tarjetas siempre ligadas al hero visual */
.hero-visual .floating-card {
    position: absolute !important;
    z-index: 5;
    display: flex !important;
    align-items: center;
    gap: 12px;
    min-width: 205px;
    max-width: 245px;
    padding: 13px 15px;
    border: 1px solid rgba(7, 26, 51, .08);
    border-radius: 16px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 45px rgba(4, 18, 37, .12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.hero-visual .floating-card-one {
    left: -18px !important;
    top: 78px !important;
    right: auto !important;
    bottom: auto !important;
}

.hero-visual .floating-card-two {
    right: -18px !important;
    top: 46px !important;
    left: auto !important;
    bottom: auto !important;
}

.hero-visual .floating-card-three {
    right: 10px !important;
    bottom: 42px !important;
    left: auto !important;
    top: auto !important;
}

.hero-visual .mini-icon {
    flex: 0 0 38px;
    width: 38px !important;
    height: 38px !important;
}

.hero-visual .mini-icon svg {
    width: 20px !important;
    height: 20px !important;
}

.hero-visual .floating-card strong,
.hero-visual .floating-card small {
    display: block;
}

.hero-visual .floating-card strong {
    font-size: 13px;
    line-height: 1.25;
}

.hero-visual .floating-card small {
    margin-top: 2px;
    font-size: 10px;
    line-height: 1.3;
}

/* Iconos inferiores */
.trust-icon {
    flex: 0 0 42px;
    width: 42px !important;
    height: 42px !important;
}

.trust-icon svg {
    width: 21px !important;
    height: 21px !important;
}

/* Volver arriba solo a la izquierda */
.air-back-top {
    left: 20px !important;
    right: auto !important;
    bottom: 20px !important;
}

/* WhatsApp: única instancia, sin animación que genere parpadeos */
#web_widget_wrap {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 99999;
    width: auto;
    height: auto;
    pointer-events: none;
}

#web_widget_wrap .wa-pill {
    position: relative !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    pointer-events: auto;
}

#web_widget_wrap .wa-pill-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 9px;
    height: 48px;
    padding: 0 17px 0 11px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #15bd66 0%, #25D366 100%);
    box-shadow: 0 15px 34px rgba(4, 18, 37, .18);
    cursor: pointer;
    transform: none !important;
    transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
}

#web_widget_wrap .wa-pill-btn:hover {
    transform: translateY(-1px) !important;
    background: linear-gradient(135deg, #119f58 0%, #20c862 100%);
    box-shadow: 0 18px 38px rgba(4, 18, 37, .22);
}

#web_widget_wrap .wa-pill-ic {
    flex: 0 0 30px;
    width: 30px !important;
    height: 30px !important;
}

#web_widget_wrap .wa-pill-ic svg {
    width: 18px !important;
    height: 18px !important;
}

#web_widget_wrap .wa-mini {
    position: absolute !important;
    right: 0 !important;
    left: auto !important;
    bottom: 58px !important;
    width: min(340px, calc(100vw - 36px)) !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px) scale(.98) !important;
    transform-origin: bottom right;
}

#web_widget_wrap .wa-pill.open .wa-mini {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1) !important;
}

#web_widget_wrap .wa-mini-ic {
    flex: 0 0 38px;
    width: 38px !important;
    height: 38px !important;
}

#web_widget_wrap .wa-mini-ic svg {
    width: 20px !important;
    height: 20px !important;
}

#web_widget_wrap .wa-mini-send {
    width: 100%;
    min-width: 0 !important;
    margin-top: 14px;
    min-height: 44px;
    border-radius: 14px;
}

#web_widget_wrap .wa-send-ic {
    flex: 0 0 24px;
    width: 24px !important;
    height: 24px !important;
}

#web_widget_wrap .wa-send-ic svg {
    width: 15px !important;
    height: 15px !important;
}

@media (max-width: 980px) {
    .hero-visual {
        min-height: 540px;
    }

    .hero-visual .floating-card-one {
        left: 0 !important;
        top: 50px !important;
    }

    .hero-visual .floating-card-two {
        right: 0 !important;
        top: 22px !important;
    }

    .hero-visual .floating-card-three {
        right: 12px !important;
        bottom: 28px !important;
    }
}

@media (max-width: 640px) {
    .hero-visual {
        min-height: 415px;
    }

    .hero-visual .floating-card {
        min-width: 0;
        max-width: 160px;
        padding: 9px 10px;
        gap: 8px;
    }

    .hero-visual .floating-card-one {
        left: -2px !important;
        top: 24px !important;
    }

    .hero-visual .floating-card-two {
        right: -2px !important;
        top: 4px !important;
    }

    .hero-visual .floating-card-three {
        right: 0 !important;
        bottom: 8px !important;
    }

    .hero-visual .mini-icon {
        flex-basis: 31px;
        width: 31px !important;
        height: 31px !important;
    }

    .hero-visual .mini-icon svg {
        width: 17px !important;
        height: 17px !important;
    }

    #web_widget_wrap {
        right: 14px;
        bottom: 14px;
    }

    #web_widget_wrap .wa-pill-btn {
        height: 46px;
        padding: 0 14px 0 10px;
        font-size: 13px;
    }

    .air-back-top {
        left: 14px !important;
        bottom: 14px !important;
    }
}

/* =====================================================
   AIR MUSIC - HERO LOGO FINAL
   Marco liviano, sin caja blanca pesada.
===================================================== */
.hero-visual .brand-card {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
}

.hero-visual .brand-card::before,
.hero-visual .brand-card::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 3;
    width: 92px;
    height: 92px;
}

.hero-visual .brand-card::before {
    top: -14px;
    left: -14px;
    border-top: 2px solid rgba(8,120,223,.34);
    border-left: 2px solid rgba(8,120,223,.34);
    border-radius: 28px 0 0 0;
}

.hero-visual .brand-card::after {
    right: -14px;
    bottom: -14px;
    border-right: 2px solid rgba(19,185,236,.38);
    border-bottom: 2px solid rgba(19,185,236,.38);
    border-radius: 0 0 28px 0;
}

.hero-visual .brand-card-glow {
    position: absolute;
    inset: 6%;
    z-index: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(19,185,236,.13), rgba(8,120,223,.04) 48%, transparent 72%);
    filter: blur(12px);
}

.hero-visual .brand-card img {
    position: relative;
    z-index: 1;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    border-radius: 30px;
}

/* AIR MUSIC FINAL - protección de render */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}


/* =====================================================
   TRANSICIÓN HERO -> SERVICIOS
===================================================== */
.event-transition {
    position: relative;
    z-index: 4;
    margin-top: -26px;
    padding: 0 0 22px;
    background: transparent;
}

.event-transition-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(280px, .9fr) minmax(420px, 1.25fr);
    align-items: center;
    gap: 34px;
    min-height: 128px;
    padding: 25px 30px;
    border: 1px solid rgba(8, 120, 223, .13);
    border-radius: 26px;
    background:
        radial-gradient(circle at 100% 0%, rgba(30, 190, 241, .18), transparent 38%),
        linear-gradient(135deg, rgba(255,255,255,.97), rgba(241,248,253,.96));
    box-shadow: 0 18px 48px rgba(5, 32, 61, .08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.event-transition-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 22px;
    bottom: 22px;
    width: 4px;
    border-radius: 0 8px 8px 0;
    background: linear-gradient(180deg, #0878df, #22c5ef);
}

.event-transition-copy {
    padding-left: 7px;
}

.event-transition-kicker {
    display: block;
    margin-bottom: 5px;
    color: #0878df;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.event-transition-copy strong {
    display: block;
    color: #071a33;
    font-size: clamp(18px, 1.55vw, 23px);
    line-height: 1.18;
    letter-spacing: -.025em;
}

.event-transition-copy p {
    margin: 7px 0 0;
    color: #71839a;
    font-size: 12.5px;
    line-height: 1.55;
}

.event-transition-types {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 9px;
}

.event-transition-types span {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px 0 30px;
    border: 1px solid rgba(8, 120, 223, .10);
    border-radius: 999px;
    color: #27415f;
    background: rgba(255,255,255,.78);
    font-size: 12px;
    font-weight: 750;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(7, 55, 96, .035);
}

.event-transition-types span::before {
    content: "";
    position: absolute;
    left: 13px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0878df, #22c5ef);
    box-shadow: 0 0 0 4px rgba(8,120,223,.08);
}

#servicios {
    padding-top: 72px;
}

@media (max-width: 900px) {
    .event-transition {
        margin-top: -10px;
    }

    .event-transition-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 23px;
    }

    .event-transition-types {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .event-transition {
        margin-top: 0;
        padding-bottom: 8px;
    }

    .event-transition-card {
        border-radius: 20px;
        padding: 20px 18px;
    }

    .event-transition-types {
        gap: 7px;
    }

    .event-transition-types span {
        min-height: 33px;
        padding: 0 11px 0 27px;
        font-size: 11px;
    }

    #servicios {
        padding-top: 58px;
    }
}


/* =====================================================
   AIR MUSIC - AJUSTE VISUAL FINAL HERO + TRANSICIÓN
===================================================== */

/* Eliminamos las esquinas decorativas incompletas del logo. */
.hero-visual .brand-card::before,
.hero-visual .brand-card::after {
    display: none !important;
}

/* El logo queda limpio; las tarjetas flotantes son el único adorno. */
.hero-visual .brand-card {
    border-radius: 32px !important;
}

/* Transición más grande, horizontal y uniforme. */
.event-transition {
    margin-top: -18px;
    padding-bottom: 28px;
}

.event-transition-card {
    grid-template-columns: minmax(410px, 1fr) minmax(620px, 1.45fr);
    gap: 42px;
    min-height: 154px;
    padding: 30px 36px;
    border-radius: 30px;
}

.event-transition-card::before {
    top: 28px;
    bottom: 28px;
}

.event-transition-copy {
    padding-left: 10px;
}

.event-transition-kicker {
    margin-bottom: 7px;
    font-size: 12px;
}

.event-transition-copy strong {
    font-size: clamp(21px, 1.6vw, 26px);
}

.event-transition-copy p {
    margin-top: 8px;
    font-size: 13.5px;
}

.event-transition-types {
    display: grid;
    grid-template-columns: repeat(5, max-content);
    justify-content: end;
    align-items: center;
    gap: 10px;
}

.event-transition-types span {
    min-height: 40px;
    padding: 0 16px 0 32px;
    font-size: 12.5px;
}

@media (max-width: 1180px) {
    .event-transition-card {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .event-transition-types {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .event-transition-card {
        min-height: 0;
        padding: 22px 19px;
        border-radius: 22px;
    }

    .event-transition-copy strong {
        font-size: 20px;
    }

    .event-transition-types span {
        min-height: 35px;
        font-size: 11px;
    }
}


/* =====================================================
   AIR MUSIC - CTA SIN RAYAS / BORDES DE RENDER
===================================================== */

/*
   Algunos navegadores estaban mostrando una línea de 1px en los CTA
   por la combinación de border transparente + gradiente + antialias.
   Los CTA principales no necesitan border.
*/
a.btn,
button.btn,
.hero-actions .btn,
.price-card .btn {
    border: 0 !important;
    outline: 0 !important;
    text-decoration: none !important;
    -webkit-appearance: none;
    appearance: none;
    background-clip: padding-box;
}

a.btn::before,
a.btn::after,
button.btn::before,
button.btn::after,
.hero-actions .btn::before,
.hero-actions .btn::after,
.price-card .btn::before,
.price-card .btn::after {
    content: none !important;
    display: none !important;
}

/* CTA azul del hero */
.hero-actions .btn-primary {
    border: 0 !important;
    background: linear-gradient(135deg, #0878df 0%, #13b9ec 100%) !important;
    box-shadow: 0 14px 30px rgba(7, 137, 230, .22) !important;
}

/* CTA blanco sobre tarjeta azul */
.price-card.featured .btn-light {
    border: 0 !important;
    background: #fff !important;
    color: #071a33 !important;
    box-shadow: none !important;
}

/*
   La tarjeta destacada conserva su forma, pero quitamos también
   la línea azul de 1px del contorno que podía confundirse con el CTA.
*/
.price-card.featured {
    border: 0 !important;
}
