:root {
    --bg-primary: #022c22;
    /* Deep Emerald 950 */
    --bg-secondary: #064e3b;
    /* Emerald 900 */
    --bg-tertiary: #065f46;
    /* Emerald 800 */
    --text-primary: #ecfdf5;
    /* Emerald 50 */
    --text-secondary: #d1fae5;
    /* Emerald 100 */
    --text-muted: #6ee7b7;
    /* Emerald 300 */
    --accent-primary: #34d399;
    /* Bright Emerald */
    --accent-secondary: #10b981;
    --accent-highlight: #a3e635;
    /* Neon Lime */
    --border-color: #065f46;
    --shadow-light: rgba(0, 0, 0, 0.3);
    --shadow-medium: rgba(0, 0, 0, 0.5);
    --shadow-dark: rgba(0, 0, 0, 0.8);
    --card-bg: #064e3b;
    /* Unified Card BG */
    --navbar-bg: rgba(2, 44, 34, 0.95);
    --hero-gradient: linear-gradient(135deg, #022c22 0%, #064e3b 100%);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    /* Offset for sticky header (70px + 20px) */
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--navbar-bg);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 38px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.nav-logo span {
    color: var(--accent-primary);
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: 0.5px;
}

.nav-logo h2 {
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(0.7rem, 1.35vw, 1.35rem);
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.88rem;
    font-weight: 600;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--accent-primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-primary);
    transform: scale(1.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 80px;
    padding-bottom: 0px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, #047857, #022c22);
    color: white;
    position: relative;
    overflow: hidden;
}


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 20%);
    background-size: cover;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    text-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}

.highlight {
    color: #a3e635;
    /* Neon Lime for better contrast on green */
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(163, 230, 53, 0.3);
    border-radius: 4px;
    z-index: -1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(163, 230, 53, 0.35);
    color: var(--text-secondary);
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 1.5rem;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.pulse-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #a3e635;
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(163, 230, 53, 0.7);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% {
        box-shadow: 0 0 0 0 rgba(163, 230, 53, 0.6);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(163, 230, 53, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(163, 230, 53, 0);
    }
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: #fbbf24;
    color: #1f2937;
}

.btn-primary:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #022c22;
    transform: translateY(-2px);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
    /* Increased height for better spread */
}

/* Crest centerpiece with stadium-spotlight glow */
.hero-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
}

.hero-badge::before {
    content: '';
    position: absolute;
    inset: -25%;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.35) 0%, rgba(163, 230, 53, 0.12) 42%, transparent 70%);
    filter: blur(6px);
    z-index: -2;
}

.hero-badge::after {
    content: '';
    position: absolute;
    inset: -6%;
    border-radius: 50%;
    background: conic-gradient(from 0deg,
            transparent 0deg,
            rgba(163, 230, 53, 0.55) 50deg,
            transparent 130deg,
            transparent 230deg,
            rgba(52, 211, 153, 0.5) 300deg,
            transparent 360deg);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
    animation: spin 14s linear infinite;
    z-index: -1;
}

.hero-badge-img {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.55));
    animation: float 6s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.4rem 1rem;
    text-align: center;
    color: white;
    animation: float 6s ease-in-out infinite;
    min-width: 156px;
    max-width: 190px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 3;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.floating-card:hover {
    border-color: rgba(163, 230, 53, 0.5);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.floating-card i {
    font-size: 2rem;
    margin-bottom: 0.6rem;
    display: block;
    color: #a3e635;
    /* Neon accent icon */
}

.floating-card span {
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

/* 3 cards flank the crest on each side */
.card-1 {
    top: 2%;
    left: 0;
    animation-delay: 0s;
}

.card-3 {
    top: 39%;
    left: 0;
    animation-delay: 1.2s;
}

.card-4 {
    top: 76%;
    left: 0;
    animation-delay: 2.4s;
}

.card-2 {
    top: 2%;
    right: 0;
    animation-delay: 0.6s;
}

.card-5 {
    top: 39%;
    right: 0;
    animation-delay: 1.8s;
}

.card-6 {
    top: 76%;
    right: 0;
    animation-delay: 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 3rem 0 6rem 0;
    background: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-secondary);
    font-weight: 500;
}

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

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #064e3b, #065f46);
    /* Dark Green Theme */
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 4rem;
    box-shadow: 0 20px 40px rgba(6, 78, 59, 0.3);
    /* Green shadow */
}

