@font-face {
    font-family: Buenosairesweb;
    src: url(https://cdn.prod.website-files.com/63eb5f7a3a23174bf94a7fef/640f7cd1699ead56256ee354_BuenosAiresWeb-Bold.woff)
        format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: Messinamodernweb;
    src: url(https://cdn.prod.website-files.com/63eb5f7a3a23174bf94a7fef/640f7cd197acefe880d533a7_MessinaModernWeb-Light.woff)
        format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary-color: #2e00b2;
    --primary-dark: #220088;
    --primary-light: #4d1fc5;
    --dark-bg: #000000;
    --dark-section: #0a0b0d;
    --dark-card: #1a1c23;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --border-color: rgba(255, 255, 255, 0.1);
    --card-border: rgba(46, 0, 178, 0.2);
    --hover-transform: translateY(-5px);
    --hover-shadow: 0 20px 40px rgba(46, 0, 178, 0.15);
}
body {
    font-family: Messinamodernweb, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--dark-bg);
    overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Buenosairesweb, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, sans-serif;
}
html {
    scroll-behavior: smooth;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding-top: 20px;
}
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}
.logo {
    width: 120px;
    height: auto;
}
.logo img {
    width: 100%;
    height: auto;
    filter: invert(1) brightness(2);
}
.nav-wrapper {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
    font-family: Buenosairesweb;
}
.nav-links a:hover {
    color: var(--text-primary);
}
.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.cta-button {
    background: white;
    color: var(--dark-bg);
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    border: 1px solid white;
    font-family: Buenosairesweb;
}
.cta-button::after {
    content: "→";
    transition: transform 0.3s;
}
.cta-button:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}
.cta-button:hover::after {
    transform: translateX(3px);
}
.login-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
    font-family: Buenosairesweb;
    padding: 0.5rem 1rem;
}
.login-link:hover {
    color: var(--text-primary);
}
/* Hero Section */
.hero {
    padding: 160px 0 140px;
    background: #000000;
    text-align: center;
    position: relative;
    overflow: visible;
}
/* Temporarily hide the effect
.hero::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100dvh;
    height: 800px;
    background: radial-gradient(
        circle,
        rgba(46, 0, 178, 0.15) 0%,
        transparent 70%
    );
    pointer-events: none;  
}*/
.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
}
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: Messinamodernweb;
    line-height: 1.6;
}
.blob-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 3rem auto;
    position: relative;
    z-index: 1;
    pointer-events: none;
}
.blob-wrapper {
    width: 350px;
    height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}
