/* =========================================
   GET INNOVATION - DESIGN SYSTEM & STYLES
   ========================================= */

/* --- CSS Variables --- */
:root {
    /* Colors */
    --color-bg-main: #ffffff;
    --color-bg-light: #f8fafc;
    --color-bg-dark: #0f172a;
    --color-bg-darker: #020617;
    
    --color-text-main: #334155;
    --color-text-dark: #0f172a;
    --color-text-light: #94a3b8;
    --color-text-white: #ffffff;
    
    --color-primary: #008568; /* Green - Get Innovation */
    --color-primary-dark: #006B52;
    --color-secondary: #0B1F15; /* Dark Green */
    --color-accent: #008568;
    --color-accent-hover: #006B52;
    --color-whatsapp: #25D366;
    
    --color-alert: #f59e0b;
    --color-success: #10b981;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}

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

.text-gradient {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.text-alert {
    color: var(--color-alert);
}

.text-white {
    color: var(--color-text-white);
}

.text-success {
    color: var(--color-success);
}

/* --- Utility Classes --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--color-bg-light);
}

.bg-dark {
    background-color: var(--color-bg-dark);
}

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

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

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--color-accent);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.39);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

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

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

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* --- Components --- */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(0, 180, 216, 0.1);
    color: var(--color-primary-dark);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    border: 1px solid rgba(0, 180, 216, 0.2);
}

.card {
    background: white;
    border-radius: var(--border-radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 1rem 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--color-secondary);
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    padding: 150px 0 100px;
    background-color: var(--color-bg-darker);
    color: white;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.shape-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--color-secondary);
}

.shape-2 {
    bottom: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--color-primary);
    opacity: 0.2;
}

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

.hero-content h1 {
    color: white;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.subheadline {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-light);
    opacity: 0.9;
}

/* Glass Mockup Card */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-glass);
}

.mockup-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
}

.mockup-header .title {
    margin-left: 1rem;
    font-size: 0.875rem;
    font-family: var(--font-heading);
    color: rgba(255,255,255,0.7);
}

.mockup-body {
    padding: 2rem;
}

.mockup-stat {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.mockup-stat .label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
}

.mockup-stat .value {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: white;
}

.mockup-stat .trend {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    color: var(--color-success);
    background: rgba(16, 185, 129, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
    width: fit-content;
    margin-top: 0.5rem;
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    height: 100px;
    margin-bottom: 2rem;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, var(--color-primary-dark), var(--color-primary));
    border-radius: 4px 4px 0 0;
    opacity: 0.8;
}

.mockup-notification {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: white;
}

/* --- Pain Points --- */
.pain-card .card-icon {
    width: 60px;
    height: 60px;
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-alert);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.pain-card h3 {
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

.section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
}

/* --- Services --- */
.services-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-list {
    margin-top: 2rem;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: var(--color-text-main);
}

.service-list li i {
    color: var(--color-primary);
    font-size: 1.5rem;
}

.app-highlight-card {
    background: linear-gradient(135deg, var(--color-secondary), #1e293b);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.app-highlight-card h3 {
    color: white;
    font-size: 1.5rem;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--color-primary);
    margin: 0 auto 1.5rem;
}

.highlight-note {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.8);
    font-style: italic;
    margin-bottom: 2rem;
}

/* --- Differentials --- */
.diff-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
}

.diff-card h3 {
    color: white;
    margin-bottom: 0;
    font-size: 1.125rem;
}

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

.diff-card:hover {
    background: rgba(255,255,255,0.1);
}

/* --- Target Audience --- */
.audience-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.audience-image .image-placeholder {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: var(--color-text-light);
    box-shadow: var(--shadow-md);
}

.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    width: 260px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 14px 10px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.25), inset 0 0 0 2px #333;
    position: relative;
}

.phone-frame::before {
    content: '';
    display: block;
    width: 80px;
    height: 6px;
    background: #333;
    border-radius: 3px;
    margin: 0 auto 12px;
}

.phone-screen {
    border-radius: 28px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 9/19.5;
}

.phone-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    transition: background 0.3s;
    cursor: pointer;
}

.dot.active {
    background: #ffffff;
}

.audience-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.audience-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.item-icon {
    width: 40px;
    height: 40px;
    background: var(--color-bg-light);
    color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.audience-item p {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-text-dark);
    margin-top: 0.25rem;
}

/* --- Not Us --- */
.not-us-card {
    background: var(--color-bg-dark);
    border-radius: var(--border-radius-lg);
    padding: 3.5rem 4rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.not-us-left {
    flex: 0 0 45%;
}

.not-us-left h2 {
    font-size: 2rem;
    color: var(--color-text-white);
    line-height: 1.2;
    margin: 0;
}

.not-us-right {
    flex: 1;
}

.not-us-card p {
    font-size: 1.0625rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin: 0;
}

/* --- Testimonials --- */
.testimonial-card {
    position: relative;
    padding-top: 3rem;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 2rem;
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--color-text-dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--color-bg-light);
    padding-top: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--color-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
}

.author-info strong {
    display: block;
    color: var(--color-text-dark);
}

.author-info span {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

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

.credibility-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 4rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--color-secondary);
    background: var(--color-bg-light);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
}

.badge-item i {
    color: var(--color-primary);
    font-size: 1.5rem;
}

/* --- Final CTA --- */
.final-cta {
    background: var(--color-secondary);
    color: white;
    text-align: center;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    color: white;
}

.cta-box p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.8);
}

.business-hours {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
}

.footer-logo i {
    color: var(--color-primary);
}

/* --- Floating WhatsApp --- */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: var(--color-whatsapp);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 14px 0 rgba(37, 211, 102, 0.39);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

/* --- Responsive --- */
@media (max-width: 992px) {
    .hero-container,
    .services-wrapper,
    .audience-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero {
        padding: 120px 0 80px;
        text-align: center;
    }

    .hero-actions {
        align-items: center;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .audience-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .grid-3, .grid-2 {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .header-container .btn {
        display: none;
    }

    .not-us-card {
        padding: 2rem;
        flex-direction: column;
        gap: 1.5rem;
    }

    .not-us-left {
        flex: none;
    }

    .not-us-left h2 {
        font-size: 1.5rem;
    }
    
    .credibility-badges {
        flex-direction: column;
        align-items: stretch;
    }
    
    .badge-item {
        justify-content: center;
    }
}