.image-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1rem;
}


/* Team Section */
.team {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.team-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.team-intro h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.team-intro p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    max-width: 920px;
    margin: 0 auto;
}

.team-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.team-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.team-icon i {
    font-size: 2rem;
    color: white;
}

.team-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.team-salary {
    font-size: 1.2rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 1rem;
    background: #ecfdf5;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    /* Less rounded corners */
    display: inline-block;
}

.team-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.team-card ul {
    list-style: none;
    text-align: left;
}

.team-card li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.team-card li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.team-investment {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.investment-summary-card {
    background: linear-gradient(135deg, #064e3b, #022c22);
    color: white;
    padding: 2.5rem 3rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}

.summary-info {
    flex: 1;
}

.summary-info h3 {
    color: #fbbf24;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.summary-info p {
    font-size: 0.9rem;
    color: #9ca3af;
    line-height: 1.4;
    margin-bottom: 0;
}

.summary-values {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 500;
}

.total-row {
    background: rgba(251, 191, 36, 0.15) !important;
    border: 2px solid #fbbf24;
    color: #fbbf24;
    font-weight: 700;
    padding: 1.2rem 1.5rem;
}

/* Architecture Section */
.architecture {
    padding: 6rem 0;
    background: var(--hero-gradient);
    /* Gradient for separation */
}

.architecture-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.architecture-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.architecture-diagram {
    margin: 2rem 0;
}

.diagram-container {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px var(--shadow-light);
    border: 1px solid var(--border-color);
    overflow-x: auto;
}

.diagram-title {
    text-align: center;
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.mermaid {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    line-height: 1.4;
}

.architecture-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.architecture-tech {
    text-align: center;
}

.architecture-tech h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

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

.tech-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow-light);
    border-color: var(--accent-primary);
}

.tech-item h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.tech-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
}

/* Advertising Section */
.advertising {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.advertising-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.advertising-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.advertising-intro h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.advertising-intro p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.monetization-strategies h3,
.revenue-model h3,
.target-audience h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 3rem;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    /* Increased gap */
    margin-bottom: 2rem;
    /* Reduced bottom margin */
}

.strategy-card {
    background: rgba(0, 20, 10, 0.5);
    padding: 2rem;
    /* Increased padding */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: none;
    /* Removed light margin/border */
    text-align: center;
    color: white;
    /* Ensure text is readable */
}

.strategy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.strategy-icon {
    width: 60px;
    /* Smaller icon box */
    height: 60px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    /* Reduced margin */
}

.strategy-icon i {
    font-size: 1.5rem;
    /* Smaller icon */
    color: white;
}

.strategy-card h4 {
    font-size: 1.3rem;
    /* Slightly smaller title */
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    /* Reduced margin */
}

.strategy-card p {
    color: rgba(255, 255, 255, 0.9);
    /* Ensure readable on dark bg */
    margin-bottom: 0;
    /* Align bottom spacing with top padding */
    line-height: 1.5;
}

.strategy-card ul {
    list-style: none;
    text-align: left;
}

.strategy-card li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.strategy-card li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.whatsapp-integration {
    margin: 4rem 0;
}

.whatsapp-card {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 3rem;
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.whatsapp-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.whatsapp-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item i {
    color: #25d366;
    background: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.whatsapp-btn {
    background: white;
    color: #25d366;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.revenue-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

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

.revenue-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-light);
    border-color: var(--accent-primary);
}

.revenue-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.revenue-icon i {
    font-size: 1.5rem;
    color: white;
}

.revenue-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.revenue-item p {
    color: var(--text-secondary);
    font-weight: 500;
}

.audience-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.audience-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-light);
    border-color: var(--accent-primary);
}

.audience-stat h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.audience-stat p {
    color: var(--text-secondary);
    font-weight: 500;
}


/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--bg-primary), #001510);
    /* Transition to darker */
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
    /* Green Theme */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-right: 1rem;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.contact-item h4 {
    font-weight: 600;
    color: #ffffff;
    /* White text */
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: #e2e8f0;
    /* Light gray text */
    font-size: 1rem;
}

