/* Font Face Declaration */
@font-face {
    font-family: 'Neuropol';
    src: url('fonts/neuropol.woff2') format('woff2'),
         url('fonts/neuropol.woff') format('woff'),
         url('fonts/neuropol.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'kallisto-lined';
    src: url('Kallisto Lined.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* CSS Reset & General Styling */
:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --accent-color: #E42A78; /* Vibrant Magenta */
    --font-heading: 'neuropol-x', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

body {
    background: #000;
    color: var(--text-color);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-size: 18px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 60px;
    padding-bottom: 0;
    overflow-x: hidden;
    font-weight: 400;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--text-color);
    margin: 0;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--text-color);
}

mark {
    background-color: var(--accent-color);
    color: rgb(0, 0, 0);
    padding: 2px 4px;
    border-radius: 3px;
}

main {
    padding: 0 50px;
    position: relative;
    z-index: 3;
    background: var(--bg-color);
}

/* Header */
header {
    position: absolute;
    top: 0;
    right: 0;
    padding: 40px 50px;
    z-index: 1000;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

header nav a {
    color: var(--text-color);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    position: relative;
    gap: 20px;
    margin: 0;
    padding: 0 20px 80px 20px;
    overflow: hidden;
}

.hero-image {
    flex: 1;
    max-width: 50%;
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.portrait {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    border-radius: 0;
    opacity: 1;
    position: fixed;
    top: 0;
    right: 0;
    max-width: 50%;
    clip-path: inset(0 0 0 0);
    border: none;
}

.hero-content {
    flex: 1;
    max-width: 50%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero h1 {
    font-size: clamp(2.5rem, 12vw, 11rem);
    font-weight: 400;
    position: relative;
    line-height: 1;
    text-transform: italics;
    letter-spacing: 2px;
    font-family: 'neuropol-x', sans-serif;
    width: 100%;
}

.hero .line-2 {
    color: var(--text-color);
    position: relative;
    display: block;
    font-family: 'kallisto-lined';
    letter-spacing: 10px;
    width: 100%;
    font-size: clamp(2.5rem, 8vw, 7rem);
}

/* Hero Subtitle */
.hero-subtitle-desktop {
    display: block;
    border-left: 3px solid var(--accent-color);
    padding-left: 20px;
    margin-top: 30px;
}

.hero-subtitle-desktop h2 {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 2px;
    margin: 5px 0;
}

.hero-buttons-desktop, .hero-buttons-mobile {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.hero-buttons-mobile {
    display: none;
}

.hero-button {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid var(--accent-color);
    border-radius: 0;
    color: var(--text-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease, color 0.3s ease;
    font-size: 0.9rem;
}

.hero-button:hover {
    background: var(--accent-color);
    color: white;
}

.hero-subtitle-mobile {
    display: none;
}

@media (max-width: 768px) {
    body { 
        padding-top: 40px;
        padding-bottom: 40px;
        font-size: 16px;
        line-height: 1.6;
    }

    main { padding: 0 20px; }
    
    .hero {
        display: flex;
        flex-direction: column;
        padding: 0 20px 35px 20px;
        text-align: center;
        min-height: auto;
        gap: 35px;
        overflow: visible;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 35px;
        overflow: visible;
        order: 2;
    }

    .hero h1 {
        text-align: center;
        margin: 0 auto;
        width: 100%;
        order: 1;
    }

    .hero-image {
        max-width: 100vw;
        height: auto;
        margin: 0;
        position: relative;
        display: block;
        padding: 0;
        overflow: visible;
        order: 1;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        max-width: 100vw;
    }

    .portrait {
        position: relative;
        width: 100%;
        height: auto;
        border-radius: 0;
        object-fit: contain;
        display: block;
        margin: 0;
        clip-path: none;
    }

    .hero-subtitle-desktop {
        display: none;
    }

    .hero-subtitle-mobile {
        display: block;
        border-left: 3px solid var(--accent-color);
        padding-left: 15px;
        margin: 0 auto;
        text-align: left;
        max-width: 300px;
        width: 100%;
        order: 3;
    }

    .hero-buttons-mobile {
        display: flex;
        justify-content: center;
        margin: 0 auto;
        order: 4;
    }

    .hero-buttons-desktop {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        gap: 35px;
        padding: 0 20px 35px 20px;
    }
    
    .hero-content {
        gap: 30px;
    }

    .hero-image {
        width: 100vw;
        height: auto;
    }

    .portrait {
        width: 100%;
        height: auto;
    }
}

/* Hero Offer Badge */
.hero-offer {
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    justify-content: flex-start;
}

.offer-badge {
    background: none;
    color: var(--text-color);
    padding: 0;
    border-radius: 0;
    display: inline-block;
    font-family: var(--font-body);
    font-weight: normal;
    font-size: 1.8rem;
    border: none;
    white-space: nowrap;
    cursor: pointer;
}

.offer-badge:hover {
    color: var(--accent-color);
}

.offer-badge:hover .offer-text {
    color: var(--accent-color);
}

.offer-badge:hover mark {
    color: white;
}

.offer-badge:hover .offer-emoji {
    color: var(--accent-color);
}

.offer-icon {
    font-size: 1.8rem;
}

.offer-text {
    font-size: 1.8rem;
    font-weight: normal;
    color: var(--text-color);
}

.offer-emoji {
    font-size: 1.8rem;
    color: var(--text-color);
    text-decoration: none;
    margin-left: 8px;
}

.offer-price {
    background: rgba(255,255,255,0.15);
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: bold;
}

.image-overlay {
    background: transparent;
}

/* Launch Offer Badge */
.launch-offer-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    margin: 0;
    text-align: center;
}

.launch-offer-badge mark {
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: pulsate 2s ease-in-out infinite;
}

@keyframes pulsate {
    0% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% { 
        transform: scale(1);
        opacity: 1;
    }
}

/* Cafecito Visual Concept Section */
.cafecito-concept {
    padding: 15px 0 40px 0;
    margin: 0 -50px;
    background: #0a0a0a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    text-align: center;
    gap: 10px;
    z-index: 10;
}

.cafecito-concept h2 {
    font-size: clamp(1.2rem, 5vw, 2rem);
    color: var(--accent-color);
    margin: 0 0 40px 0;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cafecito-concept p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cafecito-concept.final-cta {
    padding-top: 40px;
}

/* Ticker */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background-color: var(--accent-color);
    color: rgb(255, 255, 255);
    padding: 15px 0;
    font-family: var(--font-heading);
    font-weight: bold;
    letter-spacing: 2px;
    margin: 80px 0;
    z-index: 1000;
    text-transform: uppercase;
}

/* Fixed Tickers */
.ticker-top {
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    padding: 10px 0;
    z-index: 1001;
}

.ticker-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    margin: 0;
    padding: 10px 0;
    z-index: 1001;
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 40s linear infinite;
    font-size: 1.2rem;
    will-change: transform;
    width: max-content;
}

.ticker span { 
    padding: 0 20px; 
    display: inline-block;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Concept Visual Elements */
.concept-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    width: 100%;
    max-width: 1200px;
}

.concept-item, .circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    text-align: center;
    min-height: 200px;
    background: transparent;
}

.concept-visual .emoji { 
    font-size: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    height: 4rem;
    width: 4rem;
    margin-bottom: 10px;
}

.equals {
    font-size: 5rem;
    font-family: var(--font-heading);
    color: var(--accent-color);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin-top: 80px;
    align-self: flex-start;
}

.concept-text {
    font-size: 1.4rem;
    font-family: var(--font-body);
    font-weight: normal;
    line-height: 0.9;
    text-align: center;
    color: var(--text-color);
}

.circle:nth-child(3) .concept-text {
    line-height: 1.4;
}

.concept-text small {
    opacity: 0.6;
}

/* Content Sections */
.content-section {
    padding: 50px 0;
    margin: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-sizing: border-box;
    background: #0a0a0a;
    position: relative;
    z-index: 10;
}

.content-section > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 50px;
    padding-right: 50px;
}

.content-section:first-of-type {
    padding-top: 80px;
}

.content-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--accent-color);
    margin-bottom: 40px;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.content-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.1rem;
}

