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

:root {
    /* Lokalio Brand Colors */
    --lokalio-primary: #059669;
    --lokalio-primary-dark: #047857;
    --lokalio-secondary: #0d9488;
    --lokalio-accent: #10b981;
    --lokalio-light: #d1fae5;
    --lokalio-background: #f0fdf4;

    /* Neutral Colors */
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --border-color: #e5e7eb;
    --background-light: #f9fafb;
    --white: #ffffff;

    /* Social Colors */
    --whatsapp: #25d366;
    --tiktok: #000000;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-light);
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--lokalio-primary) 0%, var(--lokalio-secondary) 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.4);
}

.btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.btn-secondary:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
}

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

.nav-brand h1 {
    font-size: 1.5rem;
    color: var(--lokalio-primary);
}

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

.nav-link {
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Language Toggle */
.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--lokalio-primary);
    border: 2px solid var(--lokalio-primary);
    border-radius: 25px;
    padding: 0.4rem 0.8rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

.language-toggle:hover {
    background: var(--lokalio-secondary);
    border-color: var(--lokalio-secondary);
    transform: translateY(-1px);
}

.lang-icon {
    font-size: 1.1rem;
}

.lang-text {
    font-weight: 700;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #374151;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--lokalio-primary) 0%, var(--lokalio-secondary) 100%);
    color: white;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-graphic {
    position: relative;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.privacy-shield {
    font-size: 6rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.ai-icons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ai-icon {
    position: absolute;
    font-size: 2rem;
    animation: orbit 10s linear infinite;
}

.ai-icon:nth-child(1) {
    top: -60px;
    animation-delay: 0s;
}

.ai-icon:nth-child(2) {
    right: -60px;
    animation-delay: -3.3s;
}

.ai-icon:nth-child(3) {
    bottom: -60px;
    animation-delay: -6.6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(80px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(80px) rotate(-360deg); }
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1f2937;
}

/* Features Section */
.features {
    padding: 60px 0;
    background: white;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.feature-card p {
    color: #6b7280;
}

/* How It Works Section */
.how-it-works {
    padding: 60px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

/* Timeline Styles */
.timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    height: 100%;
    width: 3px;
    background: linear-gradient(180deg, var(--lokalio-primary) 0%, var(--lokalio-secondary) 100%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 70px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.15);
    border: 3px solid var(--lokalio-primary);
    z-index: 1;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.2);
}

.timeline-content h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.timeline-content p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Purchase Channels */
.purchase-channels {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.channel-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.channel-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.channel-badge.whatsapp {
    background: var(--whatsapp);
    color: white;
}

.channel-badge.tiktok {
    background: var(--tiktok);
    color: white;
}

/* Ollama Features Compact */
.ollama-features-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.feature-tag {
    background: #fef3c7;
    color: #92400e;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #fbbf24;
}

/* Activation Steps */
.activation-steps {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.step-badge {
    background: #e0f2fe;
    color: #0369a1;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #0ea5e9;
}

.step-arrow {
    color: #94a3b8;
    font-weight: bold;
    font-size: 1rem;
}

/* Benefits Section */
.benefits-section {
    margin-top: 4rem;
    text-align: center;
}

.benefits-section h3 {
    color: #1f2937;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(5, 150, 105, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Products Section */
.products {
    padding: 60px 0;
    background: #f9fafb;
}

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

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.product-card.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.product-header {
    padding: 2rem;
    background: linear-gradient(135deg, var(--lokalio-primary) 0%, var(--lokalio-secondary) 100%);
    color: white;
    text-align: center;
    position: relative;
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.product-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.product-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
}

.product-content {
    padding: 2rem;
}

.product-content p {
    margin-bottom: 1.5rem;
    color: #6b7280;
}

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

.product-features li {
    padding: 0.5rem 0;
    color: #4b5563;
}

/* About Section */
.about {
    padding: 60px 0;
    background: white;
}

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

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #6b7280;
    font-size: 1.1rem;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item h4 {
    margin-bottom: 0.5rem;
    color: var(--lokalio-primary);
}

.value-item p {
    color: #6b7280;
    font-size: 0.95rem;
}

.about-graphic {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.privacy-core {
    font-size: 6rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.floating-icons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.float-icon {
    position: absolute;
    font-size: 1.5rem;
    animation: random-float 4s ease-in-out infinite;
}

.float-icon:nth-child(1) {
    top: -40px;
    left: -40px;
    animation-delay: 0s;
}

.float-icon:nth-child(2) {
    top: -40px;
    right: -40px;
    animation-delay: 1.3s;
}

.float-icon:nth-child(3) {
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2.6s;
}

@keyframes random-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: #f9fafb;
}

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

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.contact-info p {
    margin-bottom: 2rem;
    color: #6b7280;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: #374151;
    transition: background 0.3s ease;
}

.contact-item:hover {
    background: #f3f4f6;
}

.contact-icon {
    font-size: 1.5rem;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--lokalio-primary);
}

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

/* New Simple Contact Section */
.contact-content-simple {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-full {
    text-align: center;
}

.contact-info-full h3 {
    color: var(--lokalio-primary);
    margin-bottom: 1rem;
}

.contact-info-full p {
    color: #6b7280;
    margin-bottom: 2rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-method-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-method-card h4 {
    color: var(--lokalio-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-email,
.contact-website,
.contact-whatsapp {
    color: var(--lokalio-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.contact-email:hover,
.contact-website:hover,
.contact-whatsapp:hover {
    color: var(--lokalio-primary);
    text-decoration: underline;
}

.contact-method-card p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #f9fafb;
}

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

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

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--lokalio-primary);
}

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.modal-header h2 {
    color: #1f2937;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #6b7280;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: #f3f4f6;
}

.modal-body {
    padding: 2rem;
}

/* Product Detail Modal Specific Styles */
.product-detail-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.product-detail-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.product-detail-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
    font-weight: 700;
}

.product-detail-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    margin: 2rem 0;
}

.section-title-small {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: left;
}

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

.product-feature-item {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 1.2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.1);
}

.product-feature-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #1f2937;
    font-weight: 600;
}

.product-feature-item p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Requirements Section */
.product-requirements {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #fbbf24;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(251, 191, 36, 0.1);
}

.product-requirements h4 {
    color: #92400e;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.product-requirements ul {
    color: #78350f;
    margin-left: 1.5rem;
    line-height: 1.6;
}

.product-requirements li {
    margin-bottom: 0.5rem;
}

/* Download Section */
.download-section {
    margin: 2rem 0;
}

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

.download-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--lokalio-primary) 0%, var(--lokalio-secondary) 100%);
}

.download-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(5, 150, 105, 0.2);
    border-color: var(--lokalio-primary);
}

.platform-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.download-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.model-info {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.btn-download {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 0.9rem;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

/* License Info Section */
.license-info {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border: 2px solid #3b82f6;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.1);
}

.license-info h4 {
    color: #1e40af;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.license-info p {
    color: #1e40af;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.license-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

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

    .btn-whatsapp, .btn-tiktok {
        width: 100%;
        max-width: 250px;
    }
}

.btn-download:hover {
    background: #059669;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.btn-tiktok {
    background: #000000;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-tiktok:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.license-info {
    background: #dbeafe;
    border: 1px solid #3b82f6;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
}

.license-info h4 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.license-info p {
    color: #1e40af;
    margin-bottom: 1rem;
}

/* Legal Content */
.legal-content h3 {
    color: #1f2937;
    margin: 2rem 0 1rem 0;
}

.legal-content h3:first-child {
    margin-top: 0;
}

.legal-content p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content ul {
    color: #6b7280;
    margin: 1rem 0 1rem 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        border-radius: 0 0 15px 15px;
    }

    .nav-menu.active .nav-link {
        color: #1f2937;
        padding: 0.75rem 0;
        border-bottom: 1px solid #e5e7eb;
    }

    .nav-menu.active .nav-link:last-child {
        border-bottom: none;
    }

    .nav-menu.active .language-toggle {
        background: var(--lokalio-primary);
        border-color: var(--lokalio-primary);
        color: white;
        margin-top: 0.5rem;
        justify-content: center;
    }

    .nav-toggle {
        display: flex;
    }

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

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

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .hero-graphic {
        height: 250px;
    }

    .privacy-shield {
        font-size: 4rem;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

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

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

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

    .modal-content {
        width: 95%;
        margin: 5% auto;
    }

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

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

    /* How It Works Mobile Responsive */
    .timeline {
        padding-left: 20px;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-item {
        padding-left: 50px;
        margin-bottom: 2rem;
    }

    .timeline-icon {
        width: 50px;
        height: 50px;
        left: -10px;
        font-size: 1.2rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .timeline-content h3 {
        font-size: 1.2rem;
    }

    .activation-steps {
        justify-content: center;
    }

    .benefits-cards {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

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

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 40px;
    }

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

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-graphic {
        height: 200px;
    }

    .privacy-shield {
        font-size: 3rem;
    }

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

    .benefits-section h3 {
        font-size: 1.3rem;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-item {
        padding-left: 45px;
        margin-bottom: 2rem;
    }

    .timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .timeline-content h3 {
        font-size: 1rem;
    }

    .container {
        padding: 0 15px;
    }

    .modal-header,
    .modal-body {
        padding: 1rem;
    }
}