.contact-form {
    background: rgba(0, 0, 0, 0.4);
    /* Dark semi-transparent background */
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: rgba(0, 0, 0, 0.3);
    /* Dark input background */
    color: #ffffff;
    /* White text */
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(0, 0, 0, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #022c22;
    /* Deep Dark Green */
    color: var(--text-primary);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.footer-logo p {
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-links h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-primary);
}

.footer-social h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #6366f1;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Base Styles for New Sections */
.solution-grid-box {
    margin-bottom: 5rem;
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.solution-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.about,
.technology,
.global,
.team,
.investment {
    background-color: #022c22 !important;
}

.opportunity,
.advertising,
.investment {
    padding: 6rem 0;
    background: var(--hero-gradient);
}


/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-primary);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
        z-index: 999;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-visual {
        position: static;
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        margin-top: 1.5rem;
    }

    .hero-badge {
        position: static;
        transform: none;
        grid-column: 1 / -1;
        width: auto;
        height: auto;
        margin: 0 auto 0.5rem;
    }

    .hero-badge::after {
        display: none;
    }

    .hero-badge-img {
        width: 130px;
        animation: none;
    }

    .floating-card {
        position: static;
        min-width: 0;
        max-width: none;
        padding: 1rem 0.6rem;
        border-radius: 12px;
        animation: none;
    }

    .floating-card i {
        font-size: 1.4rem;
        margin-bottom: 0.4rem;
    }

    .floating-card span {
        font-size: 0.9rem;
    }

    .card-1,
    .card-2,
    .card-3,
    .card-4,
    .card-5,
    .card-6 {
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        animation-delay: 0s;
    }

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

    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .team-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .investment-card {
        padding: 2rem;
    }

    .architecture-specs {
        grid-template-columns: 1fr;
    }

    .architecture-features {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .whatsapp-card {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .whatsapp-features {
        grid-template-columns: 1fr;
    }

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

    .audience-stats {
        grid-template-columns: 1fr;
    }

    /* New Section Fixes */
    .investment-summary-card {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
        text-align: center;
    }

    .summary-values {
        width: 100%;
    }

    .solution-grid-box {
        padding: 1.5rem !important;
        margin-bottom: 3rem !important;
    }

    .solution-features {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    .feature-item {
        font-size: 1.1rem !important;
        gap: 0.75rem !important;
    }

    .feature-item i {
        font-size: 1.4rem !important;
    }

    .app-showcase {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 3rem;
    }

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

    .vs-badge {
        margin: 0 auto;
        transform: rotate(90deg);
    }

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

    .stat-row {
        font-size: 1.1rem;
    }

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

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

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

    .architecture-specs,
    .architecture-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .strategy-card {
        padding: 2rem;
    }

    .whatsapp-card {
        padding: 2rem;
    }

    .revenue-item,
    .audience-stat {
        padding: 1.5rem;
    }
}

/* Dark mode for diagram */
.diagram-container {
    background: linear-gradient(135deg, #022c22 0%, #064e3b 100%);
    border: 1px solid #065f46;
}

.diagram-title {
    color: #ffffff;
}

/* Dark mode for contact form */
.contact-form {
    background: linear-gradient(135deg, #022c22 0%, #064e3b 100%);
    border: 1px solid #065f46;
}

.form-group input,
.form-group textarea {
    background: #022c22;
    border-color: #065f46;
    color: #ffffff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6ee7b7;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #34d399;
    background: #064e3b;
}

/* New Sections Styles */

/* Technology Section Spacing */
.app-showcase {
    margin-bottom: 5rem;
}

.rag-comparison {
    padding-top: 2rem;
}

/* Opportunity Section */
/* Section Backgrounds Alternation */
.about,
.technology,
.global,
.team,
.investment {
    background: var(--bg-primary);
}

.opportunity,
.advertising,
.investment {
    padding: 6rem 0;
    background: var(--hero-gradient);
}

.about,
.technology,
.global,
.team,
.investment {
    background-color: #022c22 !important;
}



.opportunity-content {
    display: grid;
    grid-template-columns: 1fr;
    /* Stacked layout for emphasis */
    gap: 4rem;
    margin-top: 3rem;
    /* Restaurado para 3rem */
    max-width: 900px;
    /* Constrain width for better readability when stacked */
    margin-left: auto;
    margin-right: auto;
}

.market-problem,
.solution {
    background: var(--card-bg);
    padding: 3rem;
    /* Increased padding */
    border-radius: 1rem;
    box-shadow: 0 4px 6px var(--shadow-light);
    border: 1px solid var(--border-color);
}

.market-problem h3,
.solution h3 {
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    /* Larger Title */
}

/* .solution-features removido por ser duplicado */

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 1.3rem;
    /* Larger text */
    font-weight: 500;
}

.feature-item i {
    color: var(--accent-primary);
    font-size: 1.6rem;
    /* Larger icons */
}

/* Google Trends Card */
.trends-data-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    margin-top: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid #e2e8f0;
}

.trends-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1rem;
}

.google-logo {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    color: #5f6368;
}

.google-logo .blue {
    color: #4285F4;
}

.google-logo .red {
    color: #DB4437;
}

.google-logo .yellow {
    color: #F4B400;
}

.google-logo .green {
    color: #0F9D58;
}



.trends-period {
    font-size: 1.1rem;
    /* Increased size */
    color: #64748b;
}

.trends-stat {
    margin-bottom: 2rem;
    /* Increased spacing */
}

.stat-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.4rem;
    /* Maximized Size */
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.stat-row .keyword {
    color: #1e293b;
}

.stat-row .volume {
    color: #0f9d58;
}

.stat-bar {
    height: 16px;
    /* Thick bars */
    background: #f1f5f9;
    border-radius: 8px;
    overflow: hidden;
}

.stat-bar .fill {
    height: 100%;
    background: #4285F4;
    border-radius: 8px;
}

.trends-insight {
    font-size: 1.2rem;
    /* Increased size */
    color: #64748b;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.trends-insight i {
    color: #0f9d58;
}

/* Investment Section */
.investment {
    padding: 6rem 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(163, 230, 53, 0.12), transparent 28%),
        linear-gradient(180deg, #022c22 0%, #031f19 100%);
    position: relative;
    overflow: hidden;
}

.investment-hero {
    max-width: 880px;
    margin: 0 auto 3rem;
    text-align: center;
}

.investment-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding: 0.45rem 0.9rem;
    border: 1px solid rgba(163, 230, 53, 0.35);
    border-radius: 999px;
    color: var(--accent-highlight);
    background: rgba(6, 78, 59, 0.45);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.investment-hero h2 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.7rem);
    line-height: 0.95;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    color: var(--text-primary);
    text-shadow: 0 5px 0 rgba(0, 0, 0, 0.2);
}

