:root {
    --bg-dark: #0b1121;
    --bg-card: #15203c;
    --bg-card-hover: #1e2d52;
    --accent-cyan: #00d0f1;
    --accent-cyan-hover: #00e0ff;
    --accent-orange: #ff6b00;
    --accent-orange-hover: #ff8533;
    --text-main: #ffffff;
    --text-muted: #a0aec0;
    --border-color: #2d3748;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography & Utils */
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title span {
    color: var(--accent-cyan);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.card {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border-color: var(--accent-cyan);
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--accent-orange);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    text-align: center;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.btn:hover {
    background-color: var(--accent-orange-hover);
    transform: scale(1.05);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 18px 30px;
    font-size: 1.2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 107, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}

/* NAVBAR */
.navbar {
    background-color: rgba(11, 17, 33, 0.6);
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
}

.logo img {
    height: 150px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-cyan);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}

/* HERO SECTION */
.hero {
    padding: 150px 0 100px 0;
    background-image: url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.08353307355115347.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-dark) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    background-color: rgba(0, 208, 241, 0.05);
    color: var(--text-main);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid var(--accent-cyan);
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero h1 span {
    color: var(--accent-cyan);
    text-shadow: 0 0 15px rgba(0, 208, 241, 0.4);
}

.hero .hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 90%;
}

.hero-features {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item i {
    color: var(--accent-cyan);
}

.hero .btn-lg {
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
    font-size: 1.3rem;
    padding: 20px 40px;
}

.hero-guarantee {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-guarantee i {
    color: var(--accent-cyan);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-mobile {
    display: none;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.mockup-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

@media (max-width: 992px) {
    .hero {
        background-image: url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.10251550277460952.png');
        background-position: center 35%;
    }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-image {
        display: none;
    }
    .hero-image-mobile {
        display: flex;
    }
    .hero-features {
        justify-content: center;
    }
    .hero-guarantee {
        justify-content: center;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .hero .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 11vw;
    }
}

/* ACHIEVEMENTS */
.achievements {
    padding: 100px 0;
    background-color: #f8fafc;
    background-image: url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.00647663316191982.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.achievements .section-title {
    color: #0f172a;
    margin-bottom: 20px;
}

.title-decorator {
    width: 60px;
    height: 3px;
    background-color: var(--accent-cyan);
    margin: 0 auto 50px auto;
    border-radius: 2px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.achievement-card {
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 208, 241, 0.2);
}

.achievement-card h3 {
    color: #0f172a;
    font-size: 1.2rem;
    margin-top: 10px;
}

.card-decorator {
    width: 30px;
    height: 2px;
    background-color: var(--accent-cyan);
    margin: 15px auto;
    border-radius: 2px;
}

.achievement-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 208, 241, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
}

.icon-circle i {
    font-size: 32px;
    color: var(--accent-cyan);
}

@media (max-width: 992px) {
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .achievements-grid {
        grid-template-columns: 1fr;
    }
}

/* MODULES */
.modules {
    padding: 100px 0;
    background-image: url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.9954070250633368.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-top: none;
    position: relative;
}

.modules .section-title {
    color: white;
}

.module-title-decorator {
    width: 8px;
    height: 8px;
    background-color: var(--accent-cyan);
    margin: 15px auto 50px auto;
    border-radius: 50%;
    box-shadow: 0 0 15px 5px rgba(0, 208, 241, 0.5);
    position: relative;
}

.module-title-decorator::before, .module-title-decorator::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 208, 241, 1) 0%, transparent 100%);
}

.module-title-decorator::before {
    right: 15px;
    background: linear-gradient(270deg, rgba(0, 208, 241, 1) 0%, transparent 100%);
}

.module-title-decorator::after {
    left: 15px;
}

.modules-grid {
    display: flex;
    gap: 30px;
}

.modules-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.module-item {
    display: flex;
    align-items: center;
    background-color: rgba(6, 15, 34, 0.8);
    border: 1px solid rgba(0, 208, 241, 0.3);
    border-radius: 8px;
    padding: 15px 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.module-item:hover {
    background-color: rgba(6, 15, 34, 0.95);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 208, 241, 0.2);
}

.module-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-cyan);
    margin-right: 25px;
    min-width: 45px;
}

.module-text {
    flex: 1;
}

.module-text h4 {
    font-size: 0.9rem;
    margin-bottom: 2px;
    color: var(--accent-cyan);
}

.module-text p {
    font-size: 0.85rem;
    color: white;
    line-height: 1.4;
}

.module-icon {
    font-size: 1.8rem;
    color: var(--accent-cyan);
    margin-left: 15px;
}

@media (max-width: 768px) {
    .modules {
        background-image: url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.10251550277460952.png');
        background-position: center top;
    }
    .modules-grid {
        flex-direction: column;
    }
}

