:root {
    --primary-teal: #16465c;
    --primary-cyan: #00d2d3;
    --primary-cyan-hover: #00b8b9;
    --text-white: #ffffff;
    --text-gray-light: #b0c6d4;
    --text-dark: #2d3748;
    --text-gray: #718096;
    --border-color: rgba(255, 255, 255, 0.2);
    --phone-bg: #1e2632;
    --phone-panel: #232c3b;
    --font-main: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.5;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

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

/* --- Header --- */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #edf2f7;
    position: relative;
    z-index: 10;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-title {
    font-weight: 700;
    font-size: 20px;
    color: #111827;
}

.logo-subtitle {
    font-weight: 600;
    font-size: 11px;
    color: #4b5563;
    letter-spacing: 0.05em;
}

.desktop-nav {
    display: none;
}
@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
        gap: 32px;
    }
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #4b5563;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #111827;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background-color: #e6fcfc;
    border: 1px solid #bdf1f1;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #00a4a5;
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: #00d2d3;
    border-radius: 50%;
}
.status-dot-small {
    width: 6px;
    height: 6px;
    background-color: #00d2d3;
    border-radius: 50%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-dark {
    background-color: #111827;
    color: #ffffff;
}
.btn-dark:hover {
    background-color: #1f2937;
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--primary-cyan);
    color: #111827;
}
.btn-primary:hover {
    background-color: var(--primary-cyan-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 210, 211, 0.3);
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border: 1px solid var(--border-color);
}
.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(135deg, #184c65 0%, #103347 100%);
    position: relative;
    padding: 80px 0;
    min-height: calc(100vh - 80px);
    overflow: hidden;
    color: var(--text-white);
}

/* Decorative Polygons */
.bg-polygon {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.03);
    z-index: 1;
}

.polygon-1 {
    width: 800px;
    height: 800px;
    top: -200px;
    left: -200px;
    clip-path: polygon(0 0, 100% 20%, 80% 100%, 10% 80%);
    transform: rotate(15deg);
}

.polygon-2 {
    width: 600px;
    height: 600px;
    top: 20%;
    right: -100px;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    background-color: rgba(0, 210, 211, 0.03);
    transform: rotate(-25deg);
}
.polygon-3 {
    width: 1200px;
    height: 600px;
    bottom: -300px;
    left: 10%;
    clip-path: polygon(0% 100%, 100% 100%, 80% 0%, 20% 0%);
    background-color: rgba(0, 0, 0, 0.15);
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

@media (min-width: 992px) {
    .hero-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 56px;
    }
}

.hero-description {
    font-size: 18px;
    color: var(--text-gray-light);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    padding-top: 40px;
    border-top: 1px dashed rgba(255,255,255,0.2);
}

.stat-item {
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}
@media (max-width: 480px) {
    .stat-item:not(:last-child)::after {
        display: none;
    }
}

.hero-stats .stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.hero-stats .stat-label {
    font-size: 13px;
    color: var(--text-gray-light);
}

/* --- Hero Visual (Phone Mockup) --- */
.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.floating-badge {
    position: absolute;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    z-index: 10;
    animation: float 6s ease-in-out infinite;
    color: #111827;
}

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

.badge-security {
    top: 60px;
    right: -20px;
    animation-delay: 0s;
}

.badge-apy {
    bottom: 120px;
    left: -40px;
    animation-delay: 2s;
}
@media(max-width: 768px) {
    .badge-security { right: 0; }
    .badge-apy { left: 0; }
}

.badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-shield {
    background-color: #e6fcfc;
}

.icon-chart {
    background-color: #fff0eb;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    font-size: 14px;
    font-weight: 600;
}

.badge-text span {
    font-size: 12px;
    color: #6b7280;
}

.phone-mockup {
    width: 320px;
    height: 650px;
    background-color: var(--phone-bg);
    border-radius: 40px;
    border: 8px solid #2d3748;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.phone-mockup:hover {
    transform: rotateY(0deg) rotateX(0deg) translateY(-10px);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 24px;
    background-color: #2d3748;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 20;
}

.phone-status-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    z-index: 10;
    font-size: 12px;
    font-weight: 600;
}

