/* trial.css - Estilos específicos para a página Trial Stok IA */

.trial-page {
    background-color: #000000;
    color: #ffffff;
}

/* ================================
   Hero Section
   ================================ */

.trial-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    height: 56.25vw;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    border: none;
    z-index: 0;
    opacity: 0.6;
    pointer-events: none;
    mix-blend-mode: screen;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to top, #000000 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.trial-hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

@media (max-width: 992px) {
    .trial-hero-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 3rem;
    }
}

.hero-text-content {
    flex: 1;
    max-width: 600px;
    margin-left: -50px;
    margin-top: 100px;
}

.trial-hero-title {
    color: #FFFFFF;
    font-family: Switzer, sans-serif;
    font-size: clamp(42px, 5vw, 56px);
    letter-spacing: -0.02em;
    font-weight: 500;
    line-height: 1.05;
    max-width: 600px;
}

.trial-hero-subtitle {
    color: rgba(238, 234, 233, 0.75);
    font-family: switzer, sans-serif;
    font-size: clamp(15px, 1.1vw, 16px);
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: normal;
    max-width: 520px;
    margin-top: 12px;
}

@media (max-width: 992px) {
    .trial-hero-subtitle {
        margin: 0 auto;
    }
    .trial-hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .trial-hero-title {
        font-size: 2.75rem;
    }
}

/* ================================
   Hero Form
   ================================ */

.hero-form-wrapper {
    flex: 1;
    max-width: 440px;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.1rem;
    box-shadow: 0 24px 48px rgba(0,0,0,0.4);
    margin-right: -75px;
}

@media (max-width: 1366px) and (min-width: 993px), (max-height: 860px) and (min-width: 993px) {
    .trial-hero {
        height: 100vh;
        min-height: unset;
        align-items: flex-start;
        padding-top: 7.25rem;
        padding-bottom: 2.5rem;
    }

    .trial-hero-container {
        align-items: flex-start;
        gap: 2.5rem;
    }

    .hero-text-content {
        margin-top: 2rem;
        margin-left: 0;
        max-width: 520px;
    }

    .hero-form-wrapper {
        margin-right: 0;
        max-width: 405px;
        padding: 1.8rem;
    }

    .minimal-form {
        gap: 0.9rem !important;
    }

    .minimal-input,
    .minimal-submit-btn {
        padding: 0.95rem 1.1rem !important;
    }
}

@media (max-height: 760px) and (min-width: 993px) {
    .trial-hero {
        height: 100vh;
        min-height: unset;
        padding-top: 5rem;
        padding-bottom: 1rem;
    }

    .trial-hero-container {
        gap: 2rem;
    }

    .hero-text-content {
        margin-top: 17rem;
        margin-left: -40px;
    }

    .trial-hero-title {
        font-size: clamp(2.8rem, 4vw, 3.3rem);
    }

    .trial-hero-subtitle {
        font-size: 0.94rem;
        line-height: 1.4;
        max-width: 480px;
    }

    .hero-form-wrapper {
        padding: 1.2rem;
        margin-top: 50px;
        margin-right: -40px;
    }

    .minimal-form {
        gap: 0.75rem !important;
    }

    .minimal-input,
    .minimal-submit-btn {
        padding: 0.95rem 1rem !important;
    }

    .trial-checkbox-label span {
        font-size: 12px;
    }
}

.minimal-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.minimal-input {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1.15rem 1.25rem;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.minimal-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.minimal-input:focus {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.minimal-input.input-error {
    border-color: #f87171;
}

.minimal-submit-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    padding: 1.15rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.minimal-submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 0%;
    bottom: 0;
    top: auto;
    background-color: #ffffff;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.minimal-submit-btn span, .minimal-submit-btn .arrow-icon {
    position: relative;
    z-index: 1;
}

.minimal-submit-btn:hover {
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.minimal-submit-btn:hover::before {
    height: 100%;
}

.minimal-submit-btn .spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ================================
   Checkboxes (Newsletter opt-in + Consent)
   ================================ */

.trial-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.trial-checkbox-label span {
    font-family: 'Switzer', sans-serif;
    font-weight: 300;
    font-size: clamp(11px, 0.85vw, 13px);
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}

.trial-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    cursor: pointer;
    margin-top: 1px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.trial-checkbox:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.trial-checkbox:checked {
    background: #FFFFFF;
    border-color: #FFFFFF;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
}

#consent-label {
    display: none;
}

#consent-label.visible {
    display: flex;
}