.blob-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* Audio Control Styling */
.audio-control {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 10;
    pointer-events: none;
    /* Allow clicks to pass through container */
}
/* Re-enable pointer events for interactive children */
.audio-control > * {
    pointer-events: auto;
}
/* Custom Play Button */
.custom-audio-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 100;
    margin-top: 90px;
}
.play-button-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 101;
    pointer-events: auto;
}
.play-button-wrapper:hover {
    transform: scale(1.1);
}
.play-button-wrapper:active {
    transform: scale(0.95);
}
.play-button {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--primary-light)
    );
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(46, 0, 178, 0.4);
    transition: all 0.3s ease;
}
.play-button::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(
        135deg,
        var(--primary-light),
        var(--primary-color)
    );
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}
.play-button-wrapper:hover .play-button::before {
    opacity: 1;
}
.play-button-wrapper:hover .play-button {
    box-shadow: 0 15px 50px rgba(46, 0, 178, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
}
.play-icon {
    width: 0;
    height: 0;
    border-left: 25px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    margin-left: 5px;
    transition: all 0.3s ease;
}
.play-button.playing .play-icon {
    width: 24px;
    height: 24px;
    border: none;
    margin-left: 7px;
    display: flex;
    gap: 6px;
}
.play-button.playing .play-icon::before,
.play-button.playing .play-icon::after {
    content: "";
    width: 6px;
    height: 24px;
    background: white;
    border-radius: 2px;
}
/* Audio Progress Bar */
.audio-progress-container {
    display: none;
    width: 280px;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.audio-progress-container.visible {
    display: flex;
    opacity: 1;
}
.audio-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.audio-progress {
    height: 100%;
    background: linear-gradient(
        90deg,
        var(--primary-color),
        var(--primary-light)
    );
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
    position: relative;
}
.audio-progress::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.audio-time {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-family: Messinamodernweb;
}
.audio-title {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: Messinamodernweb;
    margin-top: 0.5rem;
    opacity: 0.8;
}
/* Hidden audio element */
audio {
    display: none;
}
/* Conversation Button */
.conversation-button {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.5s ease;
    background: linear-gradient(
        135deg,
        var(--primary-dark),
        var(--primary-color)
    );
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: 2px solid var(--primary-light);
    cursor: pointer;
    font-family: Buenosairesweb;
    font-weight: 600;
    font-size: 0.95rem;
    animation: none;
    white-space: nowrap;
    position: relative;
    z-index: 1000;
    pointer-events: none;
}
.conversation-button.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: gentlePulse 2s ease-in-out infinite;
    pointer-events: auto;
    z-index: 1001;
}
.conversation-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(46, 0, 178, 0.4);
}
@keyframes gentlePulse {
    0%,
    100% {
        box-shadow: 0 5px 20px rgba(46, 0, 178, 0.3);
    }
    50% {
        box-shadow: 0 8px 30px rgba(46, 0, 178, 0.5);
    }
}
/* Third Blob Container */
.third-blob-container {
    position: absolute;
    width: 350px;
    height: 350px;
    top: 350px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 50px;
    z-index: 5;
}
.third-blob-container.visible {
    opacity: 1;
    visibility: visible;
}
/* Microphone Permission Modal */
.mic-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.mic-modal.show {
    display: flex;
}
.mic-modal-content {
    background: var(--dark-card);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
    text-align: center;
    max-width: 400px;
}
.mic-modal h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
.mic-modal p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}
.mic-modal button {
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}
.mic-modal button:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}
@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}
.hero-cta {
    margin-top: 2rem;
    z-index: 10;
    position: relative;
}
.hero-cta .cta-button {
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}
/* Sections */
section {
    padding: 100px 0;
    position: relative;
}
section:nth-child(odd) {
    background: var(--dark-section);
}
section:nth-child(even) {
    background: var(--dark-bg);
}
h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
    color: var(--text-primary);
}
.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: Messinamodernweb;
}
/* Problem Section */
.problem-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.problem-statement {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-primary);
    line-height: 1.4;
}
.supporting-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 3rem;
    font-family: Messinamodernweb;
}
.facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.fact-card {
    background: var(--dark-card);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(239, 68, 68, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}
.fact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #ef4444;
}
.fact-card:hover {
    transform: var(--hover-transform);
    border-color: #ef4444;
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.15);
}
.fact-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: Buenosairesweb;
}
.fact-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-family: Messinamodernweb;
}
.fact-source {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-style: italic;
    font-family: Messinamodernweb;
}
/* Persona Pain Points - Updated to 4 columns */
.persona-pains {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.pain-card {
    background: rgba(46, 0, 178, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(239, 68, 68, 0.2);
    transition: all 0.3s;
}
.pain-card:hover {
    transform: var(--hover-transform);
    border-color: rgba(239, 68, 68, 1);
    background: rgba(46, 0, 178, 0.1);
    box-shadow: var(--hover-shadow);
}
.pain-card h4 {
    color: var(--primary-light);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
.pain-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    font-family: Messinamodernweb;
}
/* Solution Section - Stacked Design */
.solution-section {
    background: var(--dark-bg);
    padding: 100px 0;
}
.pillars-stacked {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.pillar-stacked {
    background: var(--dark-card);
    padding: 2rem 3rem;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    transition: all 0.3s;
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.pillar-stacked::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    border-radius: 4px 0 0 4px;
}
.pillar-stacked:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: var(--hover-shadow);
}
.pillar-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    min-width: 50px;
    font-family: Buenosairesweb;
}
.pillar-content {
    flex: 1;
}
.pillar-stacked h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}
.pillar-stacked p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-family: Messinamodernweb;
}
.pillar-persona {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-style: italic;
}
/* Risk Section */
.risks-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}
.risk-item {
    background: var(--dark-card);
    padding: 2rem;
    border-left: 4px solid #ef4444;
    border-radius: 8px;
    transition: all 0.3s;
    color: var(--text-secondary);
    font-family: Messinamodernweb;
}
.risk-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.1);
}
/* Implementation */
.implementation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.implementation-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--dark-card);
    border-radius: 16px;
    border: 1px solid var(--card-border);
    transition: all 0.3s;
    position: relative;
}
.implementation-card:hover {
    transform: var(--hover-transform);
    border-color: var(--primary-color);
    box-shadow: var(--hover-shadow);
}
.implementation-card .metric {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: bold;
    font-family: Buenosairesweb;
}
.implementation-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}
.implementation-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-family: Messinamodernweb;
}
.implementation-outcome {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--dark-section);
    border-radius: 12px;
    color: var(--text-secondary);
}
/* Who Benefits Most Section - Updated */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.benefit-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    transition: all 0.3s;
    text-align: center;
}
.benefit-card:hover {
    transform: var(--hover-transform);
    border-color: var(--primary-color);
    box-shadow: var(--hover-shadow);
}
.benefit-card h4 {
    color: var(--primary-light);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}
