/* Language switcher */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 16px;
    padding: 4px 8px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #ffffff;
}
.lang-switch a {
    text-decoration: none;
    font-weight: 500;
    color: #374151;
}
.lang-switch a.active {
    color: #2563eb;
}
.lang-switch span { color: #9ca3af; }

/* Ensure placement inside nav containers */
.nav-container, .nav .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* For menus that use ul right before switch */
.nav-links, .nav-menu {
    display: flex;
    align-items: center;
    gap: 16px;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background: #ffffff;
    min-height: 100vh;
}

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

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(150%);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Make .navbar behave like the main fixed header */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(150%);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

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

.logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex !important;
    align-items: center !important;
    gap: 3rem !important;
    justify-content: flex-end !important;
    margin-left: auto !important;
}

.nav-links {
    display: flex !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 3rem !important;
    align-items: center !important;
    justify-content: flex-end !important;
    margin-left: auto !important;
}

/* Normalize branding across navbar pages (Products/Science) to match others */
.navbar .brand-text {
    display: none !important;
}

.nav-links li {
    margin: 0 !important;
}

.nav-links a {
    text-decoration: none !important;
    color: #374151 !important;
    font-weight: 500 !important;
    transition: color 0.3s ease !important;
    font-size: 1rem !important;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2563eb !important;
}

.nav-toggle {
    display: none !important;
    flex-direction: column !important;
    gap: 4px !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    padding: 4px !important;
}

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

.nav-brand {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex-shrink: 0 !important;
}

.nav-logo {
    height: 40px !important;
    width: auto !important;
}

.brand-text {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: #1e293b !important;
}

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

.nav-link:hover,
.nav-link.active {
    color: #334155;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #334155;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 1rem 0;
    min-width: 200px;
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 0.5rem;
}

.dropdown-menu a:hover {
    background: rgba(100, 116, 139, 0.1);
    color: #1e40af;
    transform: translateX(4px);
}

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

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

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

.btn-primary {
    background: linear-gradient(135deg, #1e293b, #334155, #475569);
    background-size: 200% 200%;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background-position: 100% 50%;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(51, 65, 85, 0.4), 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #1e293b;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(135deg, #1e293b, #334155, #475569);
    border-radius: inherit;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclusive;
}

.btn-secondary:hover {
    background: #334155;
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(51, 65, 85, 0.3), 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(147, 51, 234, 0.08) 0%, transparent 40%),
        linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.8) 100%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(100, 116, 139, 0.3) 50%, transparent 100%);
}

.hero-container {
    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: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #ffffff;
    text-align: left;
    position: relative;
    letter-spacing: -0.02em;
}

.hero-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #475569, #64748b, #94a3b8);
    margin-top: 1.5rem;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #cbd5e1;
    margin-bottom: 0;
    line-height: 1.7;
    text-align: left;
    font-weight: 400;
    max-width: 600px;
}

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

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-mockup {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.mockup-mobile {
    background: #1f2937;
    border-radius: 25px;
    padding: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 2;
}

.mockup-screen {
    background: white;
    border-radius: 15px;
    padding: 20px;
    height: 400px;
}

.app-interface {
    height: 100%;
}

.app-header {
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.2rem;
}

.diagnosis-card {
    background: #f8fafc;
    border-radius: 10px;
    padding: 20px;
    border-left: 4px solid #2563eb;
}

.diagnosis-card h3 {
    color: #374151;
    margin-bottom: 15px;
}

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

.diagnosis-card li {
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
}

.panel-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.panel-container {
    text-align: center;
    max-width: 600px;
}

.panel-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.panel-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.panel-image-wrapper {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: visible;
    margin: 0 auto;
}

.panel-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
    transition: transform 0.3s ease;
}

.panel-image:hover {
    transform: scale(1.02);
}

.panel-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    z-index: 10;
}

/* Trust Section */
.trust {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
    border-top: 1px solid #e2e8f0;
}

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

.trust-item {
    text-align: center;
    padding: 3rem 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.trust-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: #3b82f6;
}

.trust-icon {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f172a;
    background: #f1f5f9;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    margin-bottom: 1rem;
    display: inline-block;
    text-align: center;
}

.trust-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #374151;
    line-height: 1.3;
}

.trust-item p {
    color: #64748b;
    line-height: 1.5;
    margin-top: 0.5rem;
    text-align: justify;
    text-justify: inter-word;
}

/* Value Section */
.value {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    border-top: 1px solid #e2e8f0;
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #0f172a;
}

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

