:root {
    --cyan: #00bfc1;
    --cyan-dark: #009b9d;
    --cyan-light: #d6f5f5;
    --orange: #fe7d4d;
    --primary: var(--cyan);
    --primary-dark: var(--cyan-dark);
    --primary-light: var(--cyan-light);
    --bg: #ffffff;
    --bg-alt: #f9f9f9;
    --text: #111111;
    --text-muted: #666666;
    --border: #e0e0e0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 24px rgba(0, 191, 193, 0.10), 0 4px 8px rgba(0,0,0,0.04);
    --radius: 16px;
    --radius-sm: 10px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
}

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

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

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 251, 245, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    text-decoration: none;
}

.logo img { height: 44px; width: auto; display: block; }

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--primary); }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: none;
    transition: all 0.2s ease;
    font-family: inherit;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover { transform: translateY(-2px); }

.btn-secondary {
    background: white;
    color: var(--text);
    border: 1px solid var(--border);
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    transition: 0.3s;
}

/* Page layout */
.page-hero {
    padding: 48px 0 32px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #fff 60%);
    border-bottom: 1px solid var(--border);
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 2.75rem);
    margin-bottom: 12px;
}

.page-hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
}

.page-content {
    padding: 48px 0 80px;
}

.page-content h2 {
    font-size: 1.5rem;
    margin: 32px 0 12px;
}

.page-content h2:first-child { margin-top: 0; }

.page-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 24px 0 8px;
}

.page-content p,
.page-content li {
    color: var(--text-muted);
    margin-bottom: 12px;
}

.page-content ul,
.page-content ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.page-content a { color: var(--primary-dark); }

.page-content .soon {
    color: var(--text-muted);
    cursor: default;
    opacity: 0.75;
}

.page-content a.soon {

.social-soon-badge {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-dark);
    background: var(--primary-light);
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 4px;
    vertical-align: middle;
}

.page-content a:hover { text-decoration: underline; }

.meta {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: box-shadow 0.2s;
}

.card:hover { box-shadow: var(--shadow-md); }

.card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--text);
}

.card .tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-dark);
    background: var(--primary-light);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 32px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-item strong {
    display: block;
    color: var(--text);
    margin-bottom: 4px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.2s;
}

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

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

.form-alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    margin-bottom: 20px;
    display: none;
}

.form-alert.visible { display: block; }

.form-alert.success {
    background: #e8f8f0;
    color: #1a7f4c;
    border: 1px solid #b8e6cf;
}

.form-alert.error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.form-alert.loading {
    background: var(--primary-light);
    color: var(--primary-dark);
    border: 1px solid var(--primary);
}

.steps-list {
    counter-reset: step;
    margin: 32px 0;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.step-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-item::before {
    counter-increment: step;
    content: counter(step);
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 6px;
    color: var(--text);
}

.cta-box-inline {
    background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    margin-top: 40px;
    text-align: center;
}

.cta-box-inline h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.cta-box-inline p {
    margin-bottom: 20px;
}

.cta-box-inline .btn { margin: 0 6px 8px; }

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

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

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

.faq-item h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.value-card {
    background: var(--primary-light);
    border-radius: var(--radius);
    padding: 24px;
}

.value-card h3 {
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.job-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.job-card h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 4px;
}

.job-meta {
    font-size: 14px;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--text);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer .logo {
    background: white;
    padding: 8px 14px;
    border-radius: 12px;
    display: inline-flex;
    margin-bottom: 20px;
}

.footer .logo img { height: 36px; }

.footer-brand p {
    font-size: 14px;
    max-width: 320px;
    line-height: 1.6;
}

.footer h4 {
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer ul { list-style: none; }

.footer ul li { margin-bottom: 10px; }

.footer ul a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    flex-wrap: wrap;
    gap: 16px;
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-social .soon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.35);
    cursor: default;
    position: relative;
}

.footer-social .soon::after {
    content: 'Coming soon';
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.85);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.footer-social .soon:hover::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 16px 24px 24px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-sm);
    }

    .nav-links.open { display: flex; }

    .navbar { position: relative; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

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

    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* Language switcher */
.lang-switcher { display: flex; gap: 4px; align-items: center; margin-right: 12px; }
.lang-switcher-btn { background: transparent; border: 1px solid var(--border, #e0e0e0); border-radius: 6px; padding: 4px 8px; font-size: 11px; font-weight: 700; cursor: pointer; color: var(--text-muted, #666); font-family: inherit; transition: all 0.2s; letter-spacing: 0.02em; }
.lang-switcher-btn:hover, .lang-switcher-btn.active { background: var(--primary-light, #d6f5f5); border-color: var(--primary, #00bfc1); color: var(--primary-dark, #009b9d); }