.investment-hero p {
    color: var(--text-secondary);
    font-size: 1.12rem;
    line-height: 1.8;
    max-width: 760px;
    margin: 0 auto;
}

.investment-snapshot {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 2rem;
    align-items: stretch;
    margin-bottom: 2rem;
}

.snapshot-main,
.snapshot-proof,
.proof-tile,
.investment-level {
    border: 1px solid rgba(110, 231, 183, 0.18);
    border-radius: 1.4rem;
    background: rgba(6, 78, 59, 0.66);
}

.snapshot-main {
    padding: clamp(2rem, 4vw, 3.4rem);
    background:
        radial-gradient(circle at 82% 12%, rgba(163, 230, 53, 0.2), transparent 32%),
        rgba(6, 78, 59, 0.72);
}

.snapshot-main strong {
    display: block;
    margin: 0.35rem 0;
    color: var(--accent-highlight);
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(2.9rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: -0.035em;
    text-transform: uppercase;
    white-space: nowrap;
}

.snapshot-main>span:not(.snapshot-label) {
    display: block;
    color: var(--text-primary);
    font-size: clamp(1.45rem, 3vw, 2.35rem);
    font-weight: 800;
}

.snapshot-main p {
    max-width: 620px;
    margin-top: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.75;
}

.snapshot-proof {
    padding: 2rem;
}

.snapshot-label {
    display: inline-flex;
    margin-bottom: 1rem;
    color: var(--accent-primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.snapshot-proof ul {
    list-style: none;
    display: grid;
    gap: 0.9rem;
}

.snapshot-proof li {
    position: relative;
    padding-left: 1.7rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

.snapshot-proof li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-highlight);
    font-weight: 800;
}

.investment-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.proof-tile {
    padding: 1.35rem;
    background: rgba(2, 44, 34, 0.72);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.proof-tile:hover {
    transform: translateY(-6px);
    border-color: rgba(163, 230, 53, 0.45);
    background: rgba(6, 95, 70, 0.78);
}

.proof-tile i {
    width: 2.4rem;
    height: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 0.85rem;
    background: rgba(163, 230, 53, 0.12);
    color: var(--accent-primary);
    font-size: 1.15rem;
}

.proof-tile h3 {
    margin-bottom: 0.55rem;
    color: var(--text-primary);
    font-size: 1rem;
}

.proof-tile p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.55;
}

.investment-levels {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    gap: 1rem;
}

.investment-level {
    padding: 1.5rem;
    background: rgba(2, 44, 34, 0.78);
}

.investment-level--primary {
    background:
        linear-gradient(135deg, rgba(163, 230, 53, 0.18), rgba(6, 95, 70, 0.85)),
        rgba(6, 78, 59, 0.9);
    border-color: rgba(163, 230, 53, 0.48);
}

.investment-level span {
    display: inline-flex;
    margin-bottom: 0.85rem;
    color: var(--accent-highlight);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.investment-level h3 {
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    font-size: 1.25rem;
}

.investment-level p {
    color: var(--text-secondary);
    line-height: 1.65;
}

.investment-level strong {
    color: var(--accent-highlight);
}

.commercial-plan {
    padding: 6rem 0;
    background:
        radial-gradient(circle at 15% 15%, rgba(52, 211, 153, 0.12), transparent 30%),
        var(--bg-primary);
}

.market-approach {
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border: 1px solid rgba(110, 231, 183, 0.18);
    border-radius: 1.4rem;
    background: rgba(2, 44, 34, 0.72);
}

.market-approach-header {
    margin-bottom: 1.75rem;
}

.market-approach-header .snapshot-label {
    margin-bottom: 0;
}

.market-approach-header h2,
.market-approach-header h3 {
    color: var(--text-primary);
    font-size: clamp(1.85rem, 3.4vw, 2.65rem);
    line-height: 1.1;
    max-width: 100%;
    white-space: nowrap;
}

.go-to-market-priorities {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.go-to-market-priorities div {
    padding: 1.15rem;
    border: 1px solid rgba(110, 231, 183, 0.14);
    border-radius: 1rem;
    background: rgba(2, 44, 34, 0.62);
}

.go-to-market-priorities span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.8rem;
    height: 1.8rem;
    margin-bottom: 0.8rem;
    border-radius: 999px;
    background: rgba(163, 230, 53, 0.16);
    color: var(--accent-highlight);
    font-weight: 800;
}

.go-to-market-priorities strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--text-primary);
}

.go-to-market-priorities p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.market-approach-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.market-approach-card {
    padding: 1.25rem;
    border: 1px solid rgba(110, 231, 183, 0.14);
    border-radius: 1rem;
    background: rgba(6, 78, 59, 0.52);
}

.market-approach-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    margin-bottom: 0.9rem;
    border-radius: 0.75rem;
    background: rgba(163, 230, 53, 0.12);
    color: var(--accent-primary);
}

