:root {
    --color-dark-blue: #0A1930;
    --color-text-white: #FFFFFF;
    --color-cyan: #4A90E2;
    --color-purple: #9013FE;
    --color-pink: #E61A8D;
    --color-gradient-canva: linear-gradient(90deg, #4A90E2 0%, #00C6FF 100%);
    --color-gradient-button: linear-gradient(90deg, #9013FE 0%, #E61A8D 100%);
    --color-gradient-bar: linear-gradient(90deg, #3A1C71 0%, #D76D77 50%, #FFAF7B 100%)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: Poppins, Arial, sans-serif;
    color: var(--color-text-white);
    overflow-x: hidden;

    background-size: 400% 400%, 300% 300%;
    background-attachment: fixed;
    color: white;
    overflow-x: hidden;
    position: relative;

}
.containermore {
    background: url(./assets/background2.jpg) no-repeat center top / cover;
    text-align: center;
    justify-content: center;
    padding: 40px 0px;
    gap: 120px;
    
}


.carousel-section {

    background: url('./assets/background2.jpg') no-repeat center top/cover;
    text-align: center;
}

.carousel-container h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 0, 0, .8);
}

.disadvantages-text {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
}

.carousel-container {
    overflow: hidden;
    width: 100%;

    margin: 0 auto;
}

.imagen-pequeña {
    width: 300px;
    height: auto; /* Mantiene la proporción */
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    
}

.card {
    margin-right: 200px;
    margin-left: 200px;
    
    justify-content: center;
    padding: 20px;
    margin-top: 30px;
    border-radius: 20px;
    background: rgba(0, 0, 0, .6);
    border: 2px solid #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, .3);
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.card-title {
    margin-bottom: 15px;
    font-weight: 900;
    font-size: 1.1em;
    color: var(--color-text-white);
}

.card-description {
    margin-bottom: 15px;
    font-weight: 900;
    font-size: 0.95em;
    color: var(--color-text-white);
}

.price {
    color: #e91e63;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: line-through;
}

.carousel {
    display: flex;
    animation: slide 20s linear infinite;
}

.carousel:focus,
.carousel:hover {
    animation-play-state: paused;
}

.carousel-image {
    width: 200px;
    height: auto;
    margin: 0 10px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .3);
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-3000px);
    }
}

@keyframes arrowFlow {
    0% {
        stroke-dashoffset: 0
    }

    100% {
        stroke-dashoffset: -15
    }
}


.hero-section {
    position: relative;
    min-height: 775px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    overflow: hidden
}

.hero-section {
    background: url('./assets/background2.jpg') no-repeat center top/cover
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    width: 90%;
    margin: 0 auto;
    z-index: 10;
    text-align: center
}

.content-left {
    max-width: 421px;
    margin-right: 120px
}

.bio-links-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-white);
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, .5), 0 0 20px rgba(255, 255, 255, .3), 0 0 30px rgba(255, 255, 255, .2)
}

h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
    position: relative
}

h1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./assets/logoig.png') center center/cover no-repeat;
    filter: blur(10px);
    opacity: .1;
    z-index: -1
}

.with-canva-text {
    display: block;
    margin-top: -10px
}

.canva-logo {
    height: 80px;
    vertical-align: middle;
    margin-left: 10px
}

.highlight-word {
    color: #4ad4ff;
    font-weight: 900;
    font-size: 1.1em
}

.highlight-word.glow {
    text-shadow: 0 0 4px rgba(74, 144, 226, .8), 0 0 8px rgba(74, 144, 226, .6)
}

.slogan {
    font-size: 1.8rem;
    line-height: 1.3;
    font-weight: 500;
    color: #fff;
    margin: 30px 0
}

.features-list {
    display: flex;
    gap: 30px;
    justify-content: center;
    padding: 20px;
    margin-top: 30px;
    border-radius: 20px;
    background: rgba(0, 0, 0, .6);
    border: 2px solid #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, .3)
}

.packs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.packs-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(0, 0, 0, .8);
}