.value-card {
    background: #f8fafc;
    padding: 3rem 2.5rem;
    border-radius: 12px;
    box-shadow: none;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #334155, #475569, #64748b);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px 0 0 12px;
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.value-icon {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f172a;
    background: #f1f5f9;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    margin-bottom: 1rem;
    text-align: center;
    display: inline-block;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #374151;
}

.value-card p {
    color: #64748b;
    line-height: 1.7;
    text-align: justify;
    text-justify: inter-word;
}

/* Page Header */
.page-header {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(147, 51, 234, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(100, 116, 139, 0.3) 50%, transparent 100%);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* About Page Styles */
.mission, .vision {
    padding: 80px 0;
}

.mission {
    background: white;
}

.vision {
    background: #f8fafc;
}

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

.mission-text h2, .vision-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #374151;
}

.mission-text p, .vision-text p {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.7;
    text-align: justify;
    text-justify: inter-word;
}

.mission-icon, .vision-icon {
    font-size: 8rem;
    text-align: center;
    opacity: 0.1;
}

.values {
    padding: 80px 0;
    background: white;
}

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

.values-grid .value-item:nth-child(4),
.values-grid .value-item:nth-child(5) {
    grid-column: span 1;
    margin: 0 auto;
    max-width: 300px;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


/* Ensure all elements within value-item are centered */
.value-item .value-icon,
.value-item h3,
.value-item p {
    text-align: center;
}


.value-item .value-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #0f172a;
}

.value-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #374151;
}

.value-item p {
    color: #64748b;
    line-height: 1.6;
    text-align: justify;
    text-justify: inter-word;
}

.team {
    padding: 80px 0;
    background: #f8fafc;
}

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

.team-member {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    max-width: 500px;
    width: 100%;
}

.member-photo {
    margin-bottom: 2rem;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto;
}

.team-member h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #374151;
}

.member-role {
    color: #334155;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.member-description {
    padding: 0;
    color: #64748b;
    line-height: 1.8;
    text-align: justify;
    text-justify: inter-word;
    font-size: 1.05rem;
    margin-top: 1rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* Products Page - Hero Section */
.product-detail {
    padding: 60px 0 !important;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
}

.product-hero-fullwidth {
    text-align: center !important;
    padding: 2rem 0 !important;
    max-width: none !important;
    width: 100% !important;
}

.product-images-section {
    margin-top: 3rem !important;
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 2rem !important;
}

.product-brand-section {
    padding: 2rem 0 !important;
}

.product-badge {
    margin-bottom: 1.5rem !important;
}

.badge-text {
    background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 25px !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}

.product-title {
    font-size: 6rem !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    margin-bottom: 2rem !important;
    line-height: 1.1 !important;
    background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    letter-spacing: -2px !important;
}

.product-subtitle {
    font-size: 1.8rem !important;
    font-weight: 500 !important;
    color: #374151 !important;
    margin-bottom: 2.5rem !important;
    line-height: 1.6 !important;
    max-width: 1000px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.product-description {
    margin-bottom: 3rem !important;
    max-width: 800px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.product-description p {
    font-size: 1.2rem !important;
    color: #64748b !important;
    line-height: 1.7 !important;
    text-align: center !important;
    text-justify: inter-word !important;
}

.product-cta {
    display: flex !important;
    gap: 1.5rem !important;
    align-items: center !important;
    justify-content: center !important;
}

.btn {
    padding: 12px 24px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: 2px solid transparent !important;
}

.btn-primary {
    background: #2563eb !important;
    color: white !important;
}

.btn-primary:hover {
    background: #1d4ed8 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3) !important;
}

.btn-outline {
    background: transparent !important;
    color: #2563eb !important;
    border-color: #2563eb !important;
}

.btn-outline:hover {
    background: #2563eb !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2) !important;
}

.product-showcase {
    text-align: center !important;
    padding: 3rem !important;
    width: 100% !important;
    overflow: visible !important;
}

.images-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2.5rem !important;
    margin: 2rem 0 !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.image-card {
    background: white !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    text-align: left !important;
}

.image-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.card-image {
    width: 100% !important;
    height: 250px !important;
    object-fit: cover !important;
    border-radius: 20px 20px 0 0 !important;
}

.card-content {
    padding: 1.5rem !important;
}

.card-content h4 {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 0.8rem !important;
}

.card-content p {
    font-size: 1rem !important;
    color: #64748b !important;
    line-height: 1.6 !important;
    text-align: justify !important;
    text-justify: inter-word !important;
    margin: 0 !important;
}

/* Responsive for Product Hero */
@media (max-width: 768px) {
    .product-title {
        font-size: 4rem !important;
    }
    
    .product-subtitle {
        font-size: 1.4rem !important;
    }
    
    .product-description p {
        font-size: 1.1rem !important;
    }
    
    .images-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin: 1.5rem 0 !important;
    }
    
    .card-image {
        height: 200px !important;
    }
    
    .card-content {
        padding: 1.2rem !important;
    }
    
    .card-content h4 {
        font-size: 1.1rem !important;
    }
    
    .card-content p {
        font-size: 0.95rem !important;
    }
}

.product-showcase h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 2rem;
}

.showcase-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 1.5rem;
    justify-items: center;
    align-items: center;
    width: 100%;
    max-width: none;
}