.status-msg {
    margin-top: 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    text-align: center;
    font-weight: 300;
}
.status-msg.hidden {
    display: none;
}
.status-success {
    color: #4ade80;
}
.status-error {
    color: #f87171;
}

/* ================================
   Content Section Below
   ================================ */

.scroll-content {
    position: relative;
    z-index: 5;
    background-color: #000000;
}

.trial-next-section {
    padding: 1rem 2rem 3rem;
    background-color: #000000;
}

.trial-next-heading {
    max-width: 1200px;
    margin: 5rem auto 2rem;
}

.trial-next-title { /*titulo seção "O que acontece a seguir?" */
    font-family: 'Switzer', sans-serif;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: normal;
    color: #ffffff;
    text-align: center;
}

.trial-steps-slider {
    position: relative;
    max-width: 1200px;
    min-height: 500px;
    margin: 0 auto;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    background: #0a0a0a;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.45);
    isolation: isolate;
}

.trial-step-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    transition: opacity 0.8s ease, transform 1.2s ease;
    will-change: opacity, transform;
}

.trial-step-bg.is-active {
    opacity: 1;
    transform: scale(1.05);
}

.trial-steps-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.82) 52%, rgba(5, 5, 5, 0.18) 100%);
    z-index: 1;
}

.trial-steps-wash {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.3);
    z-index: 1;
}

.trial-steps-content {
    position: relative;
    z-index: 2;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2.5rem;
}

.trial-step-copy {
    min-height: 160px;
    max-width: 540px;
}

.trial-step-dynamic {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.trial-step-copy h3 {
    font-family: 'Switzer', sans-serif;
    font-size: clamp(2.4rem, 4.5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.trial-step-copy p {
    font-family: 'Switzer', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.trial-step-copy p strong {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
}

.trial-step-controls {
    position: absolute;
    left: 2.5rem;
    bottom: 2.5rem;
    display: flex;
    align-items: flex-end;
    gap: 1rem;
}

.trial-step-button {
    position: relative;
    width: 1.5rem;
    padding: 0.75rem 0;
    background: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: width 0.5s ease;
}

.trial-step-button.is-active {
    width: 4rem;
}

.trial-step-button:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.65);
    outline-offset: 8px;
    border-radius: 12px;
}

.trial-step-label {
    position: absolute;
    left: 0;
    bottom: 1.6rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.trial-step-label.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.trial-step-track {
    position: relative;
    width: 100%;
    height: 2px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
}

.trial-step-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
    transition: width 50ms linear, background-color 0.4s ease, box-shadow 0.4s ease;
}

.trial-step-button.is-active .trial-step-progress {
    background: #ffffff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {
    .trial-next-section {
        padding-top: 2rem;
        padding-bottom: 4rem;
    }

    .trial-next-heading {
        margin-bottom: 3rem;
    }

    .trial-next-title {
        font-size: 2.5rem;
    }

    .trial-steps-slider,
    .trial-steps-content {
        min-height: 550px;
    }

    .trial-steps-content {
        padding: 4rem 4rem;
    }

    .trial-step-controls {
        left: 4rem;
        bottom: 4rem;
        gap: 1.5rem;
    }

    .trial-step-button.is-active {
        width: 6rem;
    }
}

@media (max-width: 767px) {
    .trial-next-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .trial-steps-slider {
        min-height: 480px;
        border-radius: 1.5rem;
    }

    .trial-steps-content {
        min-height: 480px;
        padding: 2.5rem 1.5rem 5rem;
        justify-content: flex-start;
    }

    .trial-step-copy {
        min-height: 200px;
    }

    .trial-step-copy h3 {
        margin-top: 1.5rem;
    }

    .trial-step-controls {
        left: 1.5rem;
        right: 1.5rem;
        bottom: 1.75rem;
        gap: 0.75rem;
    }
}

.trial-info-section {
    padding: 6rem 2rem 8rem;
    background-color: #000000;
}

.trial-info-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-heading {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    margin: 0 0 14px;
    font-family: 'Switzer', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #4b4b4b;
}

.section-title {
    font-family: 'Switzer', sans-serif;
    font-size: 2.75rem;
    font-weight: 300;
    letter-spacing: normal;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.trial-bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.trial-bento-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 300px;
    padding: 2rem;
    overflow: hidden;
    border-radius: 1.75rem;
    background: rgba(24, 24, 27, 0.4);
    transition: background-color 0.5s ease, transform 0.45s ease, box-shadow 0.45s ease;
}

/* Spotlight Glowing Border */
.trial-bento-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: radial-gradient(
        500px circle at calc(var(--x, -1000) * 1px) calc(var(--y, -1000) * 1px),
        #21BDEF 0%,
        transparent 35%
    ),
    rgba(39, 39, 42, 0.6); /* fallback border */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 5;
    transition: background 0.5s ease;
}

.trial-bento-card:hover {
    background: rgba(24, 24, 27, 0.62);
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.34);
}