.badges-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.badge {
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.badge-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.badge-pink {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.badge-yellow {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.badge-icon {
    font-size: 1.3em;
}

.niches-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(0, 0, 0, .8);
}

.niches-container {
    display: flex;
    gap: 30px;
    justify-content: space-evenly;
    padding: 20px;
    margin-top: 30px;
    border-radius: 20px;
    border: 2px solid #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, .3);
    margin-top: 30px;
    
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    
}

.niches-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.niche-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.15em;
    color: #ffffff;
    font-weight: 500;
}

.check-icon {
    width: 28px;
    height: 28px;
    background: #10b981;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

.features-list ul {
    list-style: none;
    padding: 0;
    margin: 0
}



.features-list li {
    margin-bottom: 15px;
    font-weight: 900;
    font-size: 1.1em;
    color: var(--color-text-white)
}

.checkmark {
    color: var(--color-purple);
    font-size: 1.2rem;
    font-weight: 700
}

.btn-access {

    left: 29.5%;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 40px;
    background: var(--color-gradient-button);
    color: var(--color-text-white);
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(144, 19, 254, .5)
}

.btn-hero {
    
    left: 44%;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 40px;
    background: var(--color-gradient-button);
    color: var(--color-text-white);
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(144, 19, 254, .5);
}

.content-right {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    min-height: 650px;
    position: relative
}

.mockup-container {
    position: relative;
    width: 600px;
    height: 100%
}

.phone {
    position: absolute;
    width: 200px;
    height: 416px;
    border-radius: 40px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5), 0 0 10px rgba(255, 255, 255, .1);
    transition: transform .5s;
    border: 6px solid #000
}

.phone-center {
    z-index: 50;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 224px;
    height: 464px;
    border: 8px solid #000
}


.phone-left {
    z-index: 30;
    top: 50px;
    left: 10px;
    opacity: .9;
    transform: rotate(-15deg)
}

.phone-right {
    z-index: 30;
    top: 50px;
    right: 10px;
    transform: rotate(10deg)
}

.phone-content-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.phone-content-video {
    width: 100%;
    height: auto;
    aspect-ratio: 5/16;
    object-fit: cover;
    display: block
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .2);
    display: flex;
    justify-content: center;
    align-items: center
}

.bottom-bar-section {
    background: url('./assets/background2.jpg') no-repeat center top/cover;
    position: relative;
    overflow: hidden;
    text-align: center
}

.bottom-bar-content {
    background: linear-gradient(90deg, #3a1c71 0, #d76d77 50%, #ffaf7b 100%);
    padding: 20px 10px;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-text-white);
    max-width: 600px;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(108, 50, 196, .5)
}

.before-after-section {
    padding-bottom: 100px
}

.before-after-section h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 40px 0 20px
}

.examples-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    justify-items: center;
    margin: 60px auto;
    max-width: 1200px
}

.example-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center
}

.column-visuals {
    position: relative;
    width: 320px;
    height: 320px
}

.image-container {
    position: absolute;
    left: 210px;
    top: 77px;
    display: inline-block;
    z-index: 4
}

.linkt-image {
    width: 100px;
    height: auto
}

.phone-mockup {
    position: absolute;
    left: 10px;
    top: 0;
    width: 180px;
    height: 320px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .8), 0 20px 60px rgba(0, 0, 0, .6);
    z-index: 5
}

.img-container {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative
}

.template-image {
    width: 100%;
    object-fit: cover;
    display: block
}


.additional-container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
    display: flex;
    gap: 120px;
    align-items: flex-start;
    flex-direction: row;
    justify-content: center
}

.additional-column {
    max-width: 100%;
    color: #fff;
    text-align: center
}

.additional-column ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.columns-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: nowrap
}

.left-text-column {
    text-align: left
}

.right-smartphone-column {
    text-align: center;
    align-items: flex-end
}

.curved-arrow {
    width: 200px;
    height: 100px;
    margin: 20px auto
}

.negatives-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    
    
}


.testimonials-wrapper {
    
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.testimonials-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    pointer-events: none;
}

.testimonials-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 70px;
}