.showcase-image {
    margin-bottom: 2rem;
}

.showcase-images-small {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: center;
    width: 100%;
    max-width: none;
}

.showcase-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.showcase-item .demo-image {
    max-width: 600px;
    width: 100%;
}

.demo-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.demo-image:hover {
    transform: scale(1.02);
}

.showcase-image .demo-image {
    max-width: 800px;
    width: 100%;
}

.image-caption {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0;
}

/* New structure for showcase */
.main-showcase {
    text-align: center;
    margin-bottom: 3rem;
}

.main-demo {
    max-width: 700px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.main-demo:hover {
    transform: scale(1.02);
}

.main-caption {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
    margin: 0;
}

/* Features grid */
.features-grid {
    display: flex !important;
    flex-direction: row !important;
    gap: 3rem;
    margin-bottom: 2rem;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.feature-demo {
    display: block !important;
    text-align: center;
    flex: 0 0 auto;
    width: calc(33.333% - 2rem);
}

.feature-image {
    width: 100% !important;
    height: auto !important;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    max-width: none !important;
}

.feature-image:hover {
    transform: scale(1.05);
}

.feature-caption {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    margin: 0;
}

/* Gallery Preview Style */
.interactive-showcase {
    display: flex !important;
    gap: 3rem !important;
    align-items: center !important;
    margin-bottom: 2rem !important;
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 2rem !important;
}

.interactive-showcase .thumbnail-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    flex-shrink: 0 !important;
}

.interactive-showcase .main-display {
    flex: 1 !important;
    text-align: center !important;
    padding: 2rem !important;
}

.image-placeholder {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 3rem;
    border: 2px dashed #cbd5e1;
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    border-color: #2563eb;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.preview-image {
    max-width: 400px !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 15px !important;
    margin-bottom: 1rem !important;
    opacity: 0.8 !important;
}

.preview-text {
    font-size: 1.2rem !important;
    color: #64748b !important;
    font-weight: 500 !important;
    margin: 0 !important;
}

.main-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.interactive-showcase .thumbnail{
    width: 120px !important;
    height: 90px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    border: 2px solid transparent !important;
    transition: all 0.3s ease !important;
    opacity: 0.8 !important;
    flex-shrink: 0 !important;
}

.interactive-showcase .thumbnail:hover{
    opacity: 1 !important;
    transform: scale(1.1) !important;
    border-color: #2563eb !important;
}

.thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
}

.interactive-showcase .thumbnail.active {
    border-color: #2563eb !important;
    opacity: 1 !important;
    transform: scale(1.05) !important;
}

/* Science Page Styles */
.science-hero {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #334155 100%) !important;
    color: white !important;
    padding: 140px 0 80px !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
    min-height: 50vh !important;
}

.science-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(147, 51, 234, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.science-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(100, 116, 139, 0.3) 50%, transparent 100%);
}

.hero-content {
    max-width: 1000px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
    position: relative !important;
    z-index: 1 !important;
}

.science-hero h1 {
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    margin-bottom: 1.5rem !important;
    color: white !important;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: center;
    text-align-last: center;
    text-justify: inter-word;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.1) ;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.science-hero-subtitle {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 3rem;
    line-height: 1.7;
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    font-weight: 400;
}

.validation-highlights {
    display: flex !important;
    justify-content: center !important;
    gap: 3rem !important;
    flex-wrap: wrap !important;
}

.highlight-stat {
    text-align: center !important;
}

.stat-number {
    display: block !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: #3b82f6 !important;
    margin-bottom: 0.5rem !important;
}

.stat-label {
    font-size: 1rem !important;
    color: #e2e8f0 !important;
    font-weight: 500 !important;
}

.validation-process {
    padding: 80px 0 !important;
    background: #f8fafc !important;
}

.process-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 2rem !important;
    margin-top: 3rem !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 2rem !important;
}

.process-item {
    background: white !important;
    padding: 2rem !important;
    border-radius: 15px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
    text-align: center !important;
    border-top: 4px solid #2563eb !important;
}

.process-icon {
    font-size: 2rem !important;
    margin-bottom: 1rem !important;
    display: block !important;
    font-weight: 700 !important;
    color: #2563eb !important;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
    padding: 15px 20px !important;
    border-radius: 15px !important;
    width: fit-content !important;
    margin: 0 auto 1rem auto !important;
}