.trial-bento-card:hover::before {
    background: radial-gradient(
        500px circle at calc(var(--x, -1000) * 1px) calc(var(--y, -1000) * 1px),
        #21BDEF 0%,
        transparent 35%
    ),
    rgba(63, 63, 70, 0.75); /* hover border fallback */
}

.trial-bento-card--featured {
    justify-content: center;
    background: linear-gradient(135deg, rgba(24, 24, 27, 0.82) 0%, rgba(24, 24, 27, 0.22) 100%);
}

.trial-bento-card--featured:hover::before {
    background: radial-gradient(
        500px circle at calc(var(--x, -1000) * 1px) calc(var(--y, -1000) * 1px),
        #21BDEF 0%,
        transparent 35%
    ),
    rgba(82, 82, 91, 0.8);
}

.trial-bento-content {
    position: relative;
    z-index: 1;
}

.trial-bento-content--wide {
    max-width: 42rem;
}

.trial-bento-content--compact {
    margin-top: auto;
    padding-top: 5rem;
}

.trial-bento-content--featured {
    max-width: 34rem;
}

.trial-bento-content h3 {
    margin: 0 0 1rem;
    font-family: 'Switzer', sans-serif;
    font-size: 1.45rem;
    font-weight: 500;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: normal;
}

.trial-bento-content p {
    margin: 0;
    font-family: 'Switzer', sans-serif;
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(161, 161, 170, 0.95);
    letter-spacing: 0.3px;
}

.trial-bento-content strong {
    color: rgba(228, 228, 231, 0.98);
    font-weight: 400;
}

.trial-bento-graphic,
.trial-bento-symbol {
    position: absolute;
    pointer-events: none;
    color: rgba(255, 255, 255, 0.03);
}

.trial-bento-graphic {
    transition: transform 1s ease, color 1s ease;
}

.trial-bento-graphic svg {
    display: block;
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.5;
}

.trial-bento-graphic--time {
    top: -6rem;
    right: -4rem;
    width: 23.75rem;
    height: 23.75rem;
}

.trial-bento-card:hover .trial-bento-graphic--time {
    transform: scale(1.05);
    color: rgba(255, 255, 255, 0.06);
}

.trial-bento-graphic--card {
    top: -4rem;
    right: -3rem;
    width: 18.75rem;
    height: 18.75rem;
}

.trial-bento-card:hover .trial-bento-graphic--card {
    transform: scale(1.1) rotate(-3deg);
    color: rgba(255, 255, 255, 0.06);
}

.trial-bento-symbol {
    font-weight: 700;
    line-height: 1;
    transition: transform 0.7s ease, color 0.7s ease;
}

.trial-bento-symbol--asterisk {
    top: -1.75rem;
    right: -0.75rem;
    font-size: 17.5rem;
    color: rgba(255, 255, 255, 0.02);
}

.trial-bento-card:hover .trial-bento-symbol--asterisk {
    transform: rotate(12deg) scale(1.05);
    color: rgba(255, 255, 255, 0.04);
}

.trial-bento-symbol--percent {
    right: -0.5rem;
    bottom: -0.75rem;
    font-size: 12.5rem;
    color: rgba(255, 255, 255, 0.02);
}

.trial-bento-card:hover .trial-bento-symbol--percent {
    transform: translateY(-1rem);
    color: rgba(255, 255, 255, 0.04);
}

.trial-bento-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.45rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    font-family: 'Switzer', sans-serif;
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(228, 228, 231, 0.95);
}