.testimonials-header .subtitle {
    color: #ff55bb;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.testimonials-header h2 {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #ff55bb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 35px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6, #ff55bb);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.avatar-image {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7877c6, #ff55bb);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    position: relative;
    box-shadow: 0 5px 15px rgba(255, 85, 187, 0.3);
    flex-shrink: 0;
}

.avatar-placeholder {
    color: white;
    font-size: 1.6rem;
    font-weight: bold;
}

.user-details h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    margin: 0 0 5px 0;
}

.user-details .username {
    color: #ff55bb;
    font-size: 0.9rem;
}

.rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.star {
    color: #ffc107;
    font-size: 1.3rem;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.verified {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #4CAF50;
    font-size: 0.85rem;
    font-weight: 600;
}

.stats-section {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 70px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #ff55bb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-header h2 {
        font-size: 2.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats-section {
        gap: 40px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

.negative-box {
    background: linear-gradient(135deg, rgba(144, 19, 254, .3), rgba(230, 26, 141, .3));
    padding: 12px;
    border-radius: 12px;
    font-weight: 700;
    color: #fff;
    border: 2px solid rgba(144, 19, 254, .6);
    text-align: center;
    text-shadow: 0 0 8px rgba(144, 19, 254, .8), 0 0 16px rgba(144, 19, 254, .6);
    box-shadow: inset 0 0 10px rgba(144, 19, 254, .3), 0 4px 15px rgba(144, 19, 254, .2);
    font-size: .9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 79px
}

.thumb-down {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: red
}

.section-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
    font-family: Arial, sans-serif
}

.negative-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
    font-family: Arial, sans-serif
}

.no-icon {
    margin-right: 10px
}

.stop-text {
    font-size: 2rem;
    font-weight: 700;
    color: red;
    margin-bottom: 10px;
    font-family: Arial, sans-serif
}

.disadvantages-text {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
    font-family: Arial, sans-serif
}

.smartphone-mockup {
    display: flex;
    justify-content: center
}

.smartphone {
    width: 280px;
    height: 619px;
    position: relative
}

.phone-frame {
    width: 100%;
    height: 100%;
    border: 8px solid silver;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5)
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 30px;
    background: silver;
    border-radius: 0 0 20px 20px;
    z-index: 10
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    position: relative;
    padding: 40px 20px 20px;
    box-sizing: border-box
}

.profile-section {
    text-align: center;
    margin-bottom: 20px
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
    margin-bottom: 10px
}

.name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 5px 0;
    font-family: Arial, sans-serif
}

.subtitle {
    font-size: 1rem;
    color: #666;
    margin: 0 0 20px 0;
    font-family: Arial, sans-serif
}

.buttons-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center
}

.bio-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    width: 100%;
    max-width: 200px;
    font-family: Arial, sans-serif;
    text-align: center
}

.infographic-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(0, 0, 0, .8)
}

.highlight-purple {
    color: #9013fe;
    text-shadow: 0 0 10px #9013fe, 0 0 20px rgba(144, 19, 254, .8)
}