.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    font-family: Messinamodernweb;
}
/* Industries */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.industry-card {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(
        135deg,
        var(--dark-card) 0%,
        rgba(46, 0, 178, 0.05) 100%
    );
    border-radius: 16px;
    border: 1px solid var(--card-border);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.industry-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s;
}
.industry-card:hover::before {
    transform: scaleX(1);
}
.industry-card:hover {
    transform: var(--hover-transform);
    border-color: var(--primary-color);
    box-shadow: var(--hover-shadow);
}
.industry-card h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}
.logo-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    min-height: 60px;
}
.logo-container img {
    max-height: 40px;
    max-width: 80px;
    width: auto;
    height: auto;
    filter: brightness(0) invert(1) opacity(0.7);
    transition: all 0.3s;
}
.industry-card:hover .logo-container img {
    filter: brightness(0) invert(1) opacity(1);
}
/* Use Cases */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.use-case {
    background: var(--dark-card);
    background-position: bottom right;
    background-size: contain;
    background-repeat: no-repeat;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.use-case-1 {
    background-image: url("case-1.png");
}
.use-case-2 {
    background-image: url("case-2.png");
}
.use-case::after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--primary-light)
    );
    border-radius: 16px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s;
}
.use-case:hover::after {
    opacity: 0.3;
}
.use-case:hover {
    transform: var(--hover-transform);
    box-shadow: 0 20px 40px rgba(46, 0, 178, 0.2);
}
.use-case h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}
.use-case p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-family: Messinamodernweb;
}
.use-case-metrics {
    padding: 1.5rem 0;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-family: Messinamodernweb;
}
.use-case-metrics strong {
    color: var(--text-primary);
    font-family: Buenosairesweb;
}
.strategic-note {
    color: white;
    margin-top: 0.5rem;
}
/* FAQ */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
    background: var(--dark-card);
    margin-bottom: 1rem;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    overflow: hidden;
    transition: all 0.3s;
}
.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(46, 0, 178, 0.1);
}
.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    color: var(--text-primary);
    font-family: Buenosairesweb;
}
.faq-question:hover {
    background: rgba(46, 0, 178, 0.05);
}
.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s;
}
.faq-item.active .faq-question::after {
    content: "−";
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-secondary);
    font-family: Messinamodernweb;
    padding: 0 2rem;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}