.market-approach-card h4 {
    margin-bottom: 0.45rem;
    color: var(--text-primary);
    font-size: 1rem;
}

.market-approach-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.55;
}

.investment-execution {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 1rem;
    margin-top: 2rem;
}

.execution-card {
    padding: clamp(1.5rem, 3vw, 2rem);
    border: 1px solid rgba(110, 231, 183, 0.18);
    border-radius: 1.4rem;
    background: rgba(2, 44, 34, 0.74);
}

.execution-card--goals {
    background:
        radial-gradient(circle at 85% 20%, rgba(163, 230, 53, 0.14), transparent 35%),
        rgba(6, 78, 59, 0.72);
}

.execution-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: clamp(1.35rem, 2.4vw, 1.9rem);
}

.execution-card ul {
    display: grid;
    gap: 0.85rem;
    list-style: none;
}

.execution-card li {
    position: relative;
    padding-left: 1.45rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.execution-card li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--accent-highlight);
    font-weight: 800;
}

.execution-card strong {
    color: var(--text-primary);
}

@media (max-width: 900px) {

    .investment-snapshot,
    .investment-levels,
    .investment-execution {
        grid-template-columns: 1fr;
    }

    .investment-proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .market-approach-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .go-to-market-priorities {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .investment {
        padding: 4.5rem 0;
    }

    .market-approach-header h2,
    .market-approach-header h3 {
        white-space: normal;
    }

    .investment-proof-grid {
        grid-template-columns: 1fr;
    }

    .market-approach-grid {
        grid-template-columns: 1fr;
    }

    .snapshot-main,
    .snapshot-proof,
    .proof-tile,
    .investment-level,
    .market-approach,
    .execution-card {
        border-radius: 1rem;
    }

    .snapshot-main strong {
        font-size: 2.85rem;
    }
}

.return-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.return-item span:first-child {
    color: var(--text-secondary);
}

.return-item span:last-child {
    font-weight: 600;
    color: var(--accent-primary);
}

.partnership-cta {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    color: white;
}

.partnership-cta h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.partnership-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.partnership-cta .btn {
    background: white;
    color: var(--accent-primary);
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.partnership-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .opportunity-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .investment-details {
        grid-template-columns: 1fr;
    }

    .partnership-cta {
        padding: 2rem;
    }

    .partnership-cta h3 {
        font-size: 1.5rem;
    }

    .amount {
        font-size: 2rem;
    }
}

/* Global Expansion Section */
.global {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.global-content {
    margin-top: 3rem;
}

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

.global-card {
    background: rgba(0, 0, 0, 0.4);
    /* Darker background for readability */
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px var(--shadow-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle border */
    text-align: center;
    transition: all 0.3s ease;
}

.global-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

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

/* Technology Section Styles */
.technology {
    padding: 6rem 0;
    background: var(--bg-primary);
    /* Darker background (Deep Emerald) */
    position: relative;
    overflow: hidden;
}

.tech-subtext {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 5rem;
}

.rag-comparison h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.comparison-card {
    background: rgba(0, 0, 0, 0.4);
    /* Darker background */
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px var(--shadow-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.comparison-card.kmiza {
    border: 2px solid var(--accent-primary);
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.5), rgba(16, 185, 129, 0.1));
    /* Even darker */
    transform: scale(1.02);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.card-header i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.comparison-card.kmiza .card-header i {
    color: var(--accent-primary);
}

.card-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
}

.comparison-card ul {
    list-style: none;
}

.comparison-card li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
}

.comparison-card li.negative i {
    color: #ef4444;
}

.comparison-card li.positive i {
    color: var(--accent-primary);
}

.vs-badge {
    background: var(--accent-highlight);
    color: #0f172a;
    font-weight: 900;
    padding: 1rem;
    border-radius: 50%;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

/* App Showcase */
.app-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: linear-gradient(135deg, #064e3b, #022c22);
    /* Dark Green Gradient */
    border-radius: 30px;
    padding: 4rem;
    box-shadow: 0 20px 50px var(--shadow-light);
}

.app-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.app-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.app-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.app-feature i {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-primary);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.app-screen-mockup {
    background: #0f172a;
    border-radius: 40px;
    border: 8px solid #334155;
    aspect-ratio: 9/19;
    max-width: 320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px var(--shadow-dark);
    overflow: hidden;
    /* Ensure image stays inside rounded corners */
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screen-content {
    color: rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.screen-content i {
    font-size: 3rem;
}

/* Highlight Card Style */
.strategy-card.highlight-card {
    /* border: 2px solid var(--accent-primary); Removed border */
    background: rgba(0, 20, 10, 0.5);
    /* Match base dark card */
    border: 1px solid rgba(16, 185, 129, 0.2);
    /* Very subtle border or none? User said "sem as linhas". So none. */
    border: none;
}

.strategy-card.highlight-card .strategy-icon {
    background: linear-gradient(135deg, var(--accent-highlight), var(--accent-primary));
}

@media (max-width: 992px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vs-badge {
        margin: 0 auto;
        transform: rotate(90deg);
    }

    .app-showcase {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
}

.global-card h3 {
    color: var(--accent-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.global-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.global-card ul {
    list-style: none;
    text-align: left;
}

.global-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.global-card li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
}

.global-cta {
    background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-primary) 100%);
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    color: white;
}

.global-cta h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.global-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Responsive Design for Global Section */
@media (max-width: 768px) {
    .global-features {
        grid-template-columns: 1fr;
    }

    .global-cta {
        padding: 2rem;
    }

    .global-cta h3 {
        font-size: 1.5rem;
    }
}

/* Roadmap Teaser Section */
.roadmap-teaser {
    padding: 80px 0;
    background-color: #0f172a;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.roadmap-timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.timeline-step {
    text-align: center;
    position: relative;
    z-index: 2;
    background: rgba(30, 41, 59, 0.5);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 150px;
    transition: transform 0.3s ease;
}

.timeline-step:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.timeline-step h4 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.timeline-step p {
    color: #94a3b8;
    font-size: 0.9rem;
}

.timeline-connector {
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    flex-grow: 1;
    max-width: 50px;
    display: none;
}

@media (min-width: 768px) {
    .timeline-connector {
        display: block;
    }
    .roadmap-timeline {
        gap: 0;
        flex-wrap: nowrap;
    }
}

.roadmap-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Fase em andamento / concluída no roadmap teaser */
.timeline-step--active {
    border-color: #22c55e;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
}

.timeline-step--active:hover {
    border-color: #22c55e;
}

.step-number--active {
    background: #22c55e;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.6);
}

.step-status {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #052e16;
    background: #22c55e;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
}

/* ===== Seção Tração / Alcance (primeiros 28 dias) ===== */
.traction {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.traction .container {
    display: flex;
    flex-direction: column;
}

.traction .section-header {
    order: 0;
}

.traction-social {
    order: 3;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    margin-top: 2rem;
}

.influencer-group-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.influencer-group-title i {
    color: var(--accent-primary);
    font-size: 1.6rem;
}

.influencer-grid {
    display: grid;
    gap: 1.5rem;
}

.influencer-grid--insta {
    grid-template-columns: repeat(4, 1fr);
}

.influencer-grid--x {
    grid-template-columns: repeat(5, 1fr);
}

.influencer-card {
    position: relative;
    margin: 0;
    background: var(--card-bg);
    padding: 0.75rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.influencer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.influencer-card--partner {
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px var(--shadow-light), 0 0 0 2px var(--accent-primary) inset;
}

.influencer-badge {
    position: absolute;
    top: 1.1rem;
    left: 1.1rem;
    z-index: 2;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    box-shadow: 0 4px 10px var(--shadow-light);
}

.influencer-badge--partner {
    color: var(--bg-primary);
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-highlight));
}

.influencer-badge--own {
    color: var(--text-muted);
    background: rgba(110, 231, 183, 0.12);
    border: 1px solid var(--border-color);
}

.influencer-shot {
    aspect-ratio: 399 / 871;
    width: 100%;
    background: var(--bg-primary);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
}

.influencer-shot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.influencer-caption {
    margin-top: 0.75rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.influencer-caption i {
    color: var(--accent-primary);
    font-size: 1rem;
}

/* Alcance combinado (seguidores somados) */
.reach-highlight {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.12), rgba(163, 230, 53, 0.07));
    border: 1px solid var(--accent-primary);
    border-radius: 20px;
    padding: 2.75rem 2rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.reach-number {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1;
    color: var(--accent-highlight);
    text-shadow: 0 2px 24px rgba(163, 230, 53, 0.3);
}

.reach-unit {
    font-size: 1.6rem;
    font-weight: 600;
    margin-left: 0.4rem;
    color: var(--text-secondary);
}

.reach-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 540px;
    line-height: 1.5;
}

.traction-analytics {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.stat-callout-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-callout {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-callout:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.stat-number {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1;
    color: var(--accent-primary);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
}

.stat-delta {
    margin-top: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
}

.stat-delta--up {
    color: var(--accent-highlight);
    background: rgba(163, 230, 53, 0.12);
}

.stat-delta--neutral {
    color: var(--text-muted);
    background: rgba(110, 231, 183, 0.1);
}

.analytics-frame {
    margin: 0 auto;
    background: var(--card-bg);
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px var(--shadow-light);
    max-width: 900px;
    width: 100%;
}

.analytics-shot {
    aspect-ratio: 893 / 478;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    background: var(--bg-primary);
}

.analytics-shot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.analytics-caption {
    margin-top: 0.9rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Responsivo - Seção Tração */
@media (max-width: 768px) {
    .influencer-grid--insta,
    .influencer-grid--x {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-callout-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .reach-number {
        font-size: 2.5rem;
    }

    .reach-unit {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .influencer-grid--insta,
    .influencer-grid--x {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-inline: auto;
    }

    .influencer-group-title {
        font-size: 1.3rem;
        justify-content: center;
    }
}

