/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #06b6d4;
    --primary-dark: #0891b2;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --bg-dark: #0a0e1a;
    --bg-darker: #050810;
    --bg-card: #151b2e;
    --bg-card-hover: #1a2235;
    --text-light: #f8fafc;
    --text-gray: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: #1e293b;
    --accent-gradient: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 100%);
    --accent-gradient-2: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-darker);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(5, 8, 16, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(5, 8, 16, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.nav-logo {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.nav-logo:hover {
    color: var(--primary-color);
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--accent-gradient);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(6, 182, 212, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.5);
}

/* Mobile Navigation */
@media (max-width: 968px) {
    body {
        padding-top: 70px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(5, 8, 16, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 2rem;
        border-bottom: 1px solid var(--border-color);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        width: 100%;
        padding: 1rem 0;
        font-size: 1.125rem;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link::after {
        display: none;
    }

    .nav-cta {
        margin-top: 1rem;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1.125rem;
    }
}

@media (max-width: 640px) {
    body {
        padding-top: 65px;
    }

    .nav-content {
        padding: 0.75rem 0;
    }

    .nav-logo {
        font-size: 1.25rem;
    }

    .nav-menu {
        top: 65px;
        padding: 1.5rem;
        max-height: calc(100vh - 65px);
    }

    .nav-link {
        padding: 0.875rem 0;
        font-size: 1rem;
    }

    .nav-cta {
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.fade-in:nth-child(2) {
    animation-delay: 0.2s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.4s;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 3rem;
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(6, 182, 212, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    background: rgba(6, 182, 212, 0.1);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.headline {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hero-tagline {
    font-size: 1.125rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.social-proof {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-proof i {
    color: var(--primary-color);
}

/* Chatwoot Links */
.chatwoot-link {
    color: var(--primary-color);
    text-decoration: underline;
    text-decoration-color: rgba(6, 182, 212, 0.4);
    text-underline-offset: 3px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.chatwoot-link:hover {
    color: var(--secondary-color);
    text-decoration-color: var(--secondary-color);
}

.chatwoot-info {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.info-link {
    color: var(--text-gray);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.info-link:hover {
    color: var(--primary-color);
}

.info-link i {
    font-size: 1rem;
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: var(--bg-card);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
}

.dashboard-header {
    background: var(--bg-darker);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.dots {
    display: flex;
    gap: 0.5rem;
}

.dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
}

.dots span:nth-child(1) {
    background: #ef4444;
}

.dots span:nth-child(2) {
    background: #eab308;
}

.dots span:nth-child(3) {
    background: #10b981;
}

.dashboard-title {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 600;
}

.dashboard-content {
    padding: 2rem;
    display: grid;
    gap: 1.5rem;
}

.metric-card {
    background: var(--bg-darker);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    position: relative;
}

.metric-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    display: inline-block;
}

.metric-suffix {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    display: inline-block;
    margin-left: 0.25rem;
}

.case-metric .metric-suffix {
    font-size: 3rem;
    display: inline;
    margin-left: 0.5rem;
}

.metric-change {
    color: var(--primary-color);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Problem Section */
.problem {
    padding: 8rem 0;
    background: var(--bg-dark);
    position: relative;
}

.problem .container {
    position: relative;
}

.problem-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.problem-hero-content {
    max-width: 600px;
}

.problem-hero .section-title {
    text-align: left;
    margin-bottom: 0;
}

.problem-hero-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.problem-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background: var(--bg-card-hover);
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.2);
}

.problem-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.problem-card p {
    color: var(--text-gray);
}

.problem-solution {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem;
    background: var(--bg-card);
    border-radius: 1rem;
    border: 2px solid var(--primary-color);
    font-size: 1.25rem;
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.2);
}

/* Solution Section */
.solution {
    padding: 8rem 0;
    background: var(--bg-darker);
}

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

@media (min-width: 1200px) {
    .solution-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .solution-grid .solution-card:nth-child(4),
    .solution-grid .solution-card:nth-child(5) {
        grid-column: span 1;
    }
    
    .solution-grid .solution-card:nth-child(4) {
        grid-column: 1 / 2;
    }
    
    .solution-grid .solution-card:nth-child(5) {
        grid-column: 2 / 3;
    }
}

.solution-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(6, 182, 212, 0.05) 100%);
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.2);
}

.solution-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.solution-card h3 a,
.service-card h3 a {
    color: inherit;
    text-decoration: none;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.solution-card h3 a:hover,
.service-card h3 a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--secondary-color);
}

.solution-card p {
    color: var(--text-gray);
}

/* Process Section */
.process {
    padding: 8rem 0;
    background: var(--bg-dark);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-gray);
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: var(--bg-darker);
}

/* Target Audience Section */
.target-audience {
    padding: 8rem 0;
    background: var(--bg-darker);
    position: relative;
}

.target-audience::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(180deg, transparent 0%, var(--border-color) 10%, var(--border-color) 90%, transparent 100%);
    opacity: 0.5;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.audience-column {
    background: var(--bg-card);
    padding: 3rem 2.5rem;
    border-radius: 1.5rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.audience-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.audience-column:hover::before {
    opacity: 1;
}

.audience-column:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.is-for {
    border-color: var(--primary-color);
}

.is-for::before {
    background: var(--accent-gradient);
}

.is-for:hover {
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3);
    border-color: var(--primary-color);
}

.not-for {
    border-color: var(--accent-color);
}

.not-for::before {
    background: var(--accent-gradient-2);
}

.not-for:hover {
    box-shadow: 0 20px 60px rgba(236, 72, 153, 0.3);
    border-color: var(--accent-color);
}

.audience-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.audience-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.is-for .audience-icon {
    color: var(--primary-color);
}

.not-for .audience-icon {
    color: var(--accent-color);
}

.audience-column h3 {
    font-size: 1.75rem;
    margin: 0;
    text-align: left;
    line-height: 1.2;
}

.audience-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.audience-column li {
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-gray);
    background: var(--bg-darker);
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    line-height: 1.6;
    transition: all 0.3s ease;
}

.audience-column li:hover {
    background: var(--bg-card-hover);
    transform: translateX(5px);
}

.is-for li:hover {
    border-color: var(--primary-color);
}

.not-for li:hover {
    border-color: var(--accent-color);
}

.audience-column li:last-child {
    border-bottom: none;
}

.audience-column i {
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.is-for li i {
    color: var(--primary-color);
}

.not-for li i {
    color: var(--accent-color);
}

.audience-column li span {
    flex: 1;
    font-size: 1rem;
}

/* Services Section Continued */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background: var(--bg-card-hover);
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.25);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Case Studies Section */
.cases {
    padding: 8rem 0;
    background: var(--bg-dark);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.case-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.case-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background: var(--bg-card-hover);
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.3);
}

.case-featured {
    grid-column: span 1;
    border: 2px solid var(--secondary-color);
    position: relative;
}

.case-featured:hover {
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
}

.case-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.case-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.case-title {
    font-size: 1.5rem;
    line-height: 1.3;
    word-wrap: break-word;
}

.case-sector {
    background: var(--bg-darker);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    width: fit-content;
}

.case-problem {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--primary-color);
    line-height: 1.6;
}

.case-solution {
    color: var(--text-gray);
    margin-bottom: 2rem;
    flex-grow: 1;
    line-height: 1.6;
}

.case-metric {
    text-align: center;
    padding: 2rem;
    background: var(--bg-darker);
    border-radius: 0.75rem;
    margin-top: auto;
}

.metric-big {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.metric-display {
    margin-bottom: 1rem;
}

.metric-number {
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    display: block;
    letter-spacing: -0.02em;
}

.case-metric .metric-label {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 0.5rem;
    display: block;
}

.metric-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.4;
}

.metric-text.highlight {
    color: var(--primary-color);
}

/* Pricing Section */
.pricing {
    padding: 8rem 0;
    background: var(--bg-darker);
    overflow: hidden;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.pricing-card {
    background: var(--bg-card);
    padding: 3rem 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.pricing-featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.2);
}

.pricing-featured:hover {
    transform: translateY(-10px);
}

.badge {
    position: absolute;
    top: -15px;
    right: 2rem;
    background: var(--accent-gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.plan-subtitle {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.plan-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    min-height: 3rem;
    text-align: center;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.currency {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
}

.features {
    list-style: none;
    margin-bottom: 2rem;
}

.features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-gray);
}

.features i {
    font-size: 1.125rem;
}

.features .fa-check {
    color: var(--primary-color);
}

.features .fa-times {
    color: var(--text-muted);
}

.btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: auto;
}

.pricing-card .btn {
    width: 100%;
    max-width: 100%;
    text-align: center;
    justify-content: center;
}

/* Ghost Section */
.ghost {
    padding: 8rem 0;
    background: var(--bg-dark);
    text-align: center;
}

.ghost-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.25rem;
    color: var(--text-gray);
}

.ghost-content p {
    margin-bottom: 1.5rem;
}

.ghost-example {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Section CTAs */
.section-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
}

.section-cta .btn {
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.4);
    transition: all 0.3s ease;
}

.section-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.6);
}

