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

:root {
    --primary: #0C456B;
    --primary-foreground: #ffffff;
    --accent: #2EBAAA;
    --accent-foreground: #ffffff;
    --background: #ffffff;
    --foreground: #1f2937;
    --secondary: #f3f4f6;
    --muted: #6b7280;
    --muted-foreground: #6b7280;
    --card: #ffffff;
    --card-foreground: #1f2937;
    --card-featured:rgba(59, 130, 246, 0.1);
    --border: #e5e7eb;
    --destructive: #ef4444;
    --green: #10b981;
    --yellow: #f59e0b;
    --red: #ef4444;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

@media (min-width: 1024px) {
    .container { padding: 0 2rem; }
}

section {
    padding: 3rem 0;
}

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

.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 2.5rem; }
.mb-16 { margin-bottom: 3rem; }

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-12 { margin-top: 3rem; }

h1 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    h1 { font-size: 3.75rem; }
    h2 { font-size: 3rem; }
}

@media (min-width: 1024px) {
    h1 { font-size: 4.5rem; }
    h2 { font-size: 3rem; }
}

p {
    /* margin-bottom: 1rem; */
    font-size: 1.125rem;
}

.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

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

.bg-gradient-hero {
    background: linear-gradient(to bottom right, var(--primary), var(--primary), var(--accent));
    color: var(--primary-foreground);
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.bg-gradient-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='grid' width='60' height='60' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 10 0 L 0 0 0 10' fill='none' stroke='white' stroke-opacity='0.05' stroke-width='1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23grid)'/%3E%3C/svg%3E");
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 80rem;
    margin: 0 auto;
}

.hero-logo {
    height: 7.5rem;
    object-fit: contain;
    filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15));
}

@media (min-width: 768px) {
    .hero-logo { height: 9rem; }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(to right, var(--primary), var(--accent));
    color: var(--primary-foreground);
    padding: 1.5rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.btn-primary:hover {
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    transform: scale(1.05);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--primary-foreground);
    padding: 1.5rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

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

.btn-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 640px) {
    .metrics-grid {
        padding: 0 1.5rem;
    }
}

@media (min-width: 768px) {
    .metrics-grid {
        grid-template-columns: repeat(4, 1fr);
        padding: 0;
    }
}

.metric-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .metric-value {
        font-size: 2.25rem;
    }
}

.metric-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

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

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

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (min-width: 768px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

@media (min-width: 768px) {
    .grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .grid-5 {
        grid-template-columns: repeat(5, 1fr);
    }
}

.card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    transition: all 0.3s;
}

.card:hover {
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    transform: scale(1.05);
}

.card-featured {
    border-color: var(--accent);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    transform: scale(1.05);
    background: var(--card-featured);
}

.icon {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.75rem;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-green {
    background: #d1fae5;
    color: #065f46;
}

.badge-yellow {
    background: #fef3c7;
    color: #92400e;
}

.badge-red {
    background: #fee2e2;
    color: #991b1b;
}

.badge-accent {
    background: var(--accent);
    color: var(--accent-foreground);
}

.bg-gradient-section {
    background: linear-gradient(to bottom, var(--secondary), var(--background));
}

.highlight-box {
    background: linear-gradient(to right, var(--primary), var(--accent));
    color: var(--primary-foreground);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .highlight-box {
        padding: 3rem;
    }
}

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

@media (min-width: 1024px) {
    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.comparison-card-negative {
    border-color: rgba(239, 68, 68, 0.2);
}

.comparison-card-positive {
    border-color: var(--accent);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.list-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.facility-image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    margin-bottom: 1rem;
}

.financial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .financial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .financial-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.financial-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .financial-grid-2 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1200px;
    }
}

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

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

.investment-card {
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.investment-early {
    background: var(--card-featured);
    border: 2px solid var(--accent);
}

.investment-late {
    background: var(--secondary);
}

.payment-schedule {
    background: rgba(243, 244, 246, 0.5);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 1.5rem;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    text-align: center;
}

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

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

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

input, textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    font-size: 1rem;
    background: var(--background);
    color: var(--foreground);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

textarea {
    min-height: 80px;
    resize: vertical;
}

.contact-info-card {
    margin-bottom: 1rem;
}

.contact-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.5rem;
    background: rgba(30, 64, 175, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

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

.contact-link {
    color: var(--accent);
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding: 0.5rem 0.75rem;
    background: rgba(46, 186, 170, 0.1);
    border-radius: 0.5rem;
    border: 2px solid var(--accent);
    box-shadow: 0 2px 8px rgba(46, 186, 170, 0.2);
}

.contact-link:hover {
    color: var(--primary);
    background: rgba(12, 69, 107, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(12, 69, 107, 0.3);
}

.contact-link:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(12, 69, 107, 0.2);
}

@media (min-width: 768px) {
    .contact-link {
        font-size: 1.125rem;
        padding: 0.375rem 0.625rem;
    }
}

.highlights-box {
    background: linear-gradient(to right, var(--primary), var(--accent));
    color: var(--primary-foreground);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.highlights-list {
    list-style: none;
}

.highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.highlights-list svg {
    width: 1.5rem;
    height: 1.5rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

footer {
    background: var(--foreground);
    color: var(--background);
    padding: 2rem 0;
    text-align: center;
}

.footer-text {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.max-w-3xl {
    max-width: 48rem;
    margin: 0 auto;
}

.max-w-4xl {
    max-width: 56rem;
    margin: 0 auto;
}

.max-w-6xl {
    max-width: 72rem;
    margin: 0 auto;
}

.max-w-7xl {
    max-width: 80rem;
    margin: 0 auto;
}

.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.625;
}

.opacity-80 {
    opacity: 0.8;
}

.italic {
    font-style: italic;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.divider-line {
    height: 2px;
    width: 3rem;
    background: var(--accent);
    border-radius: 9999px;
}

svg {
    display: inline-block;
    vertical-align: middle;
}