.content-text p {
    margin-bottom: 20px;
    color: var(--text-color);
}

.content-text strong {
    color: var(--accent-color);
    font-weight: 700;
}

.services-list, .tasks-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.services-list li, .tasks-list li {
    padding: 8px 0;
    font-size: 1.1rem;
    line-height: 1.5;
}

.services-list li {
    border-left: 3px solid var(--accent-color);
    padding-left: 15px;
    margin-bottom: 8px;
}

.tasks-list li {
    padding-left: 20px;
    position: relative;
}

.tasks-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    padding: 12px 0 12px 40px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.5;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 12px;
    background: var(--accent-color);
    color: var(--bg-color);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.highlight {
    background: rgba(228, 42, 120, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 15px 20px;
    margin: 25px 0;
    font-weight: 500;
}

.inline-link {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: 500;
}

.inline-link:hover {
    color: var(--text-color);
}

/* FAQ Section */
.faq-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Desktop services layout - only apply on larger screens */
@media (min-width: 769px) {
    .hero-subtitle-desktop {
        display: block;
    }
    
    .hero-subtitle-mobile {
        display: none;
    }
    
    .services-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 30px;
        position: relative;
        min-height: 500px;
    }
    
    .service-bubble {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .service-bubble:nth-child(1) { width: 250px; height: 250px; }
    .service-bubble:nth-child(2) { width: 180px; height: 180px; }
    .service-bubble:nth-child(3) { width: 220px; height: 220px; }
    .service-bubble:nth-child(4) { width: 200px; height: 200px; }
    .service-bubble:nth-child(5) { width: 150px; height: 150px; }
    .service-bubble:nth-child(6) { width: 190px; height: 190px; }
    .service-bubble:nth-child(7) { width: 160px; height: 160px; }

    .clients-section > * {
        width: 47vw;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        padding-right: 40px;
    }

    .clients-grid {
        margin-left: auto;
        margin-right: auto;
    }
}

.service-bubble:hover {
    background: white;
    color: var(--accent-color);
}

/* Experience Section */
.experience {
    padding: 100px 50px;
    text-align: center;
}

.experience h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 40px;
}