.process-item h3 {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 1rem !important;
}

.process-item p {
    color: #64748b !important;
    line-height: 1.6 !important;
    font-size: 1rem !important;
    text-align: justify !important;
    text-justify: inter-word !important;
}

.deep-learning {
    padding: 80px 0 !important;
    background: white !important;
}

.content-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 4rem !important;
    align-items: start !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}

.text-content h2 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 2rem !important;
}

.feature-list {
    space-y: 1.5rem !important;
}

.feature-item {
    margin-bottom: 2rem !important;
}

.feature-item h4 {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: #374151 !important;
    margin-bottom: 0.8rem !important;
}

.feature-item p {
    color: #64748b !important;
    line-height: 1.6 !important;
    text-align: justify !important;
    text-justify: inter-word !important;
}

.metrics-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
}

.metric-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
    padding: 1.5rem !important;
    border-radius: 12px !important;
    text-align: center !important;
    border: 1px solid #0ea5e9 !important;
}

.metric-icon {
    font-size: 1.2rem !important;
    margin-bottom: 1rem !important;
    font-weight: 700 !important;
    color: #0ea5e9 !important;
    background: #ffffff !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
    border: 1px solid #0ea5e9 !important;
    width: fit-content !important;
    margin: 0 auto 1rem auto !important;
}

.metric-card h4 {
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: #0c4a6e !important;
    margin-bottom: 0.5rem !important;
}

.metric-value {
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: #1e40af !important;
    margin-bottom: 0.5rem !important;
}

.metric-card p {
    font-size: 0.9rem !important;
    color: #64748b !important;
    margin: 0 !important;
}

.human-oversight {
    padding: 80px 0 !important;
    background: #f8fafc !important;
}

.oversight-content {
    display: grid !important;
    grid-template-columns: 2fr 1fr !important;
    gap: 4rem !important;
    align-items: start !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}

.oversight-text h3 {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 1.5rem !important;
}

.oversight-text > p {
    font-size: 1.1rem !important;
    color: #64748b !important;
    line-height: 1.7 !important;
    margin-bottom: 2.5rem !important;
    text-align: justify !important;
    text-justify: inter-word !important;
}

.oversight-features {
    space-y: 1.5rem !important;
}

.oversight-item {
    margin-bottom: 1.5rem !important;
}

.oversight-item h4 {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #374151 !important;
    margin-bottom: 0.5rem !important;
}

.oversight-item p {
    color: #64748b !important;
    line-height: 1.6 !important;
    text-align: justify !important;
    text-justify: inter-word !important;
}

.expert-portrait {
    text-align: center !important;
}

.portrait-placeholder {
    background: white !important;
    padding: 2rem !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.portrait-icon {
    font-size: 2rem !important;
    margin-bottom: 1rem !important;
    font-weight: 700 !important;
    color: #2563eb !important;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
    padding: 15px 20px !important;
    border-radius: 15px !important;
    width: fit-content !important;
    margin: 0 auto 1rem auto !important;
}

.portrait-placeholder h4 {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 0.5rem !important;
}

.portrait-placeholder p {
    color: #64748b !important;
    line-height: 1.5 !important;
    margin-bottom: 1rem !important;
}

.expertise {
    display: inline-block !important;
    background: #e0f2fe !important;
    color: #0c4a6e !important;
    padding: 4px 12px !important;
    border-radius: 20px !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
}

.data-privacy {
    padding: 80px 0 !important;
    background: white !important;
}

.privacy-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 2rem !important;
    margin-top: 3rem !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 2rem !important;
}

.privacy-item {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%) !important;
    padding: 2rem !important;
    border-radius: 15px !important;
    text-align: center !important;
    border: 1px solid #f59e0b !important;
}

.privacy-icon {
    font-size: 1.2rem !important;
    margin-bottom: 1rem !important;
    font-weight: 700 !important;
    color: #f59e0b !important;
    background: #ffffff !important;
    padding: 10px 15px !important;
    border-radius: 8px !important;
    border: 1px solid #f59e0b !important;
    width: fit-content !important;
    margin: 0 auto 1rem auto !important;
}

.privacy-item h3 {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #92400e !important;
    margin-bottom: 1rem !important;
}

.privacy-item p {
    color: #78350f !important;
    line-height: 1.6 !important;
    text-align: justify !important;
    text-justify: inter-word !important;
}

/* Responsive para página Science */
@media (max-width: 768px) {
    .science-hero h1 {
        font-size: 2.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
    }
    
    .validation-highlights {
        gap: 2rem !important;
        flex-direction: column !important;
    }
    
    .process-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .content-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr !important;
    }
    
    .oversight-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    
    .privacy-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .nav-menu {
        gap: 2rem !important;
    }
    
    .nav-links {
        gap: 2rem !important;
    }
}