/* Closing */
.closing {
    background: var(--dark-bg);
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.closing::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(
        circle,
        rgba(46, 0, 178, 0.1) 0%,
        transparent 60%
    );
    pointer-events: none;
}
.closing h2 {
    font-size: 3.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}
.closing .cta-button {
    font-size: 1.1rem;
    padding: 1rem 3rem;
    position: relative;
    z-index: 1;
}
/* Footer */
footer {
    background: #000000;
    color: var(--text-secondary);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-column h4 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-column ul {
    list-style: none;
}
.footer-column li {
    margin-bottom: 0.8rem;
}
.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
    font-family: Messinamodernweb;
}
.footer-column a:hover {
    color: var(--text-primary);
}
.footer-column.gopf-explanation {
    max-width: 350px;
}
.footer-column.gopf-explanation p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    font-family: Messinamodernweb;
}
.linkedin-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    fill: var(--text-secondary);
    transition: fill 0.3s;
}
.linkedin-icon:hover {
    fill: var(--text-primary);
}
.footer-certifications {
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}
.certification-logo {
    height: 50px;
    width: auto;
    filter: invert(1) brightness(2);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-family: Buenosairesweb;
}
.footer-bottom a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
    font-family: Buenosairesweb;
}
.footer-bottom a:hover {
    color: var(--text-primary);
}
/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--dark-card);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 400px;
    display: none;
    z-index: 2000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.cookie-content p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: Messinamodernweb;
}
.cookie-buttons {
    display: flex;
    gap: 1rem;
}
.cookie-button {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.9rem;
    font-family: Messinamodernweb;
}
.accept-cookies {
    background: var(--primary-color);
    color: white;
}
.accept-cookies:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(46, 0, 178, 0.3);
}
.decline-cookies {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}
.decline-cookies:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}
/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}
/* Mobile Horizontal Slider Styles */
@media (max-width: 768px) {
    /* Custom audio player mobile adjustment */
    .custom-audio-player {
        margin-top: 0;
    }
    /* Benefits slider */
    .benefits-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
        grid-template-columns: unset;
    }
    .benefit-card {
        flex: 0 0 80%;
        scroll-snap-align: center;
    }
    /* Industries slider */
    .industries-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
        grid-template-columns: unset;
    }
    .industry-card {
        flex: 0 0 80%;
        scroll-snap-align: center;
    }
    /* Risks slider */
    .risks-list {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
    }
    .risk-item {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }
    /* Custom scrollbar for sliders */
    .benefits-grid::-webkit-scrollbar,
    .industries-grid::-webkit-scrollbar,
    .risks-list::-webkit-scrollbar {
        height: 6px;
    }
    .benefits-grid::-webkit-scrollbar-track,
    .industries-grid::-webkit-scrollbar-track,
    .risks-list::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 3px;
    }
    .benefits-grid::-webkit-scrollbar-thumb,
    .industries-grid::-webkit-scrollbar-thumb,
    .risks-list::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 3px;
    }
    .third-blob-container {
        width: 280px;
        height: 280px;
        top: 550px;
    }
}
/* Responsive */
@media (max-width: 1024px) {
    .persona-pains {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .nav-wrapper {
        display: none;
    }
    .nav-wrapper.active {
        display: block;
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem;
        border-bottom: 1px solid var(--border-color);
    }
    .nav-links {
        flex-direction: column;
    }
    .header-actions {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .blob-container {
        flex-direction: column;
        gap: 1rem;
    }
    .blob-wrapper {
        width: 280px;
        height: 280px;
    }
    h2 {
        font-size: 2rem;
    }
    .persona-pains {
        grid-template-columns: 1fr;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    .cookie-banner {
        left: 20px;
        right: 20px;
        max-width: none;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fade-in {
    animation: fadeIn 0.8s ease;
}