/* PROJECTS */
.projects {
    padding: 100px 0;
    background-color: #f8fafc;
    background-image: url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.00647663316191982.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.projects .container {
    max-width: 1280px;
}

.projects .section-title {
    color: #0f172a;
    font-size: 38px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.projects-decorator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    gap: 8px;
}

.projects-decorator .line {
    height: 2px;
    width: 40px;
    background-color: var(--accent-cyan);
    position: relative;
}

.projects-decorator .line::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: var(--accent-cyan);
    border-radius: 50%;
    top: -1px;
}

.projects-decorator .line:first-child::before { left: 0; }
.projects-decorator .line:last-child::before { right: 0; }

.projects-decorator .hexagon {
    width: 20px;
    height: 22px;
    background-color: var(--accent-cyan);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.projects-decorator .hex-inner {
    width: 16px;
    height: 18px;
    background-color: #f8fafc;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.project-card {
    background: white;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: transform 0.3s;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    min-height: 350px;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 208, 241, 0.15);
}

.project-img {
    height: 180px;
    width: 100%;
    border-radius: 18px 18px 0 0;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.05);
}

.project-content {
    background: white;
    padding: 30px 15px 25px 15px;
    border-radius: 0 0 18px 18px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.project-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-cyan);
    color: white;
    padding: 4px 18px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 208, 241, 0.3);
    z-index: 2;
}

.project-content p {
    color: #0f172a;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 15px;
}

.project-card-line {
    width: 30px;
    height: 3px;
    background-color: var(--accent-cyan);
    margin-top: auto;
    border-radius: 2px;
}

@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .projects {
        padding: 60px 0;
        background-image: url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.09341567199075829.png');
        background-position: center top;
    }
    .projects .section-title {
        font-size: 30px;
    }
    .projects-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 26px;
    }
    .project-card {
        width: 100%;
        max-width: 370px;
    }
    .project-img {
        height: 240px;
    }
    .project-content p {
        font-size: 1.05rem; /* ~17px */
    }
    
    .achievements {
        background-image: url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.09341567199075829.png');
        background-position: center top;
    }
}

/* BONUS */
.bonus {
    padding: 100px 0;
    background-color: var(--bg-dark);
    background-image: url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.9954070250633368.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.bonus .section-title {
    color: white;
}

.bonus .section-subtitle {
    color: #a0aec0;
    margin-bottom: 50px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.bonus-card {
    background-color: rgba(6, 15, 34, 0.6);
    border: 1px solid rgba(0, 208, 241, 0.4);
    border-radius: 12px;
    text-align: center;
    position: relative;
    padding: 40px 20px 25px 20px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 208, 241, 0.2);
    border-color: var(--accent-cyan);
}

.bonus-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-cyan);
    color: var(--bg-dark);
    font-weight: 800;
    padding: 6px 24px;
    border-radius: 20px;
    font-size: 0.85rem;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 208, 241, 0.3);
}

.bonus-img {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin: 0 auto 25px auto;
    object-fit: contain;
    display: block;
}

.bonus-card h3 {
    margin-bottom: 15px;
    font-size: 1.15rem;
    color: white;
    line-height: 1.3;
}

.bonus-card p {
    color: #cbd5e0;
    font-size: 0.9rem;
    margin-bottom: 25px;
    line-height: 1.5;
    flex: 1;
}