/* Modal styles */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: modalFadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    max-width: 95%;
    max-height: 95%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: white;
    transform: scale(1.1);
}

.modal-image {
    max-width: 100%;
    max-height: 80vh;
    height: auto;
    display: block;
    margin: 0 auto;
}

.modal-info {
    padding: 20px;
    text-align: center;
    background: #f8fafc;
}

.modal-info p {
    margin: 0 0 10px 0;
    font-weight: 600;
    color: #374151;
}

.modal-hint {
    color: #64748b !important;
    font-size: 0.9rem !important;
    font-weight: normal !important;
}

/* Gallery Modal Styles - Nueva galería */
.gallery-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.95) !important;
    z-index: 1000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    backdrop-filter: blur(10px) !important;
}

.gallery-container {
    position: relative !important;
    max-width: 90vw !important;
    max-height: 90vh !important;
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
}

.gallery-image {
    max-width: 70vw !important;
    max-height: 80vh !important;
    object-fit: contain !important;
    border-radius: 15px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
}

.gallery-nav {
    width: 50px !important;
    height: 50px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50% !important;
    color: white !important;
    font-size: 24px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: scale(1.1) !important;
}

.gallery-close {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    width: 50px !important;
    height: 50px !important;
    background: rgba(239, 68, 68, 0.9) !important;
    border: none !important;
    border-radius: 50% !important;
    color: white !important;
    font-size: 28px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
}

.gallery-close:hover {
    background: rgba(239, 68, 68, 1) !important;
    transform: scale(1.1) !important;
}

.gallery-info {
    position: absolute !important;
    bottom: 30px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: rgba(0, 0, 0, 0.8) !important;
    color: white !important;
    padding: 15px 25px !important;
    border-radius: 25px !important;
    font-size: 1.1rem !important;
    backdrop-filter: blur(10px) !important;
}

.gallery-counter {
    position: absolute !important;
    top: 20px !important;
    left: 20px !important;
    background: rgba(0, 0, 0, 0.8) !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 20px !important;
    font-size: 1rem !important;
    backdrop-filter: blur(10px) !important;
}
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideIn {
    from { 
        transform: scale(0.8);
        opacity: 0;
    }
    to { 
        transform: scale(1);
        opacity: 1;
    }
}

.showcase-badge {
    margin-top: 2rem !important;
    text-align: center !important;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
    padding: 1.5rem 2rem !important;
    border-radius: 15px !important;
    border: 2px solid #0ea5e9 !important;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.15) !important;
}

.showcase-badge span, .showcase-badge {
    background: transparent !important;
    color: #0c4a6e !important;
    padding: 0 !important;
    border-radius: 0 !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    margin: 0 !important;
}

.product-header {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
    align-items: start !important;
    margin-bottom: 4rem !important;
    width: 100% !important;
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 2rem !important;
}

.product-logo h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.product-tagline {
    font-size: 1.35rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: justify;
    text-justify: inter-word;
}

.product-mockup {
    display: flex;
    justify-content: center;
}

.mockup-container {
    background: #1f2937;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
}

.app-demo {
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.app-header {
    background: #2563eb;
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 600;
}

.app-body {
    padding: 20px;
}

.diagnosis-panel h4 {
    color: #374151;
    margin-bottom: 15px;
}

.diagnosis-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
}

.diagnosis-probability {
    font-weight: 600;
    color: #2563eb;
}

.features-section {
    margin-bottom: 4rem;
}

.features-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #374151;
}

.features-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2.5rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.feature-card {
    background: white !important;
    padding: 2.5rem 2rem !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid #e2e8f0 !important;
    border-top: 4px solid #2563eb !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
}

.feature-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.15) !important;
}

.feature-icon {
    font-size: 2.8rem !important;
    margin-bottom: 1.5rem !important;
    font-weight: 700 !important;
    color: #2563eb !important;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
    padding: 15px 20px !important;
    border-radius: 15px !important;
    display: inline-block !important;
}

.feature-card h4 {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    color: #1e293b !important;
}

.feature-card p {
    color: #64748b !important;
    line-height: 1.7 !important;
    font-size: 1.05rem !important;
    text-align: justify !important;
    text-justify: inter-word !important;
}

.impact-section {
    margin-bottom: 4rem;
}

.impact-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #374151;
}

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