.status-icons {
    display: flex;
    gap: 6px;
    align-items: center;
}

.phone-screen {
    height: 100%;
    padding: 60px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.greeting-text {
    font-size: 14px;
    color: #a0aec0;
}

.user-name {
    font-size: 20px;
    font-weight: 600;
    margin-top: 4px;
}

.balance-card {
    background: linear-gradient(135deg, #00b8b9 0%, #00d2d3 100%);
    border-radius: 20px;
    padding: 24px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}
.balance-card::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.balance-label {
    font-size: 13px;
    opacity: 0.9;
}

.balance-amount {
    font-size: 28px;
    font-weight: 700;
    margin: 8px 0 24px;
}

.card-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    opacity: 0.9;
    font-family: monospace;
    letter-spacing: 1px;
}

.card-circles {
    display: flex;
}
.card-circles .circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
}
.card-circles .circle:last-child {
    margin-left: -10px;
    background-color: rgba(255,255,255,0.8);
}

.action-buttons {
    display: flex;
    justify-content: space-between;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.action-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background-color: var(--phone-panel);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.action-btn:hover .action-icon {
    background-color: #2d3748;
}

.action-btn span {
    font-size: 12px;
    color: #a0aec0;
}

.transactions-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.transaction-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.transaction-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tx-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tx-shopping { background-color: rgba(255, 138, 101, 0.1); }
.tx-salary { background-color: rgba(0, 210, 211, 0.1); }
.tx-bills { background-color: rgba(66, 165, 245, 0.1); }

.tx-details {
    flex: 1;
}

.tx-details h4 {
    font-size: 14px;
    font-weight: 500;
}

.tx-details p {
    font-size: 12px;
    color: #718096;
    margin-top: 2px;
}

.tx-amount {
    font-size: 14px;
    font-weight: 600;
}

.tx-amount.negative {
    color: #fc8181;
}

.tx-amount.positive {
    color: #68d391;
}

/* --- Features Section --- */
.features-section {
    background-color: #f8fafc;
    padding: 100px 0;
    color: var(--text-dark);
}

.text-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pill-badge-light {
    background-color: #e6fcfc;
    color: #008b8b;
    border: 1px solid #bdf1f1;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}
.pill-badge-light svg {
    color: #00d2d3;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #0f172a;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 48px;
    }
}

.section-description {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.card-large {
    grid-column: span 12;
}
.card-small {
    grid-column: span 12;
}

@media (min-width: 768px) {
    .card-large {
        grid-column: span 6;
    }
    .card-small {
        grid-column: span 6;
    }
}

@media (min-width: 1024px) {
    .card-large {
        grid-column: span 4;
    }
    .card-small {
        grid-column: span 3;
    }
}

.feature-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.icon-blue { background-color: #e0f2fe; color: #0284c7; }
.icon-yellow { background-color: #fef3c7; color: #d97706; }
.icon-purple { background-color: #f3e8ff; color: #9333ea; }
.icon-green { background-color: #dcfce7; color: #16a34a; }
.icon-red { background-color: #fee2e2; color: #dc2626; }
.icon-indigo { background-color: #e0e7ff; color: #4f46e5; }
.icon-teal { background-color: #ccfbf1; color: #0d9488; }

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1e293b;
}

.feature-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

.feature-link {
    font-size: 14px;
    font-weight: 500;
    color: #0284c7;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
}

.feature-link:hover {
    color: #0369a1;
}

/* --- Process Sections --- */
.process-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.pill-badge-dark {
    background-color: #1a364b;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
}
.pill-badge-dark svg {
    color: #ffffff;
}

.steps-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 60px auto 0;
}

.steps-line {
    display: none;
}

@media (min-width: 768px) {
    .steps-container {
        flex-direction: row;
        justify-content: space-between;
        gap: 20px;
    }
    
    .steps-line {
        display: block;
        position: absolute;
        top: 50px; /* half of circle height */
        left: 10%;
        right: 10%;
        height: 2px;
        background-color: #a5d3d4;
        z-index: 1;
    }

    .steps-4 .steps-line {
        left: 5%;
        right: 5%;
    }
    
    .steps-4 .steps-line.extended-line {
        left: -20px;
        right: -20px;
        background-color: #7abebf;
    }
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 24px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step-circle:hover {
    transform: translateY(-5px);
}

.step-circle svg {
    margin-bottom: 4px;
}

.step-number {
    font-size: 12px;
    font-weight: 600;
}

.bg-step-1 { background-color: #153b50; }
.bg-step-2 { background-color: #20738a; }
.bg-step-3 { background-color: #00a4a5; }
.bg-step-3-alt { background-color: #0bbdbf; }
.bg-step-4 { background-color: #00a4a5; }

.step-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0f172a;
}

.step-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    max-width: 260px;
}

/* --- Target Audience Section --- */
.bg-light-blue {
    background-color: #f6fafe; /* Very light blue background */
}

.pill-badge-light svg {
    color: #00d2d3;
}

/* Ensure pill badge inherits from light theme */
.bg-light-blue .pill-badge-light {
    background-color: #e6fcfc;
    color: #008b8b;
    border: 1px solid #bdf1f1;
}

.target-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 60px;
}

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

.target-card {
    background-color: #eaf5fb;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.target-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 164, 165, 0.1);
}

.target-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #d1ecf9;
    color: #2a87a9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.target-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f172a;
}

.target-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 40px;
    flex: 1;
}

.target-link {
    font-size: 14px;
    font-weight: 600;
    color: #008b8b;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s;
    margin-top: auto;
}

.target-link:hover {
    color: #005c5c;
}

/* --- CTA / Waitlist Section --- */
.cta-section {
    background: linear-gradient(135deg, #1f4356 0%, #17374b 100%);
    padding: 100px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.cta-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

@media (min-width: 992px) {
    .cta-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.cta-content {
    flex: 1;
    max-width: 500px;
}

.pill-outline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 48px;
    }
}

.cta-description {
    font-size: 18px;
    color: #b0c6d4;
    line-height: 1.6;
    margin-bottom: 40px;
}

.cta-checklist {
    list-style: none;
    margin-bottom: 48px;
}

.cta-checklist li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #e2e8f0;
}

.check-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #008b8b;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.check-icon svg {
    color: #ffffff;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatars {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #17374b;
    object-fit: cover;
    margin-left: -12px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-more {
    background-color: #008b8b;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

.social-text {
    font-size: 14px;
    color: #b0c6d4;
}

.social-text strong {
    color: #ffffff;
}

.cta-form-wrapper {
    flex: 1;
    max-width: 480px;
    width: 100%;
    position: relative;
}

.benefits-banner-wrapper {
    position: absolute;
    top: -24px;
    right: -20px;
    z-index: 10;
}

.benefits-banner {
    background-color: #ffffff;
    border-radius: 30px;
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .benefits-banner-wrapper {
        position: static;
        margin-bottom: 16px;
        display: flex;
        justify-content: flex-end;
    }
    .benefits-banner {
        overflow-x: auto;
        max-width: 100%;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
}

.benefit-item {
    font-size: 11px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 6px;
}
.benefit-separator {
    width: 1px;
    height: 12px;
    background-color: #e2e8f0;
    margin: 0 12px;
}

.form-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 40px;
    color: #0f172a;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #334155;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: #94a3b8;
}

.input-with-icon input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    color: #0f172a;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
}

.input-with-icon input:focus,
.phone-input-group:focus-within,
.select-wrapper select:focus {
    border-color: #00d2d3;
}

.phone-input-group {
    display: flex;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.country-code {
    padding: 12px 16px;
    background-color: #f8fafc;
    border-right: 1px solid #e2e8f0;
    font-size: 15px;
    color: #475569;
    font-weight: 500;
}

.phone-input-group input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    font-size: 15px;
    outline: none;
    color: #0f172a;
    width: 100%;
    font-family: inherit;
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    width: 100%;
    appearance: none;
    padding: 12px 40px 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    color: #0f172a;
    outline: none;
    background-color: transparent;
    cursor: pointer;
    font-family: inherit;
}

.select-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
}

.btn-submit {
    width: 100%;
    background-color: #27758f;
    color: white;
    padding: 14px;
    border-radius: 12px;
    font-size: 16px;
    margin-top: 12px;
}
.btn-submit:hover {
    background-color: #216278;
}

.form-footer {
    text-align: center;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 24px;
}

.form-footer a {
    color: #2a87a9;
    text-decoration: underline;
}

/* --- Testimonials Section --- */
.testimonials-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 60px;
}

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

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

.testimonial-card {
    background-color: #f8fafc;
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.card-dark {
    background-color: #16465c;
    color: #ffffff;
}

.card-decoration {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(0, 164, 165, 0.1);
    border-radius: 50%;
}

.stars {
    margin-bottom: 20px;
    font-size: 20px;
}

.star.active { color: #f59e0b; }
.star.inactive { color: #cbd5e1; }

.card-dark .star.inactive { color: rgba(255, 255, 255, 0.2); }

.testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 32px;
    flex: 1;
}

.card-dark .testimonial-text {
    color: #e2e8f0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}

.card-dark .author-name {
    color: #ffffff;
}

.author-title {
    font-size: 12px;
    color: #64748b;
    margin-top: 2px;
}

.card-dark .author-title {
    color: #94a3b8;
}

/* --- Footer Section --- */
.footer {
    background-color: #0c202b;
    color: #94a3b8;
    padding: 80px 0 32px;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 60px;
}

@media (min-width: 992px) {
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-brand {
    max-width: 320px;
}

.footer-logo .logo-title.text-white {
    color: #ffffff;
}
.footer-logo .logo-subtitle.text-gray {
    color: #94a3b8;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    margin: 24px 0;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.2s;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

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

.link-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-title {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.link-group a {
    font-size: 14px;
    color: #94a3b8;
    transition: color 0.2s;
}

.link-group a:hover {
    color: #00d2d3;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    font-size: 12px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
}

.footer-badge svg {
    color: #2a87a9;
}

/* --- About Page Styles --- */
.nav-link.active {
    color: var(--primary-cyan);
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -24px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-cyan);
}

.about-hero {
    background: linear-gradient(135deg, #16465c 0%, #1f4f6b 50%, #17374b 100%);
    padding: 100px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.about-hero-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-hero-pill {
    margin-bottom: 32px;
}

.about-hero-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .about-hero-title {
        font-size: 56px;
    }
}

.about-hero-subtitle {
    font-size: 18px;
    color: #b0c6d4;
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 768px;
}

.about-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    width: 150vw; height: 150vw;
    top: -80vw; left: -30vw;
    background-color: rgba(255, 255, 255, 0.02);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    z-index: 1;
}
.about-hero::after {
    content: '';
    position: absolute;
    width: 100vw; height: 100vw;
    bottom: -60vw; right: -20vw;
    background-color: rgba(0, 210, 211, 0.02);
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
    z-index: 1;
}

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

.btn-cyan {
    background-color: var(--primary-cyan);
    color: #0f172a;
    font-weight: 600;
}
.btn-cyan:hover {
    background-color: var(--primary-cyan-hover);
}

.btn-outline-dark {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-outline-dark:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.mission-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.mission-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

@media (min-width: 992px) {
    .mission-container {
        flex-direction: row;
        align-items: center;
    }
}

.mission-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.abstract-graphic {
    width: 400px;
    height: 400px;
    position: relative;
}

.circle-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background-color: #f0fdfa;
}

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

.shape-1 {
    width: 240px;
    height: 240px;
    background-color: #b0c6d4;
    clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
    opacity: 0.5;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background-color: #1f4f6b;
    clip-path: polygon(30% 0%, 70% 0%, 100% 40%, 80% 100%, 20% 100%, 0% 40%);
}

.shape-3 {
    width: 120px;
    height: 120px;
    background-color: #2a87a9;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
}

.abstract-graphic::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 40px;
    height: 40px;
    background-color: #b0c6d4;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    transform: rotate(-15deg);
}
.abstract-graphic::after {
    content: '';
    position: absolute;
    bottom: 25%;
    left: 5%;
    width: 50px;
    height: 60px;
    background-color: #b0c6d4;
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}

.floating-stat {
    position: absolute;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    z-index: 5;
}

.stat-tr {
    top: 10%;
    right: -10%;
}

.stat-bl {
    bottom: 5%;
    left: -5%;
}

.stat-br {
    bottom: 10%;
    right: 5%;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-info .stat-value {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-info .stat-label {
    font-size: 10px;
    color: #94a3b8;
    line-height: 1.2;
}

.mission-content {
    flex: 1;
    max-width: 540px;
}

.mission-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 40px;
}

.mission-text p {
    margin-bottom: 16px;
}

.mission-stats-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid #f1f5f9;
}

.mission-stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
}

.stat-text {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 32px;
    background-color: #e2e8f0;
}

@media (max-width: 768px) {
    .abstract-graphic {
        width: 300px;
        height: 300px;
    }
    .circle-bg {
        width: 240px;
        height: 240px;
    }
    .stat-tr { right: -5%; }
    .stat-bl { left: 0%; }
    .mission-stats-row {
        flex-wrap: wrap;
        gap: 20px;
    }
    .stat-divider {
        display: none;
    }
}

/* --- Our Story (Timeline) Section --- */
.bg-light-gray {
    background-color: #f8fafc;
}

.story-section {
    padding: 100px 0;
}

.max-w-4xl {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.max-w-2xl {
    max-width: 672px;
}
.mb-16 {
    margin-bottom: 64px;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.timeline {
    position: relative;
    padding-left: 48px;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px; /* 32px marker, center is 16px */
    width: 2px;
    background-color: #cbd5e1;
}

.timeline-item {
    position: relative;
    margin-bottom: 48px;
}

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

.timeline-marker {
    position: absolute;
    left: -48px;
    top: 0;
    width: 32px;
    height: 32px;
    background-color: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 2;
    border: 4px solid #f8fafc;
}

.timeline-content.card-white {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.timeline-pill {
    display: inline-block;
    background-color: #e6fcfc;
    color: #008b8b;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 16px;
    margin-bottom: 16px;
}

.timeline-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.timeline-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
}

/* --- Our Values Section --- */
.values-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

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

.value-card {
    border-radius: 20px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.card-dark-teal {
    background-color: #16465c;
    color: #ffffff;
}

.value-card-bg-shape {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
    background-color: rgba(0, 210, 211, 0.1);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    border-radius: 50%;
}

.card-light-blue { background-color: #f0f9ff; }
.card-light-yellow { background-color: #fffbeb; }
.card-light-green { background-color: #f0fdf4; }

.value-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.wrapper-dark { background-color: rgba(255,255,255,0.1); color: #00d2d3; }
.wrapper-cyan { background-color: #e0f2fe; color: #0284c7; }
.wrapper-orange { background-color: #fef3c7; color: #d97706; }
.wrapper-green { background-color: #dcfce7; color: #16a34a; }

.value-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f172a;
    position: relative;
    z-index: 2;
}

.value-title.text-white {
    color: #ffffff;
}

.value-text {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 32px;
    flex: 1;
    position: relative;
    z-index: 2;
}

.value-text.text-gray-light {
    color: #b0c6d4;
}

.value-footer {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 2;
}

.footer-cyan { color: #00a4a5; }
.footer-orange { color: #d97706; }
.footer-green { color: #16a34a; }

/* --- Contact Page Styles --- */
.contact-hero {
    background: linear-gradient(135deg, #16465c 0%, #1f4f6b 50%, #17374b 100%);
    padding: 100px 0 120px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contact-hero-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pill-badge-dark-teal {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 32px;
}

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

.contact-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .contact-hero-title {
        font-size: 64px;
    }
}

.contact-hero-subtitle {
    font-size: 18px;
    color: #b0c6d4;
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 600px;
}

.contact-hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.contact-stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #b0c6d4;
}

.contact-stat-item svg {
    color: var(--primary-cyan);
}

.contact-content {
    background-color: #f8fafc;
    padding: 60px 0 100px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: -60px;
    position: relative;
    z-index: 20;
}

@media (min-width: 1024px) {
    .contact-grid {
        flex-direction: row;
        align-items: flex-start;
    }
}

.contact-form-column {
    flex: 1;
}

.contact-info-column {
    flex: 0 0 400px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.card-white {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.contact-card-title {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.contact-card-subtitle {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 32px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

@media (min-width: 640px) {
    .form-row {
        flex-direction: row;
    }
}

.half-width { flex: 1; }
.w-full { width: 100%; }

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.text-red { color: #ef4444; }

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.status-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
}

.input-with-icon input,
.select-wrapper select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    color: #0f172a;
    background-color: #f8fafc;
    transition: all 0.2s;
}

.input-with-icon input {
    padding-left: 40px;
}
.input-with-icon input:focus,
.select-wrapper select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 210, 211, 0.1);
}

.success-state input {
    border-color: #22c55e;
    background-color: #f0fdf4;
}
.success-state input:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.error-state textarea {
    border-color: #ef4444;
    background-color: #fef2f2;
}
.error-state textarea:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-hint {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    margin-top: 6px;
}

.text-green { color: #22c55e; }

.select-wrapper {
    position: relative;
}
.select-wrapper select {
    appearance: none;
    padding-left: 40px;
}
.select-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 24px;
}

.checkbox-group input {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: #2a87a9;
}

.checkbox-group label {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}
.checkbox-group label a {
    color: #2a87a9;
    text-decoration: underline;
}

.btn-dark-teal {
    background-color: #16465c;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    gap: 8px;
    border-radius: 12px;
    font-weight: 600;
}
.btn-dark-teal:hover {
    background-color: #1f4f6b;
}
.btn-cyan {
    background-color: var(--primary-cyan);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    gap: 8px;
    border-radius: 12px;
    font-weight: 600;
}
.btn-cyan:hover {
    background-color: #00b8b9;
}

/* Info Cards Styles */
.info-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f1f5f9;
}
.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bg-cyan-light { background-color: #e0f2fe; }
.bg-green-light { background-color: #dcfce7; }
.bg-purple-light { background-color: #f3e8ff; }
.bg-orange-light { background-color: #ffedd5; }
.text-purple { color: #9333ea; }
.text-orange { color: #ea580c; }

.info-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}
.info-text p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

.badge-small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    margin-top: 8px;
}
.dot-green {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #22c55e;
}

.font-medium { font-weight: 500; }
.text-xs { font-size: 12px; }
.mt-1 { margin-top: 4px; }

.hours-list {
    font-size: 13px;
    color: #64748b;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}
.hours-row {
    display: flex;
    justify-content: space-between;
}
.hours-row strong {
    color: #0f172a;
}

.social-card-subtitle {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 24px;
    margin-top: -16px;
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.social-grid-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s;
}
.social-grid-item:hover {
    border-color: #e2e8f0;
    background-color: #f8fafc;
}

.social-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-twitter { background-color: #1da1f2; }
.bg-instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.bg-linkedin { background-color: #0a66c2; }
.bg-whatsapp { background-color: #25d366; }

.social-item-text {
    display: flex;
    flex-direction: column;
}
.social-item-text strong {
    font-size: 13px;
    color: #0f172a;
}
.social-item-text span {
    font-size: 11px;
    color: #94a3b8;
}

.map-card {
    padding: 0;
    overflow: hidden;
}

.map-placeholder {
    height: 200px;
    background-color: #e0f7fa;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.map-grid-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
}
.map-marker {
    width: 48px;
    height: 48px;
    background-color: #16465c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin-bottom: 12px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.2);
}
.map-location-text {
    position: relative;
    z-index: 2;
    text-align: center;
}
.map-location-text strong {
    display: block;
    font-size: 14px;
    color: #0f172a;
}
.map-location-text span {
    font-size: 11px;
    color: #64748b;
}

.map-footer {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f1f5f9;
    cursor: pointer;
}
.map-footer:hover {
    background-color: #f8fafc;
}
.map-footer-text {
    display: flex;
    flex-direction: column;
}
.map-footer-text strong {
    font-size: 14px;
    color: #0f172a;
}
.map-footer-text span {
    font-size: 12px;
    color: #64748b;
}
.map-footer-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #16465c;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
}
.bg-white { background-color: #ffffff; }

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 48px;
}
@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.faq-item {
    background-color: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.2s;
    cursor: pointer;
}
.faq-item:hover {
    border-color: #e2e8f0;
}
.faq-item.active {
    background-color: #ffffff;
    border: 1px solid var(--primary-cyan);
    box-shadow: 0 4px 12px rgba(0, 210, 211, 0.1);
}

.faq-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.faq-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-question {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    flex: 1;
    margin: 0;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #cbd5e1;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    border-color: var(--primary-cyan);
    background-color: var(--primary-cyan);
    color: #ffffff;
}

.faq-body {
    margin-top: 16px;
    padding-left: 48px;
    padding-right: 24px;
}
.faq-body p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

.mt-12 { margin-top: 48px; }
.bg-red-light { background-color: #fee2e2; }
.bg-blue-light { background-color: #dbeafe; }
.text-red { color: #ef4444; }
.text-blue { color: #3b82f6; }

/* Support CTA Section */
.support-cta-section {
    background-color: #16465c;
    padding: 80px 0;
    color: #ffffff;
}

.support-cta-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
}
@media (min-width: 1024px) {
    .support-cta-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.support-cta-content {
    flex: 1;
}

.support-cta-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.support-cta-description {
    font-size: 16px;
    color: #b0c6d4;
    line-height: 1.6;
    margin-bottom: 32px;
}

.support-cta-actions {
    display: flex;
    gap: 16px;
}

.support-cta-stats {
    flex: 0 0 400px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.stat-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-card-info h4 {
    font-size: 12px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}
.stat-card-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-cyan);
    margin-bottom: 2px;
}
.stat-card-info h3.text-green { color: #22c55e; }
.stat-card-info h3.text-orange { color: #f97316; }

.stat-card-info p {
    font-size: 11px;
    color: #94a3b8;
}

.stars-mini {
    display: flex;
    gap: 2px;
}
.stars-mini .star {
    font-size: 12px;
    color: #e2e8f0;
}
.stars-mini .star.active {
    color: #f59e0b;
}

/* --- New Team Section Styles --- */
.team-section {
    padding: 100px 0;
}
.pill-badge-cyan-light {
    background-color: #e0f2fe;
    color: #0ea5e9;
    border: none;
}
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 640px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.team-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 15px -3px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s;
}
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.avatar-ao { background-color: #16465c; }
.avatar-ci { background-color: #00a4a5; }
.avatar-nb { background-color: #4a919e; }
.avatar-ta { background-color: #0f2b3c; }
.avatar-fa { background-color: #00b8b9; }
.avatar-eo { background-color: #27617b; }
.avatar-sc { background-color: #2a87a9; }
.avatar-km { background-color: #1f5068; }

.team-name {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}
.team-role {
    font-size: 13px;
    font-weight: 700;
    color: #00a4a5;
    margin-bottom: 16px;
}
.team-desc {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

.team-social {
    display: flex;
    gap: 12px;
}
.social-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background-color: #f1f5f9;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.social-btn:hover {
    background-color: #e2e8f0;
    color: #0f172a;
}

/* --- Bottom CTA Section Styles --- */
.bottom-cta-section {
    background: radial-gradient(circle at center top, #1f5f7a 0%, #16465c 40%, #112d3d 100%);
    padding: 120px 0;
    color: #ffffff;
}
.cta-bottom-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.cta-bottom-description {
    font-size: 18px;
    color: #b0c6d4;
    line-height: 1.6;
    margin-bottom: 48px;
}
.cta-bottom-checklist {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
}
.cta-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #b0c6d4;
}
.check-icon-small {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #0ea5e9;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.justify-center {
    justify-content: center;
}
.mt-10 { margin-top: 40px; }
.mt-12 { margin-top: 48px; }

.cta-bottom-proof {
    margin-top: 64px;
}
.cta-bottom-proof .avatar-more {
    background-color: #0ea5e9;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #16465c;
}
.cta-bottom-proof .avatar {
    border: 2px solid #16465c;
}

/* --- Mobile Menu & Responsive Overrides --- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 50;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: #111827;
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}
.mobile-menu {
    display: none;
}
@media (max-width: 767px) {
    .hamburger {
        display: flex;
    }
    .header-actions .btn {
        display: none;
    }
    
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: #ffffff;
        z-index: 40;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        transition: right 0.3s ease-in-out;
    }
    .mobile-menu.open {
        right: 0;
    }
    .mobile-menu .nav-link {
        font-size: 24px;
        font-weight: 600;
    }
    .mobile-menu .btn {
        display: inline-flex;
    }
}

/* Hamburger Open State */
.hamburger.open span:first-child { transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg); }

/* --- Animations & Hover Effects --- */
/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* Enhanced Hover Effects */
.feature-card, .team-card, .value-card, .target-card, .testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover, .team-card:hover, .value-card:hover, .target-card:hover, .testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}
.btn {
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* --- Form Submission States --- */
.btn-loader {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 1s ease-in-out infinite;
    display: inline-block;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.btn.is-loading {
    opacity: 0.8;
    pointer-events: none;
    justify-content: center;
}
.btn.is-loading .btn-text {
    display: none;
}
.btn.is-loading .btn-loader {
    display: inline-block;
}
.btn:not(.is-loading) .btn-loader {
    display: none;
}
.btn-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-success-msg {
    text-align: center;
    padding: 30px 20px;
    background-color: #e0f2fe; /* bg-cyan-light */
    border-radius: 12px;
    margin-top: 24px;
    animation: fadeIn 0.5s ease;
}
.form-success-msg svg {
    margin: 0 auto 16px;
    color: #0ea5e9;
}
.form-success-msg h4, .form-success-msg h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}
.form-success-msg p {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.5;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.hidden {
    display: none !important;
}

/* --- Theme Toggle Button --- */
.theme-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background-color 0.2s, color 0.2s;
}
.theme-toggle:hover {
    background-color: #f3f4f6;
    color: #111827;
}
html.dark .theme-toggle {
    color: #d1d5db;
}
html.dark .theme-toggle:hover {
    background-color: #374151;
    color: #ffffff;
}

/* --- Dark Mode Overrides --- */
html.dark body, html.dark {
    background-color: #111827;
    color: #f3f4f6;
}
html.dark .header, 
html.dark .mobile-menu {
    background-color: #1f2937;
    border-color: #374151;
}
html.dark .logo-title, html.dark .nav-link, html.dark .logo-subtitle {
    color: #f3f4f6;
}
html.dark .card-white, html.dark .contact-form-card, html.dark .info-card {
    background-color: #1f2937;
    border-color: #374151;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
html.dark .card-white h3, html.dark .contact-card-title, html.dark .info-card-title, html.dark .section-title, html.dark h1, html.dark h2, html.dark h4, html.dark h5 {
    color: #ffffff;
}
html.dark p, html.dark .section-subtitle, html.dark .contact-card-subtitle {
    color: #d1d5db;
}
html.dark .form-group label {
    color: #d1d5db;
}
html.dark .input-with-icon input, html.dark .phone-input-group input, html.dark .select-wrapper select, html.dark textarea {
    background-color: #374151;
    border-color: #4b5563;
    color: #ffffff;
}
html.dark .input-with-icon input::placeholder, html.dark textarea::placeholder {
    color: #9ca3af;
}
html.dark .country-code {
    background-color: #4b5563;
    border-color: #4b5563;
    color: #ffffff;
}
html.dark .bg-light-gray, html.dark .feature-card, html.dark .value-card, html.dark .step-card {
    background-color: #1f2937;
}

html.dark .nav-link:hover {
    color: #00d2d3;
}

html.dark .hamburger span {
    background: #f3f4f6;
}

html.dark .btn-dark {
    background-color: #374151;
    color: #ffffff;
}

html.dark .btn-dark:hover {
    background-color: #4b5563;
}

html.dark .status-badge {
    background-color: rgba(0, 210, 211, 0.1);
    border-color: rgba(0, 210, 211, 0.2);
    color: #00d2d3;
}

/* --- Accessibility Focus States --- */
*:focus-visible {
    outline: 2px solid #00d2d3;
    outline-offset: 2px;
}
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid #00d2d3;
    outline-offset: 2px;
}