.experience-logos p {
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 40px;
    align-items: center;
    max-width: 800px;
    margin: 40px auto;
}

.logo-grid img {
    max-width: 100%;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logo-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* CTA Section */
.cta {
    padding: 150px 20px;
    text-align: center;
    background-color: #000000;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.available-now {
    position: relative;
    margin-bottom: 60px;
    overflow: hidden;
    width: 100%;
}

.available-now p {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 15vw, 15rem);
    font-weight: 800;
    line-height: 0.8;
    margin: 0;
    color: transparent;
    -webkit-text-stroke: 3px var(--text-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.available-now p:nth-child(2) {
    color: var(--accent-color);
    -webkit-text-stroke: 3px var(--accent-color);
    transform: translateX(20px);
}

.cta .button {
    background-color: var(--accent-color);
    color: white;
    padding: 20px 40px;
    border-radius: 0;
    font-weight: bold;
    font-size: 1.4rem;
    display: inline-block;
    border: 2px solid var(--accent-color);
}

.cta .button:hover {
    background-color: white;
    color: var(--accent-color);
}

/* Footer */
footer {
    text-align: center;
    padding: 80px 50px;
    background: #000;
    position: relative;
    z-index: 20;
}

footer p {
    font-weight: 600;
    margin-bottom: 20px;
}

footer .social-links a {
    margin: 0 15px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Responsive Design */

/* Tablet styles */
@media (max-width: 1024px) {
    main { padding: 0 30px; }
    
    .hero {
        gap: 30px;
        padding: 30px 0 20px 0;
    }
    
    .hero-image {
        flex: 0 0 280px;
        height: 350px;
    }
    
    .concept-visual {
        gap: 50px;
    }
    
    .services {
        padding: 80px 30px;
    }
    
    .experience {
        padding: 80px 30px;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    body { 
        padding-top: 40px;
        padding-bottom: 40px;
        font-size: 16px;
        line-height: 1.6;
    }

    main { padding: 0 20px; }
    
    .hero {
        display: flex;
        flex-direction: column;
        padding: 0 20px 35px 20px;
        text-align: center;
        min-height: auto;
        gap: 35px;
        overflow: visible;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 35px;
        overflow: visible;
        order: 2;
    }

    .hero h1 {
        text-align: center;
        margin: 0 auto;
        width: 100%;
        order: 1;
    }

    .hero-image {
        max-width: 100vw;
        height: auto;
        margin: 0;
        position: relative;
        display: block;
        padding: 0;
        overflow: visible;
        order: 1;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        max-width: 100vw;
    }

    .portrait {
        position: relative;
        width: 100%;
        height: auto;
        border-radius: 0;
        object-fit: contain;
        display: block;
        margin: 0;
        clip-path: none;
    }

    .hero-subtitle-desktop {
        display: none;
    }

    .hero-subtitle-mobile {
        display: block;
        border-left: 3px solid var(--accent-color);
        padding-left: 15px;
        margin: 0 auto;
        text-align: left;
        max-width: 300px;
        width: 100%;
        order: 3;
    }

    .hero-buttons-mobile {
        display: flex;
        justify-content: center;
        margin: 0 auto;
        order: 4;
    }

    .hero-buttons-desktop {
        display: none;
    }

    .hero-button {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .hero-subtitle-mobile h2 {
        font-size: clamp(1rem, 2.5vw, 1.5rem);
        font-family: var(--font-body);
        font-weight: 400;
        letter-spacing: 2px;
        margin: 5px 0;
    }  

    
    .hero-image::after {
        content: "";
        display: none;
    }
    
    .hero-offer {
        position: static;
        margin-top: 0px;
        margin-bottom: 5px;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .offer-badge {
        padding: 0;
        font-size: 1.2rem;
        color: var(--text-color);
        white-space: nowrap;
        cursor: pointer;
    }
    
    .offer-text {
        font-size: 1.2rem;
        color: var(--text-color);
        text-decoration: none;
    }
    
    .offer-badge:hover .offer-text {
        color: var(--accent-color);
    }

    .offer-badge mark {
        background-color: transparent;
        color: white;
        padding: 0;
    }

    .offer-emoji {
        text-decoration: none;
    }

    .cafecito-concept {
        padding: 25px 0 20px 0;
        gap: 5px;
        margin: 0;
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .launch-offer-badge {
        padding: 5px 0;
    }
    
    .cafecito-concept h2 {
        font-size: clamp(1.2rem, 5vw, 2rem);
        padding: 0 20px;
    }
    
    .cafecito-concept p {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 20px;
        max-width: 300px;
        margin: 0 auto;
        margin-top: -25px;
    }
    
    .concept-visual {
        flex-direction: row;
        gap: 25px;
        align-items: flex-start;
        justify-content: center;
        flex-wrap: nowrap;
        padding-top: 25px;
    }
    
    .circle {
        gap: 10px;
        flex: 0 1 auto;
        min-width: 0;
    }
    
    .concept-visual .emoji {
        font-size: 4.5rem;
        height: 4.5rem;
        width: 4.5rem;
    }

    .concept-text {
        font-size: 1.3rem;
        line-height: 0.9;
        font-weight: 500;
    }

    .concept-text small {
        font-size: 1.1rem;
        opacity: 0.8;
    }

    .circle:nth-child(3) .concept-text {
        line-height: 1.6;
    }
    
    .equals {
        font-size: 4.5rem;
        transform: none;
        margin-top: 2.25rem;
        align-self: flex-start;
        flex-shrink: 0;
    }

    .content-section {
        padding: 40px 0;
    }
    
    .content-section > * {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .content-section h2 {
        margin-bottom: 30px;
    }
    
    .content-text {
        font-size: 1rem;
    }
    
    .services-list li, .tasks-list li {
        font-size: 1rem;
        padding: 6px 0;
    }
    
    .services-list li {
        padding-left: 12px;
    }
    
    .tasks-list li {
        padding-left: 15px;
    }
    
    .steps-list li {
        padding: 10px 0 10px 35px;
        font-size: 1rem;
    }
    
    .steps-list li::before {
        width: 22px;
        height: 22px;
        top: 10px;
        font-size: 0.8rem;
    }
    
    .highlight {
        padding: 12px 15px;
        margin: 20px 0;
        font-size: 0.95rem;
    }
    
    .faq-item {
        margin-bottom: 25px;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }

    .cta { 
        padding: 80px 20px;
    }
    
    .available-now p { 
        font-size: clamp(2.5rem, 12vw, 8rem);
        -webkit-text-stroke: 2px var(--text-color);
    }
    .available-now p:nth-child(2) { 
        -webkit-text-stroke: 2px var(--accent-color);
    }
    
    .cta .button {
        padding: 15px 25px;
        font-size: 1.2rem;
    }

    .ticker-wrap {
        margin: 60px 0;
    }
    
    .ticker-top {
        margin: 0;
    }
    
    .ticker-bottom {
        margin: 0;
    }
    
    .ticker {
        font-size: 1rem;
    }

    .portrait {
        position: relative;
        max-width: 100%;
        height: auto;
        clip-path: none;
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    .hero-image {
        width: 100vw;
        height: auto;
    }
    
    .portrait {
        width: 100%;
        height: auto;
    }
    
    .cafecito-concept p {
        padding: 0 20px;
    }
    
    .circle {
        gap: 10px;
    }
    
    .concept-visual .emoji {
        font-size: 3.8rem;
        height: 3.8rem;
        width: 3.8rem;
    }
    
    .concept-text {
        font-size: 1.1rem;
        line-height: 1.1;
        font-weight: 500;
    }

    .circle:nth-child(3) .concept-text {
        line-height: 1.4;
    }
    
    .equals {
        font-size: 3.8rem;
        margin-top: 1.9rem;
    }
    
    .available-now p {
        font-size: clamp(2rem, 10vw, 6rem);
    }
} 

/* CTA Title Styling */
.cta-title {
    text-align: center;
}

/* Only the emoji title after the button */
.content-section .cta-title:last-child {
    font-size: 4rem;
}

/* Logo Grid for Clients */
.content-text .logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.client-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 60px;
    opacity: 1;
}

/* Remove hover effects */
.client-logo:hover {
    transform: none;
}

/* Cafecito Button Styling */
.cafecito-button {
    transform: scale(1.5);
    transition: transform 0.3s ease;
    display: block;
    margin: 20px auto;
    text-align: center;
}

.cafecito-button:hover {
    transform: scale(1.6);
}

.cafecito-button:hover img {
    filter: hue-rotate(340deg) saturate(1.4) brightness(1.2);
}

.cafecito-button img {
    max-width: none;
    height: auto;
    filter: hue-rotate(320deg) saturate(1.2) brightness(1.1);
    transition: filter 0.3s ease;
}

/* Original size Cafecito button */
.cafecito-button-original {
    display: block;
    margin: 20px auto;
    text-align: center;
}

.cafecito-button-original:hover img {
    filter: hue-rotate(340deg) saturate(1.4) brightness(1.2);
}

/* Cafecito.app button styling */
a[href*="cafecito.app"] {
    display: inline-block;
    margin: 20px 0;
    transition: filter 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(228, 42, 120, 0.3));
}

a[href*="cafecito.app"]:hover {
    filter: drop-shadow(0 0 15px rgba(228, 42, 120, 0.5));
}

a[href*="cafecito.app"] img {
    max-width: 240px;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    a[href*="cafecito.app"] img {
        max-width: 200px;
    }
}

@media (min-width: 1025px) {
  .launch-offer-badge {
    font-size: 1.4rem;
    padding: 10px 0;
  }
  .launch-offer-badge mark {
    font-size: 1.2rem;
    padding: 6px 18px;
    border-radius: 5px;
    letter-spacing: 2px;
    font-weight: bold;
  }
}

@media (max-width: 768px) {
    .content-text .logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .client-logo {
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .content-text .logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .client-logo {
        max-width: 100px;
    }
}

/* --- Services Section --- */
.services-section {
    width: 100vw;
    max-width: none;
    margin: 0 calc(50% - 50vw) 0 calc(50% - 50vw);
    background: #181818;
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

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

.services-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-color);
    margin: 0 0 40px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease;
}

.service-card:hover {
    border-color: rgba(228, 42, 120, 0.3);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--accent-color);
    margin: 0 0 15px 0;
    letter-spacing: 1px;
}

.service-card p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 15px;
}

.service-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
}

/* Remove old unused styles */
.no-list, .yes-list, .target-list, .process-list,
.process-step, .bonus-section {
    display: none;
}

/* --- CTA Button --- */
.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 16px 32px;
    border-radius: 0;
    text-decoration: none;
    margin-top: 20px;
    transition: background 0.3s ease, color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #fff;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .service-item {
        margin-bottom: 20px;
        padding: 15px 0;
    }
    
    .service-item h3 {
        font-size: 1.2rem;
    }
    
    .service-item p {
        font-size: 1rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 12px 24px;
    }
}

/* Service Items Container */
.content-section .service-item {
    max-width: 800px;
    margin: 0 auto 30px auto;
}

/* Target List Container */
.content-section .target-list {
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .content-section {
        padding: 40px 0;
    }
    
    .content-section > * {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .content-section h2 {
        margin-bottom: 30px;
    }
    
    .content-text {
        font-size: 1rem;
    }
}

/* --- Clients Section --- */
.clients-section {
    padding: 80px 0;
    margin: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.02);
    position: static;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.clients-section > * {
    width: 47vw;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-right: 40px;
}

.clients-section h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-color);
    margin-bottom: 40px;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-left: 4px solid var(--accent-color);
    padding-left: 15px;
}

.clients-grid {
    display: block;
    max-width: 800px;
    margin: 0;
}

.clients-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px 8px;
    grid-column: 1;
    padding: 0 10px;
}