.pill-btn {
    background: linear-gradient(90deg, #9013fe, #e61a8d);
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 50px auto 100px;
    box-shadow: 0 5px 20px rgba(144, 19, 254, .5);
    cursor: pointer
}

.pill-btn2 {
    background: linear-gradient(90deg, #9013fe, #e61a8d);
    color: #fff;
    border: none;
    padding: 4px 2px;
    font-size: .9rem;
    font-weight: 700;
    border-radius: 50px;
    /* display: flex; */
    align-items: center;
    gap: 10px;
    /* margin: 50px auto 100px; */
    box-shadow: 0 5px 20px rgba(144, 19, 254, .5);
    cursor: pointer;
}

.steps-grid {
    display: grid;
    grid-template-columns: 250px 250px;
    grid-template-rows: 180px 180px;
    gap: 50px;
    position: relative;
    margin-bottom: 40px;
    justify-content: center
}

.step-box {
    background-color: #00112266;
    border: 2px solid #4a90e2;
    border-radius: 10px;
    padding: 10px 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-family: Arial, sans-serif
}

.step-overlay {
    position: absolute;
    top: -8%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(144, 19, 254, .8);
    border: 2px solid #9013fe;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 10px;
    text-align: center;
    z-index: 10;
    text-shadow: 0 0 4px rgba(0, 0, 0, .8), 0 0 8px rgba(0, 0, 0, .6), 0 0 12px rgba(0, 0, 0, .4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .6)
}

.step-icon {
    font-size: 2.5rem;
    margin: 17px 0
}

.step-text {
    color: #fff;
    text-align: center;
    margin: 0;
    line-height: 1.2
}

.arrows-container {
    position: absolute;
    top: -20px;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 275px;
    height: 215px;
    z-index: 15;
    pointer-events: none
}

.desktop-arrows {
    display: block
}

.mobile-arrows {
    display: none
}

.arrows {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 15
}

.arrows path {
    stroke-dasharray: 6, 3;
    animation: arrowFlow 2s infinite
}

.promo-section {
    background: url('./assets/background2.jpg') no-repeat center top/cover;
    color: #fff;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    box-shadow: 0 0 20px rgba(16, 24, 61, .5)
}

.promo-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 5%;
    width: 120px;
    height: 120px;
    background: url('./assets/logoig.png') center center/contain no-repeat;
    filter: blur(4px);
    opacity: .18;
    z-index: 1;
    pointer-events: none
}

.promo-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 5%;
    width: 120px;
    height: 120px;
    background: url('./assets/logoig.png') center center/contain no-repeat;
    filter: blur(4px);
    opacity: .18;
    z-index: 1;
    pointer-events: none
}

.promo-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 8%;
    width: 180px;
    height: 180px;
    background: url('./assets/logoig.png') center center/contain no-repeat;
    filter: blur(2px);
    opacity: .25;
    z-index: 1;
    pointer-events: none
}

.promo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px
}

.offer-card {
    background-color: #00112266;
    border-radius: 16px;
    padding: 30px;
    flex: 1;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    text-align: center;
    border: 2px solid #4a90e2
}

.satisfaction-badge {
    background-color: #fff;
    color: #000;
    padding: 8px 15px;
    border-radius: 8px;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 20px
}

.offer-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #42e6c4;
    margin-bottom: 20px
}

.offer-title span {
    color: #fff;
    font-size: 2rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, .8), 0 0 20px rgba(255, 255, 255, .6), 0 0 30px rgba(255, 255, 255, .4)
}

.feature-list {
    list-style-type: none;
    padding: 0;
    text-align: left;
    margin-bottom: 30px
}

.feature-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #fff
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #9f54f9
}

.old-price {
    text-decoration: line-through;
    color: #666;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
    position: relative;
}

.old-price::after {
    content: '';
    position: absolute;
    bottom: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    box-shadow: 0 0 5px rgba(255, 255, 255, .8);
}

.price-section .final {
    font-size: 3rem;
    font-weight: 700;
    /* color: #00ffff; */
    margin-bottom: 10px;    
    text-shadow:
        0 0 5px #00ffff,
        0 0 10px #00ffff,
        0 0 15px #00ffff,
        0 0 20px #00ffff,
        0 0 30px #00ffff,
        0 0 40px #00ffff;
    animation: neon-pulse 1s ease-in-out infinite alternate;
}

@keyframes neon-pulse {
    0% {
        text-shadow:
            0 0 5px #00ffff,
            0 0 10px #00ffff,
            0 0 15px #00ffff,
            0 0 20px #00ffff,
            0 0 30px #00ffff,
            0 0 40px #00ffff;
    }
    30% {
        text-shadow:
            0 0 5px #00ffff,
            0 0 10px #00ffff,
            0 0 15px #00ffff,
            0 0 20px #00ffff,
            0 0 30px #00ffff,
            0 0 40px #00ffff,
            0 0 50px #00ffff,
            0 0 60px #00ffff;
    }
}

.access-type {
    font-size: .8rem;
    color: #ccc;
    margin-bottom: 30px;
    display: block
}

.payment-logos {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px
}

.payment-logos img {
    width: 50px;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1)
}