.impact-chart {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.chart-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.bar-label {
    min-width: 150px;
    font-weight: 500;
    color: #374151;
}

.bar-fill {
    height: 30px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 15px;
    min-width: 100px;
}

.bar-value {
    font-weight: 700;
    color: #2563eb;
}

.impact-text ul {
    margin-top: 1rem;
}

.impact-text li {
    color: #64748b;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.impact-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.roadmap-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #374151;
}

.roadmap-timeline {
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e5e7eb;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-marker {
    background: #2563eb;
    color: white;
    width: 100px;
    height: 50px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #374151;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Science Page */
.evidence {
    padding: 80px 0;
    background: white;
}

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

.evidence-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #374151;
}

.evidence-text p {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.method-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
}

.method-icon {
    font-size: 2rem;
}

.method-item h3 {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.method-item p {
    color: #64748b;
    font-size: 0.9rem;
}

.research-chart {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.chart-title {
    font-weight: 600;
    color: #374151;
    margin-bottom: 1.5rem;
    text-align: center;
}

.chart-steps {
    display: grid;
    gap: 1rem;
}

.step {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: #374151;
    border-left: 4px solid #2563eb;
}

.pilots {
    padding: 80px 0;
    background: #f8fafc;
}

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

.pilot-location h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.pilot-location p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.kpis h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 1.5rem;
}

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

.kpi-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.kpi-metric {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.kpi-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.data-visualization {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.viz-title {
    font-weight: 600;
    color: #374151;
    margin-bottom: 1.5rem;
    text-align: center;
}

.metric-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.metric-label {
    min-width: 120px;
    font-size: 0.9rem;
    color: #64748b;
}

.bar {
    flex: 1;
    height: 20px;
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 10px;
}

.metric-value {
    font-weight: 600;
    color: #2563eb;
    min-width: 60px;
    text-align: right;
}

.publications {
    padding: 80px 0;
    background: white;
}

.publications-content {
    display: grid;
    gap: 2rem;
}

.publication-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #2563eb;
}

.publication-status {
    background: #fef3c7;
    color: #92400e;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.publication-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

.publication-item p {
    color: #64748b;
    line-height: 1.6;
}

/* World Map Section */
.world-map-section {
    padding: 80px 0;
    background: #f8fafc;
}

.world-map-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.world-map-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #374151;
}

.world-map-intro p {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.world-map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.world-map {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.world-map svg {
    width: 100%;
    height: auto;
    max-height: 400px;
}

.marker {
    cursor: pointer;
    transition: all 0.3s ease;
}

.marker:hover {
    r: 12;
    filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.3));
}

.marker-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    fill: #374151;
}

.collaboration-legend {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.collaboration-legend h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 2rem;
}

.legend-items {
    display: grid;
    gap: 1.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.legend-marker {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
}

.legend-marker.usa {
    background: #2563eb;
}

.legend-marker.uruguay {
    background: #10b981;
}

.legend-marker.argentina {
    background: #f59e0b;
}

.legend-marker.brazil {
    background: #ef4444;
}

.legend-marker.barcelona {
    background: #8b5cf6;
}

.legend-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.25rem;
}

.legend-content p {
    font-size: 0.9rem;
    color: #64748b;
}

/* Collaborations Page */
.collaborations {
    padding: 80px 0;
}

.collaborations-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.collaborations-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #374151;
}

.collaborations-intro p {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.collaboration-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.collaboration-logo {
    margin-bottom: 1.5rem;
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto;
}

.collaboration-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.collaboration-location {
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 1rem;
}

.collaboration-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.collaboration-focus {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.focus-tag {
    background: #e0e7ff;
    color: #3730a3;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.research-areas {
    padding: 80px 0;
    background: #f8fafc;
}

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

.research-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.research-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.research-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

.research-item p {
    color: #64748b;
    line-height: 1.6;
}

.partnership-benefits {
    padding: 80px 0;
    background: white;
}

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

.benefits-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

.benefits-text p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.benefits-chart {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.chart-title {
    font-weight: 600;
    color: #374151;
    margin-bottom: 1.5rem;
    text-align: center;
}

.impact-metrics {
    display: grid;
    gap: 1rem;
}

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

.metric-label {
    min-width: 120px;
    font-size: 0.9rem;
    color: #64748b;
}

.metric-bar {
    flex: 1;
    height: 20px;
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.metric-value {
    font-weight: 600;
    color: #10b981;
    min-width: 80px;
    text-align: right;
}

/* News Page */
.news {
    padding: 80px 0;
}

.news-grid {
    display: grid;
    gap: 2rem;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0;
}

.news-card.featured {
    grid-column: 1 / -1;
    grid-template-columns: 300px 1fr;
}

.news-image {
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    font-size: 4rem;
    opacity: 0.3;
}

.news-content {
    padding: 2rem;
}

.news-date {
    color: #2563eb;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.news-card h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 1rem;
}

.news-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

.news-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.news-link {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

.news-link:hover {
    text-decoration: underline;
}

.newsletter {
    padding: 80px 0;
    background: #2563eb;
    color: white;
    text-align: center;
}

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

.newsletter-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
}

.newsletter-form button {
    background: white;
    color: #2563eb;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

/* Contact Page */
.contact {
    padding: 80px 0;
}

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

.contact-form-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 2rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: grid;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: #64748b;
}

.checkbox-group a {
    color: #2563eb;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.contact-info-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 2rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2563eb;
    background: #f8fafc;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    width: 80px;
    text-align: center;
    flex-shrink: 0;
}

.contact-details h3 {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #64748b;
}

.contact-details a {
    color: #2563eb;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.cta-buttons {
    display: grid;
    gap: 1rem;
}

.faq {
    padding: 80px 0;
    background: #f8fafc;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Market Section */
.market-section {
    padding: 80px 0;
    background: #f8fafc;
}

.market-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #374151;
    text-align: center;
}

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

.market-stats {
    display: grid;
    gap: 2rem;
}

.market-region {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #2563eb;
}

.market-region h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

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

.stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb;
}

.stat-label {
    color: #64748b;
    font-size: 0.9rem;
}

.market-insights {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.market-insights h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1.5rem;
}

.market-insights p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.market-insights ul {
    list-style: none;
}

.market-insights li {
    color: #64748b;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.market-insights li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

/* Footer */
/* Activities Section */
.activities {
    padding: 80px 0;
    background: #f8fafc;
}

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

.activity-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-top: 4px solid #2563eb;
    transition: transform 0.3s ease;
}

.activity-item:hover {
    transform: translateY(-5px);
}

.activity-icon {
    font-size: 0.8rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 1rem;
    background: #f0f9ff;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    border: 2px solid #e0f2fe;
    width: auto;
    min-width: 120px;
}

.activity-icon .icon-placeholder {
    font-size: 0.8rem;
}

.activity-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.activity-item p {
    color: #64748b;
    line-height: 1.6;
    text-align: justify;
    text-justify: inter-word;
}

/* Hero Description Styles */
.hero-description {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    height: 100%;
}

.description-block {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #2563eb;
    max-width: 500px;
}

.description-block p {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: justify;
    text-justify: inter-word;
}

.description-block p:last-child {
    margin-bottom: 0;
}

/* How it Works Section */
.how-it-works {
    padding: 80px 0;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
}

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

.workflow-step {
    background: #f8fafc;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.workflow-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: #e2e8f0;
    line-height: 1;
    margin-bottom: 1rem;
}

.workflow-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.workflow-step p {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
}

/* Research Background Section */
.research-background {
    padding: 60px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.research-content {
    max-width: 900px;
    margin: 0 auto;
}

.research-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    border-left: 4px solid #334155;
}

.research-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.research-header .research-icon {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f172a;
    background: #f1f5f9;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
}

.research-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.research-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.25rem;
    text-align: justify;
    text-justify: inter-word;
}

.research-text p:last-child {
    margin-bottom: 0;
}

.research-text em {
    font-style: italic;
    color: #64748b;
    font-weight: 500;
}

/* Statistics Section */
.statistics {
    padding: 60px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    position: relative;
}

.statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #d1d5db;
    font-weight: 500;
    line-height: 1.4;
}

/* About Founders Section */
.about-founders {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    border-top: 1px solid #e2e8f0;
}

.founders-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem auto;
    position: relative;
    z-index: 1;
}

.founders-statement {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #0f172a;
    font-weight: 500;
    padding: 3rem 4rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #334155;
    box-shadow: none;
    border: 1px solid #e2e8f0;
    border-left-width: 4px;
}

.founders-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.founder-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.founder-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.founder-title h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.founder-quote blockquote {
    margin: 0 0 2rem 0;
    padding: 0;
    position: relative;
}

.founder-quote blockquote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -15px;
    font-size: 5rem;
    color: rgba(100, 116, 139, 0.15);
    font-family: serif;
    line-height: 1;
}

.founder-quote p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #374151;
    font-style: italic;
    margin: 0;
}