.bonus-value {
    background-color: rgba(255, 107, 0, 0.05);
    border: 1px solid rgba(255, 107, 0, 0.3);
    color: var(--accent-orange);
    padding: 12px 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@media (max-width: 992px) {
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bonus {
        background-image: url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.10251550277460952.png');
        background-position: center top;
        padding: 60px 0;
    }
    .bonus-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* PRICING */
.pricing {
    padding: 100px 0;
    background-color: #0b1121;
    background-image: url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.02707430907114472.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.pricing-main-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 40px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.pricing-tech-box {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pricing-list-container {
    background-color: rgba(6, 15, 34, 0.7);
    border: 1px solid rgba(0, 208, 241, 0.4);
    border-radius: 12px;
    padding: 30px 40px;
    box-shadow: inset 0 0 20px rgba(0, 208, 241, 0.1), 0 10px 30px rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
}

.tech-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
}

.tech-list li:last-child {
    border-bottom: none;
}

.tech-item-name {
    font-size: 1.15rem;
    color: #f8fafc;
    display: flex;
    align-items: center;
    gap: 15px;
}

.tech-item-name i {
    color: var(--accent-cyan);
    font-size: 1.4rem;
    width: 24px;
    text-align: center;
}

.tech-item-price {
    font-size: 1.25rem;
    color: #a0aec0;
    font-weight: 700;
    position: relative;
    text-decoration: line-through;
    text-decoration-color: #e53e3e;
    text-decoration-thickness: 2px;
}

.tech-currency {
    font-size: 0.9rem;
    margin-right: 2px;
}

.tech-total-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding-top: 25px;
    border-top: 2px solid rgba(0, 208, 241, 0.2);
}

.tech-total-label {
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tech-total-label i {
    color: var(--accent-cyan);
}

.tech-total-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #a0aec0;
    text-decoration: line-through;
    text-decoration-color: #e53e3e;
    text-decoration-thickness: 3px;
}

.tech-total-badge {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #cbd5e0;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.pricing-offer-container {
    background-color: rgba(6, 15, 34, 0.85);
    border: 2px solid var(--accent-cyan);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: inset 0 0 30px rgba(0, 208, 241, 0.2), 0 15px 40px rgba(0,0,0,0.6);
    position: relative;
}

.offer-today-label {
    color: var(--accent-cyan);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.offer-price-box {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
}

.offer-price-currency {
    font-size: 2.8rem;
    font-weight: 800;
    margin-top: 15px;
    margin-right: 8px;
}

.offer-price-amount {
    font-size: 7rem;
    font-weight: 900;
    line-height: 1;
}

.offer-installments {
    font-size: 1.3rem;
    color: #cbd5e0;
    margin-bottom: 35px;
    font-weight: 600;
    letter-spacing: 1px;
}

.offer-installments span {
    color: var(--accent-cyan);
    font-weight: 800;
}

.btn-tech-orange {
    display: inline-block;
    background: linear-gradient(to right, #ff6b00, #ff8c00);
    color: white;
    font-size: 1.6rem;
    font-weight: 900;
    padding: 18px 45px;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4), inset 0 -3px 0 rgba(0,0,0,0.2);
    transition: all 0.3s;
    border: 2px solid #ffa500;
    letter-spacing: 1px;
}

.btn-tech-orange:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.6), inset 0 -3px 0 rgba(0,0,0,0.2);
    color: white;
}

.tech-guarantees {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.tech-guarantee-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tech-g-icon {
    width: 50px;
    height: 55px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background-color: rgba(0, 208, 241, 0.05);
    border: 2px solid var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-size: 1.5rem;
}

.tech-g-text {
    font-size: 0.9rem;
    color: #cbd5e0;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.3;
    text-align: left;
}

@media (max-width: 768px) {
    .pricing {
        background-image: url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.7912251949259568.png');
        padding: 60px 0;
    }
    
    .pricing-main-title {
        font-size: 1.8rem;
    }

    .pricing-list-container {
        padding: 20px;
    }

    .tech-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .tech-total-row {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .pricing-offer-container {
        padding: 30px 15px;
    }

    .offer-price-currency {
        font-size: 2rem;
    }

    .offer-price-amount {
        font-size: 4.5rem;
    }
    
    .offer-today-label {
        font-size: 1.2rem;
    }

    .btn-tech-orange {
        font-size: 1.2rem;
        padding: 15px 15px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    
    .tech-guarantees {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
}

/* HOW IT WORKS */
.how-it-works {
    padding: 80px 0;
    background-color: white;
    color: var(--bg-dark);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    text-align: center;
    flex: 1;
    position: relative;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: white;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
    font-size: 30px;
    color: var(--bg-dark);
    position: relative;
    z-index: 2;
}

.step-number {
    position: absolute;
    top: -10px;
    left: calc(50% - 40px);
    background-color: var(--accent-cyan);
    color: var(--bg-dark);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 0.8rem;
    z-index: 3;
}

.step-arrow {
    color: #cbd5e0;
    font-size: 24px;
}

.step-text h4 {
    margin-bottom: 10px;
}

.step-text p {
    font-size: 0.9rem;
    color: #718096;
}

@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        gap: 30px;
    }
    .step-arrow {
        transform: rotate(90deg);
    }
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    background-color: var(--bg-card);
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0 auto;
}

.faq-item {
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255,255,255,0.02);
}

.faq-icon {
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent-cyan);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
    max-height: 200px; /* Adjust if content is longer */
}

/* FOOTER */
.footer-cta {
    background: linear-gradient(to bottom, #0a101d, #05080e);
    padding: 80px 0 20px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-content {
    max-width: 600px;
}

.footer-robot-img {
    position: absolute;
    bottom: -20px;
    opacity: 0.1;
    z-index: 1;
}

.left-robot {
    left: 10%;
}

.right-robot {
    right: 10%;
}

.footer-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.footer-cta h2 span {
    color: var(--accent-cyan);
}

.footer-cta p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.footer-guarantee {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-guarantee i {
    color: var(--accent-cyan);
}

.footer-bottom {
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    color: var(--text-muted);
    font-size: 0.8rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .footer-robot-img {
        display: none;
    }
}