.client-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.client-name {
    display: none;
    font-size: 12px;
    color: var(--accent-color);
    opacity: 0.9;
    margin-top: 8px;
    text-align: center;
    font-family: var(--font-body);
    font-weight: 400;
}

.clients-grid .client-logo {
    max-width: 120px;
    max-height: 75px;
    width: auto;
    height: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease, filter 0.3s ease;
    filter: grayscale(100%) brightness(1.2);
    justify-self: center;
}

.clients-grid .client-logo:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
}

@media (max-width: 1024px) {
    .clients-logos {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 8px 6px;
        padding: 0 5px;
    }
    .clients-grid .client-logo {
        max-width: 100px;
        max-height: 65px;
    }
}

@media (max-width: 768px) {
    .clients-section {
        padding: 60px 20px;
    }
    .clients-section > * {
        width: 100%;
        max-width: none;
        padding-left: 0;
        padding-right: 0;
    }
    .clients-section h2 {
        margin-bottom: 30px;
        font-size: 1.5rem;
    }
    .clients-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin: 0;
    }
    .clients-logos {
        grid-column: 1;
        grid-template-columns: 1fr 1fr;
        gap: 45px 8vw;
        padding: 0;
        justify-items: center;
    }
    .clients-grid .client-logo {
        max-width: 120px;
        max-height: 75px;
    }
    .client-name {
        display: block;
        font-size: 11px;
        margin-top: 6px;
    }
}