.quote-author {
    border-top: 2px solid #e5e7eb;
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.quote-author h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.quote-author span {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.founder-bio {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.founder-bio p {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    text-align: justify;
    text-justify: inter-word;
    margin-bottom: 1rem;
}

.founder-bio p:last-child {
    margin-bottom: 0;
}

.founder-bio em {
    font-style: italic;
    color: #64748b;
}

.founders-mission {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.founders-mission p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 1.5rem;
    padding: 0 2rem;
}

.founders-mission p:last-child {
    margin-bottom: 0;
    font-weight: 500;
    color: #1e293b;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(100, 116, 139, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(100, 116, 139, 0.3);
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(100, 116, 139, 0.15);
    border-color: rgba(100, 116, 139, 0.3);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    border-top: 1px solid #e5e7eb;
    padding-top: 1.5rem;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Introduction Section */
.introduction {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
    border-top: 1px solid #e2e8f0;
}

.intro-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.introduction h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3rem;
}

.intro-text {
    margin-bottom: 4rem;
}

.intro-text p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: justify;
    text-justify: inter-word;
}

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

.highlight-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2563eb;
    background: #ffffff;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    display: inline-block;
    margin-bottom: 1rem;
}

.highlight-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.highlight-item p {
    color: #64748b;
    line-height: 1.6;
    text-align: justify;
    text-justify: inter-word;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .description-block {
        padding: 2rem;
        margin: 1rem;
    }
    
    .description-block p {
        font-size: 0.95rem;
    }
    
    .introduction h2 {
        font-size: 2rem;
    }
    
    .intro-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.footer {
    background: #0f172a;
    color: white;
    padding: 60px 0 20px;
    position: relative;
    border-top: 1px solid #1e293b;
}

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

.footer-brand p {
    color: #d1d5db;
    margin-top: 1rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    justify-items: center;
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.footer-column a {
    color: #f1f5f9;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 2px 4px;
    border-radius: 4px;
}

.footer-column a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #6b7280;
    color: #d1d5db;
}

.footer-bottom a {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
    padding: 2px 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
    text-decoration: underline;
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .mission-content,
    .vision-content,
    .evidence-content,
    .benefits-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-icon {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .product-header {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .impact-content {
        grid-template-columns: 1fr;
    }
    
    .pilots-content {
        grid-template-columns: 1fr;
    }
    
    .market-content {
        grid-template-columns: 1fr;
    }
    
    .world-map-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none !important;
    }
    
    .nav-toggle {
        display: flex !important;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .workflow-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .founders-content {
        grid-template-columns: 1fr !important;
    }
    
    .founder-header {
        flex-direction: column;
        text-align: center;
    }
    
    .founders-statement {
        padding: 2rem;
        font-size: 1.3rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .trust-grid,
    .value-grid,
    .values-grid,
    .features-grid,
    .research-grid,
    .collaborations-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;



        gap: 2rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .team-member {
        max-width: 100%;
        padding: 2rem;
    }
    
    .member-description {
        max-width: 100%;
        padding: 0 0.5rem;
    }
    
    .showcase-images-small {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .showcase-image .demo-image {
        max-width: 500px;
    }
    
    .showcase-item .demo-image {
        max-width: 450px;
    }
    
    .showcase-item {
        width: 100%;
        margin: 0 auto;
    }
    
    .features-grid {
        flex-direction: row !important;
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .feature-demo {
        flex: 1 1 auto !important;
        min-width: 250px;
    }
    
    .interactive-showcase {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .thumbnail-row {
        gap: 8px;
        justify-content: center;
    }
    
    .thumbnail {
        width: 130px;
    }
    
    .main-image {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .main-demo {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .feature-image {
        max-width: 100%;
    }
    
    .kpi-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card,
    .news-card.featured {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .panel-container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .panel-title {
        font-size: 1.25rem;
    }
    
    .panel-subtitle {
        font-size: 0.9rem;
    }
    
    .panel-image-wrapper {
        padding: 15px;
    }
    
    .panel-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
        top: -8px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 50px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

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

.hero-content,
.value-card,
.team-member,
.feature-card,
.news-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Button Loading States */
.btn-loading {
    position: relative;
    opacity: 0.7;
}

.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

.btn-loading .loading-spinner {
    animation: spin 1s linear infinite;
}

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

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Enhanced Button States */
.btn:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-primary:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.3);
}

.btn-secondary:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.3);
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cta-section,
    .newsletter {
        display: none;
    }
    
    .page-header {
        padding: 20px 0;
    }
    
    body {
        font-size: 12px;
        line-height: 1.4;
    }
}

/* Thank You Page Styles */
.thank-you {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.thank-you-message {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.thank-you-details {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(100, 116, 139, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.thank-you-details h3 {
    color: #f1f5f9;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.thank-you-details ul {
    list-style: none;
    padding: 0;
}

.thank-you-details li {
    color: #cbd5e1;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.thank-you-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.thank-you-contact {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
}

.thank-you-contact p {
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}

.thank-you-contact strong {
    color: #f1f5f9;
}

.thank-you-contact a {
    color: #60a5fa;
    text-decoration: none;
}

.thank-you-contact a:hover {
    color: #93c5fd;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .thank-you h1 {
        font-size: 2.5rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .thank-you-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