.section-cta .btn-secondary {
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.section-cta .btn-secondary:hover {
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
}

/* FAQ Section */
.faq {
    padding: 8rem 0;
    background: var(--bg-darker);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 2rem 2rem;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.6;
    padding-top: 0.5rem;
}

/* Final CTA Section */
.final-cta {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    text-align: center;
}

.final-cta .section-title {
    margin-bottom: 3rem;
}

.final-cta .cta-group {
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer p {
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .headline {
        font-size: 2.5rem;
    }

    .cta-group {
        justify-content: center;
    }

    .social-proof {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .pricing-grid {
        padding: 0;
    }

    .pricing-featured {
        transform: none;
    }

    .pricing-featured:hover {
        transform: translateY(-10px);
    }

    .problem-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .problem-hero .section-title {
        text-align: center;
    }

    .problem::before {
        top: -50px;
        height: 100px;
    }

    .audience-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .target-audience::before {
        display: none;
    }

    .audience-column {
        padding: 2.5rem 2rem;
    }

    .audience-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .audience-column h3 {
        text-align: center;
    }
}
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }

    .headline {
        font-size: 2rem;
    }

    .subheadline {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .cta-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }

    .metric-value {
        font-size: 2.5rem;
    }

    .metric-number {
        font-size: 3.5rem;
    }

    .metric-big {
        font-size: 3rem;
    }

    .cases-grid,
    .services-grid,
    .solution-grid,
    .problem-grid {
        grid-template-columns: 1fr;
    }

    .case-featured {
        grid-column: span 1;
    }

    .case-header {
        gap: 0.75rem;
    }

    .case-title {
        font-size: 1.25rem;
    }

    .case-sector {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .audience-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .audience-column {
        padding: 2rem 1.5rem;
    }

    .audience-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding-bottom: 1rem;
    }

    .audience-icon {
        font-size: 2.5rem;
    }

    .audience-column h3 {
        font-size: 1.5rem;
        text-align: center;
    }

    .audience-column li {
        font-size: 0.95rem;
        padding: 1rem;
        gap: 0.75rem;
    }

    .audience-column li:hover {
        transform: translateX(0);
    }

    .audience-column li i {
        font-size: 1.125rem;
    }

    .problem-hero {
        gap: 1.5rem;
    }

    .problem-hero-image {
        max-height: 250px;
    }

    .problem-hero-image img {
        height: 100%;
        object-fit: cover;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }
}