.info-faq-column {
    flex: 1;
    max-width: 600px;
    padding-top: 40px
}

.proposal-text {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-top: 60px;
    margin-bottom: 30px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--darkreader-text-9013fe, #fff);
    text-shadow: var(--darkreader-background-9013fe, #6701c0) 0 0 10px, var(--darkreader-background-9013fecc, rgba(103, 1, 192, .8)) 0 0 20px
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-top: 60px;
    margin-bottom: 30px;
    text-align: center
}

.faq-item {
    margin-bottom: 20px
}

.faq-question {
    background-color: #9f54f9;
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    cursor: pointer
}

.faq-answer {
    margin-top: 10px;
    padding-left: 15px;
    padding: 15px;
    line-height: 1.5;
    color: #ccc;
    background: rgba(0, 0, 0, .5);
    border-radius: 8px;
    display: none
}

.faq-answer.active {
    display: block
}

.toggle-icon {
    margin-left: 10px;
    float: right;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff
}

footer {
    width: 100%;
    height: 120px;
    background-color: #000;
    color: #fff;
    font-size: 14px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px
}

footer img {
    height: 100px;
    vertical-align: middle;
    margin: 0
}

footer p {
    margin: 0
}

@media (max-width:768px) {
    .hero-section {
        background-attachment: fixed;
        padding: 80px 20px 100px 20px;
        min-height: 50vh
    }

    .bottom-bar-section {
        background-attachment: fixed
    }

    .additional-section {
        background-attachment: fixed
    }

    .promo-section {
        background-attachment: fixed
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        text-align: center;
        z-index: 10
    }

    .carousel-image {
        width: 200px;
        height: auto;
        margin: 0 10px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, .3);
    }

    .content-left {
        max-width: 100%;
        margin: 0;
        margin-bottom: 30px
    }

    .content-right {
        flex-grow: 1;
        display: flex;
        justify-content: center;
        min-height: 431px
    }

    .mockup-container {
        width: 600px
    }

    .phone {
        width: 160px;
        height: 332px;
        border-radius: 30px;
        border: 5px solid #333;
        box-shadow: 0 20px 50px rgba(0, 0, 0, .5), 0 0 10px rgba(255, 255, 255, .1)
    }

    .phone-center {
        width: 164px;
        height: 340px;
        border: 6px solid #333
    }

    .right-smartphone-column {
        margin-top: 101px;
        text-align: center;
        align-items: flex-end
    }

    .phone-left {
        left: 114px;
        z-index: 30;
        top: 50px;
        transform: rotate(-15deg)
    }

    .phone-right {
        right: 112px;
        z-index: 30;
        top: 50px;
        transform: rotate(10deg)
    }

    .bio-links-text {
        font-size: 1rem
    }

    h1 {
        font-size: 2.5rem
    }

    .canva-logo {
        height: 60px;
        margin-left: 5px
    }

    .slogan {
        font-size: 1.2rem;
        margin: 20px 0
    }

    .features-list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
        padding: 15px;
        margin-top: 20px;
        border-radius: 15px;
        justify-content: center;
        align-items: center;
        text-align: left
    }

    .features-list ul {
        min-width: 150px
    }

    .features-list li {
        font-size: .9em;
        margin-bottom: 10px
    }

    .btn-access {
        display: inline-block;
        padding: 12px 20px;
        font-size: 1rem;
        margin-top: 20px;
        position: static;
        transform: none;
        left: auto;
        bottom: auto
    }




    .btn-hero {
        position: unset;
        left: 44%;
        padding: 15px 46px;
        text-decoration: none;
        font-size: 1.2rem;
        font-weight: 700;
        border-radius: 40px;
        background: var(--color-gradient-button);
        color: var(--color-text-white);
        border: none;
        cursor: pointer;
        box-shadow: 0 0 20px rgba(144, 19, 254, .5);
    }

    .arrows-container {
        position: absolute;
        top: -8px;
        left: -7%;
        transform: translate(-50%, -50%);
        width: 275px;
        height: 215px;
        z-index: 15;
        pointer-events: none
    }

    .bottom-bar-content {
        background: linear-gradient(90deg, #6c32c4, #8b45d1, #a958e0);
        padding: 15px 10px;
        font-size: 1.2rem;
        max-width: 90%;
        margin: 0 auto;
        border-radius: 15px
    }

    .before-after-section h3 {
        font-size: 1.5rem;
        margin: 20px 0
    }

    .examples-container {
        display: flex;
        justify-content: center;
        align-items: start;
        margin: 20px 0;
        transform-origin: center;
        flex-wrap: wrap;
        gap: 40px;
        max-width: 1200px
    }

    .column-visuals {
        width: 320px;
        height: 320px
    }

    .phone-mockup {
        width: 180px;
        height: 320px;
        left: 10px;
        top: 0
    }

    .additional-container {
        width: 95%;
        max-width: 100%;
        margin: 0 auto;
        gap: 30px;
        flex-direction: column;
        justify-content: center;
        align-items: center
    }

    .columns-row {
        gap: 10px;
        justify-content: center
    }

    .additional-column {
        flex: auto;
        text-align: center
    }

    .columns-row p {
        font-size: 1rem;
        margin-bottom: 40px
    }

    .infographic-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
        margin-top: 30px
    }

    .pill-btn {
        padding: 10px 20px;
        font-size: .9rem;
        margin: 20px auto
    }

    .steps-grid {
        padding-top: 45px;
        display: grid;
        grid-template-columns: 150px 150px;
        grid-template-rows: 150px 150px;
        gap: 50px;
        position: relative;
        margin-bottom: 40px;
        justify-content: center
    }

    .step-box {
        padding: 10px 15px
    }

    .step-overlay {
        font-size: 12px;
        top: -20%
    }

    .step-icon {
        font-size: 1.8rem;
        margin: 0 0
    }

    .negative-title {
        font-size: 1.2rem
    }

    .stop-text {
        font-size: 1.5rem
    }

    .disadvantages-text {
        font-size: 1rem
    }

    .negatives-list {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 10px
    }

    .curved-arrow {
        width: 120px;
        height: 48px;
        margin: 20px 0 10px 0
    }

    .smartphone-mockup {
        display: flex;
        justify-content: center
    }

    .smartphone {
        width: 200px;
        height: 400px
    }

    .phone-frame {
        border: 4px solid silver;
        border-radius: 20px
    }

    .phone-frame::before {
        top: -4px;
        width: 150px;
        height: 25px;
        border-radius: 0 0 15px 15px
    }

    .phone-screen {
        padding: 30px 15px 15px
    }

    .profile-pic {
        width: 80px;
        height: 80px;
        margin-bottom: 8px
    }

    .name {
        font-size: 1.2rem
    }

    .subtitle {
        font-size: .9rem;
        margin: 0 0 15px 0
    }

    .buttons-section {
        gap: 8px
    }

    .bio-btn {
        padding: 8px 15px;
        font-size: .8rem;
        width: 90%;
        max-width: 180px
    }

    .phone-content-video {
        width: 100%;
        height: auto;
        aspect-ratio: 5/16;
        object-fit: cover;
        display: block
    }

    .offer-title span {
        font-size: 1.6rem
    }

    .info-faq-column {
        padding-top: 20px
    }

    .proposal-text {
        font-size: 1.4rem;
        margin-top: 20px;
        margin-bottom: 20px
    }

    .faq-title {
        font-size: 1.8rem;
        margin-top: 20px;
        margin-bottom: 20px
    }

    .cards-grid {
        grid-template-columns: 1fr;

    }

    .packs-title {
        font-size: 1.6em;
    }

    .badge {
        padding: 12px 24px;
        font-size: 0.95em;
    }

    .niches-container {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 20px;
    }

    .niche-item {
        font-size: 1em;
    }
    
    .card {
    margin-right: 20px;
    margin-left: 20px;
    justify-content: center;
    padding: 20px;
    margin-top: 30px;
    border-radius: 20px;
    background: rgba(0, 0, 0, .6);
    border: 2px solid #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, .3);
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
}