@media (min-width: 768px) {
    .trial-bento-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }

    .trial-bento-card {
        padding: 2.5rem;
    }

    .trial-bento-card--wide {
        grid-column: span 2;
    }

    .trial-bento-content h3 {
        font-size: 1.6rem;
    }

    .trial-bento-content--compact h3 {
        font-size: 1.25rem;
    }

    .trial-bento-content--compact p {
        font-size: 0.92rem;
    }
}

.trial-access-section {
    position: relative;
    padding: 0 2rem 8rem;
    background-color: transparent;
    overflow: hidden;
}

.trial-access-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 70px auto;
}

.trial-access-heading {
    position: relative;
    top: -2.25rem;
    margin-bottom: 1.25rem;
}

.trial-access-title {
    background: linear-gradient(90deg, #ffffff 0%, #21bdef 54%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.trial-access-intro {
    max-width: 42rem;
    margin: 1.25rem auto 0;
    font-family: 'Switzer', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(185, 185, 185, 0.6);
}

.trial-access-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
    isolation: isolate;
}

.trial-access-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(33, 189, 239, 0.16), transparent 32%),
        radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.14), transparent 30%);
    pointer-events: none;
    z-index: 0;
}

.trial-access-canvas {
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 800px;
    display: block;
    z-index: 0;
    pointer-events: none;
    opacity: 0.92;
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

.trial-access-card {
    position: relative;
    z-index: 1;
    backdrop-filter: blur(18px) brightness(0.84);
    -webkit-backdrop-filter: blur(18px) brightness(0.84);
}

.trial-access-overview {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trial-access-overview-block {
    padding: 2.75rem 3rem;
}

.trial-access-label {
    margin: 0 0 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
}

.trial-access-metric,
.trial-access-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
}

.trial-access-number,
.trial-access-price-free {
    font-family: 'Inter', sans-serif;
    font-size: clamp(3.5rem, 7vw, 4.5rem);
    font-weight: 200;
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.trial-access-number {
    color: #ffffff;
}

.trial-access-unit {
    font-family: 'Switzer', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
}

.trial-access-price-old {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.0rem, 2vw, 1.0rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.28);
    text-decoration: line-through;
    text-decoration-thickness: 1px;
}

.trial-access-price-free {
    color: #ffffff;
}

.trial-access-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
}

.trial-access-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
    padding: 3rem;
}

.trial-access-column h3 {
    margin: 0 0 2rem;
    font-family: 'Switzer', sans-serif;
    font-size: 1.35rem;
    font-weight: 300;
    color: #ffffff;
}

.trial-feature-list,
.trial-rule-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.trial-feature-list {
    display: grid;
    gap: 1rem;
}

.trial-feature-item,
.trial-rule-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.trial-feature-icon,
.trial-rule-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 1.5rem;
    height: 1.5rem;
    color: rgba(255, 255, 255, 0.28);
}

.trial-feature-icon {
    color: #21bdef;
}

.trial-feature-icon svg,
.trial-rule-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trial-feature-copy {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.trial-feature-title,
.trial-rule-title {
    font-family: 'Switzer', sans-serif;
    font-size: 0.96rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.82);
}

.trial-feature-value {
    font-family: 'Switzer', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    text-align: right;
    color: rgba(255, 255, 255, 0.52);
}

.trial-rule-list {
    display: grid;
    gap: 2rem;
}

.trial-rule-icon--accent,
.trial-rule-title--accent {
    color: #21bdef;
}

.trial-rule-copy {
    display: grid;
    gap: 0.5rem;
}

.trial-rule-text {
    font-family: 'Switzer', sans-serif;
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.52);
}

@media (max-width: 991px) {
    .trial-access-overview,
    .trial-access-grid {
        grid-template-columns: 1fr;
    }

    .trial-access-grid {
        gap: 2.5rem;
    }

    .trial-feature-copy {
        align-items: flex-start;
        flex-direction: column;
    }

    .trial-feature-value {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .trial-access-section {
        padding: 0 1rem 6rem;
    }

    .trial-access-heading {
        margin-bottom: 2.5rem;
    }

    .trial-access-shell {
        border-radius: 1.5rem;
    }

    .trial-access-overview-block,
    .trial-access-grid {
        padding: 2rem 1.5rem;
    }

    .trial-access-grid {
        gap: 2rem;
    }

    .trial-access-column h3 {
        margin-bottom: 1.5rem;
        font-size: 1.2rem;
    }

    .trial-rule-list {
        gap: 1.5rem;
    }
}