@media (max-width: 480px) {
    .clients-logos {
        grid-template-columns: 1fr 1fr;
        gap: 35px 6vw;
        justify-items: center;
    }
    
    .clients-grid .client-logo {
        max-width: 80px;
        max-height: 50px;
    }
    
    .client-name {
        font-size: 10px;
        margin-top: 5px;
    }
}

#contacto {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: url('culi2.gif');
    background-repeat: repeat;
    background-size: auto;
    padding: 0;
}

#contacto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.25);
    z-index: 1;
    pointer-events: none;
}

.contact-button {
    position: relative;
    z-index: 2;
}

.contact-button {
    display: inline-block;
    padding: 24px 48px;
    border: 2px solid var(--accent-color);
    border-radius: 0;
    color: var(--text-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 1.8rem;
    text-decoration: none;
    background: black;
}

.contact-button:hover {
    background: var(--accent-color);
    color: white;
}

@media (max-width: 768px) {
    #contacto {
        height: 80vh;
        background-size: 150px auto;
    }
    
    .contact-button {
        padding: 20px 40px;
        font-size: 1.7rem;
    }
}

.hero-button,
.contact-button,
.cta-button,
.service-card,
.service-badge {
    border-radius: 0;
}

@media (max-width: 768px) {
    .clients-logos {
        gap: 45px 8vw !important;
        padding: 0 !important;
    }
    .clients-grid .client-logo {
        max-width: 160px !important;
        max-height: 100px !important;
        width: 100% !important;
        height: auto !important;
    }
}

@media (max-width: 480px) {
    .clients-grid .client-logo {
        max-width: 140px !important;
        max-height: 90px !important;
    }
}

 