/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.noryxel-cardiosoft-9826-body {
    background-color: #060708;
    color: #e0e0e0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* HELPERS */
.noryxel-container-standard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.noryxel-header-container {
    background-color: #060708;
    border-bottom: 2px solid #FFC55E;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.noryxel-header-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.noryxel-logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #FFC55E;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.noryxel-nav-menu {
    display: flex;
    gap: 20px;
}

.noryxel-nav-link {
    color: #e0e0e0;
    font-weight: 500;
    font-size: 15px;
}

.noryxel-nav-link:hover {
    color: #FFC55E;
}

.noryxel-menu-checkbox {
    display: none;
}

.noryxel-burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.noryxel-burger-btn span {
    width: 25px;
    height: 3px;
    background-color: #FFC55E;
}

/* HERO SECTION */
.noryxel-hero-section {
    padding: 60px 20px;
    position: relative;
}

.noryxel-fast-links-wrap {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.noryxel-fast-btn {
    background: transparent;
    border: 1px solid #FFC55E;
    color: #FFC55E;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
}

.noryxel-fast-btn:hover {
    background: #FFC55E;
    color: #060708;
    box-shadow: 0 0 10px rgba(255, 197, 94, 0.4);
}

.noryxel-hero-columns {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.noryxel-hero-image-side {
    flex: 1;
}

.noryxel-hero-content-side {
    flex: 1.2;
}

.noryxel-img-hero-main {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    width: 100%;
    object-fit: cover;
}

.noryxel-h1-title {
    font-size: 42px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
}

.noryxel-subtitle-text {
    font-size: 20px;
    color: #FFC55E;
    margin-bottom: 25px;
    font-weight: 600;
}

.noryxel-paragraph-main {
    margin-bottom: 15px;
    font-size: 17px;
    color: #ccc;
}

.noryxel-cta-box {
    margin-top: 30px;
}

/* BUTTONS */
.noryxel-btn-primary {
    display: inline-block;
    background-color: #FFC55E;
    color: #060708;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(255, 197, 94, 0.2);
}

.noryxel-btn-primary:hover {
    background-color: #ffd48a;
    box-shadow: 0 0 20px rgba(255, 197, 94, 0.6);
    transform: translateY(-2px);
}

.noryxel-btn-outline {
    display: inline-block;
    border: 2px solid #FFC55E;
    color: #FFC55E;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.noryxel-btn-outline:hover {
    background: rgba(255, 197, 94, 0.1);
}

/* AUDIENCE SECTION */
.noryxel-audience-section {
    padding: 80px 0;
    background-color: #0b0d0f;
}

.noryxel-audience-top-img {
    margin-bottom: 50px;
    overflow: hidden;
}

.noryxel-full-width-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.noryxel-h2-title {
    font-size: 36px;
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
}

.noryxel-h2-title::before {
    content: "✦";
    color: #FFC55E;
    margin-right: 10px;
    font-size: 24px;
}

.noryxel-intro-text {
    text-align: center;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.noryxel-audience-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.noryxel-audience-item {
    background: #121417;
    padding: 20px;
    border-left: 4px solid #FFC55E;
    border-radius: 0 10px 10px 0;
    transition: transform 0.3s;
}

.noryxel-audience-item:hover {
    transform: translateX(10px);
}

/* PRICING */
.noryxel-pricing-section {
    padding: 100px 0;
}

.noryxel-price-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.noryxel-price-card {
    background: #121417;
    border: 1px solid #2a2c31;
    padding: 40px 30px;
    width: 280px;
    text-align: center;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
}

.noryxel-card-featured {
    border: 2px solid #FFC55E;
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(255,197,94,0.1);
}

.noryxel-h3-card {
    font-size: 22px;
    margin-bottom: 20px;
    color: #fff;
}

.noryxel-price-value {
    font-size: 32px;
    font-weight: 800;
    color: #FFC55E;
    margin-bottom: 25px;
}

.noryxel-card-features {
    margin-bottom: 30px;
    flex-grow: 1;
}

.noryxel-card-features li {
    font-size: 15px;
    padding: 8px 0;
    border-bottom: 1px solid #222;
    color: #bbb;
}

/* BENEFITS */
.noryxel-benefits-section {
    padding: 80px 0;
    background: #060708;
}

.noryxel-benefits-row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.noryxel-benefits-content {
    flex: 1;
}

.noryxel-benefits-photo {
    flex: 1;
}

.noryxel-img-rounded {
    border-radius: 20px;
    box-shadow: 20px 20px 0 rgba(255, 197, 94, 0.1);
}

.noryxel-benefits-ul {
    margin-top: 30px;
}

.noryxel-benefits-ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 17px;
}

.noryxel-gold-dot {
    width: 10px;
    height: 10px;
    background-color: #FFC55E;
    border-radius: 50%;
    flex-shrink: 0;
}

/* EXTRA TEXT BLOCKS */
.noryxel-text-block-extra {
    padding: 100px 0;
}

.noryxel-bg-alt {
    background-color: #0b0d0f;
}

.noryxel-paragraph-large {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.noryxel-inner-list-box {
    background: #121417;
    padding: 40px;
    border-radius: 15px;
    max-width: 800px;
    margin: 40px auto 0;
}

.noryxel-h4-mini {
    color: #FFC55E;
    margin-bottom: 20px;
    font-size: 20px;
}

.noryxel-simple-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.noryxel-simple-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #FFC55E;
}

/* QUOTE / SLIDER */
.noryxel-quote-section {
    padding: 100px 0;
    background: #060708;
}

.noryxel-slider-fake-wrap {
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.noryxel-slide-radio {
    display: none;
}

.noryxel-slides-container {
    display: flex;
    transition: transform 0.5s ease;
    width: 200%;
}

.noryxel-slide-item {
    width: 50%;
    padding: 20px;
}

.noryxel-blockquote {
    font-size: 24px;
    font-style: italic;
    color: #fff;
    margin-bottom: 25px;
}

.noryxel-cite {
    font-weight: 700;
    color: #FFC55E;
}

.noryxel-slider-controls {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.noryxel-dot-label {
    width: 12px;
    height: 12px;
    background: #444;
    border-radius: 50%;
    cursor: pointer;
}

#slide1:checked ~ .noryxel-slides-container { transform: translateX(0); }
#slide2:checked ~ .noryxel-slides-container { transform: translateX(-50%); }

#slide1:checked ~ .noryxel-slider-controls label:nth-child(1),
#slide2:checked ~ .noryxel-slider-controls label:nth-child(2) {
    background: #FFC55E;
    width: 30px;
    border-radius: 10px;
}

/* FAQ */
.noryxel-faq-section {
    padding: 100px 0;
}

.noryxel-faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.noryxel-faq-item {
    background: #121417;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #222;
}

.noryxel-faq-summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: #FFC55E;
    outline: none;
}

.noryxel-faq-answer {
    padding: 0 20px 20px;
    color: #ccc;
}

/* FORM */
.noryxel-form-section {
    padding: 100px 0;
    background: #0b0d0f;
}

.noryxel-form-card {
    background: #121417;
    padding: 50px;
    border-radius: 20px;
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid #FFC55E;
}

.noryxel-form-subtitle {
    text-align: center;
    margin-bottom: 40px;
}

.noryxel-input-group {
    margin-bottom: 20px;
}

.noryxel-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #aaa;
}

.noryxel-input, .noryxel-textarea {
    width: 100%;
    background: #060708;
    border: 1px solid #333;
    padding: 12px 15px;
    color: #fff;
    border-radius: 5px;
    font-size: 16px;
}

.noryxel-textarea {
    height: 120px;
    resize: vertical;
}

.noryxel-input:focus, .noryxel-textarea:focus {
    border-color: #FFC55E;
    outline: none;
}

.noryxel-checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.noryxel-check-label {
    font-size: 14px;
}

.noryxel-check-label a {
    color: #FFC55E;
}

.noryxel-btn-submit {
    width: 100%;
    background: #FFC55E;
    color: #060708;
    border: none;
    padding: 15px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 5px;
}

/* FOOTER */
.noryxel-footer {
    background: #060708;
    padding: 80px 0 40px;
    border-top: 1px solid #222;
}

.noryxel-footer-top {
    text-align: center;
    margin-bottom: 50px;
}

.noryxel-footer-logo {
    font-size: 28px;
    font-weight: 800;
    color: #FFC55E;
    margin-bottom: 20px;
}

.noryxel-footer-info {
    max-width: 500px;
    margin: 0 auto 20px;
    color: #999;
}

.noryxel-footer-contact {
    margin-bottom: 10px;
}

.noryxel-footer-contact a {
    color: #fff;
}

.noryxel-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #1a1a1a;
}

.noryxel-footer-links {
    display: flex;
    gap: 20px;
}

.noryxel-footer-links a {
    font-size: 12px;
    color: #666;
}

.noryxel-footer-links a:hover {
    color: #FFC55E;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .noryxel-hero-columns, .noryxel-benefits-row {
        flex-direction: column;
    }
    .noryxel-hero-image-side, .noryxel-hero-content-side {
        width: 100%;
    }
    .noryxel-audience-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .noryxel-nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #060708;
        padding: 20px;
        border-bottom: 2px solid #FFC55E;
    }
    
    .noryxel-burger-btn {
        display: flex;
    }

    #noryxel-menu-toggle:checked ~ .noryxel-nav-menu {
        display: flex;
    }

    .noryxel-h1-title {
        font-size: 32px;
    }
    
    .noryxel-footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}