:root {
    --bg: #0a1321;
    --bg-soft: #101b2b;
    --surface: #ffffff;
    --surface-2: #f6f1e8;
    --surface-3: #f2f4f7;
    --text: #132238;
    --text-soft: #617085;
    --text-light: #dfe7f5;
    --gold: #c9a46b;
    --gold-dark: #9b7a46;
    --line: rgba(19, 34, 56, 0.1);
    --shadow: 0 24px 70px rgba(7, 18, 35, 0.18);
    --radius: 24px;
    --radius-sm: 16px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #f9fbfd 0%, #eef2f7 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { line-height: 1.7; color: var(--text-soft); }
h1, h2, h3, h4 {
    margin: 0 0 14px;
    color: var(--text);
    line-height: 1.15;
    letter-spacing: -0.02em;
}
h1, h2 { font-family: Georgia, "Times New Roman", serif; }
h1 { font-size: clamp(2.7rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.25rem; }
.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}
.narrow { width: min(860px, calc(100% - 32px)); }
.section { padding: 96px 0; }
.section--light { background: rgba(255,255,255,0.7); backdrop-filter: blur(12px); }
.section--dark {
    background: linear-gradient(145deg, #0b1422 0%, #15243a 100%);
    color: var(--text-light);
}
.section--dark h2, .section--dark h3, .section--dark p { color: var(--text-light); }
.section--gold { background: linear-gradient(180deg, rgba(201,164,107,0.1), rgba(201,164,107,0.02)); }
.eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(201,164,107,0.14);
    color: var(--gold-dark);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.section-intro { max-width: 760px; margin-bottom: 32px; }
.section-intro--light { color: rgba(255,255,255,0.78); }
.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.glass-card {
    background: rgba(11, 20, 34, 0.6);
    border: 1px solid rgba(255,255,255,0.12);
    color: white;
    backdrop-filter: blur(16px);
}
.glass-card h3,
.glass-card p,
.glass-card dd,
.glass-card blockquote,
.glass-card .hero-panel-name,
.glass-card .hero-panel-role,
.glass-card dt { color: white; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(10, 19, 33, 0.8);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}
.brand .custom-logo { max-height: 54px; width: auto; }
.brand-mark {
    width: 46px; height: 46px;
    display: grid; place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--gold) 0%, #f0d2a2 100%);
    color: #0f1625;
    font-weight: 800;
}
.brand-text strong { display: block; font-size: 0.98rem; }
.brand-text small { color: rgba(255,255,255,0.65); }
.main-nav {
    display: flex;
    gap: 18px;
    align-items: center;
}
.main-nav a {
    color: rgba(255,255,255,0.82);
    font-weight: 600;
    font-size: 0.95rem;
}
.main-nav a:hover { color: white; }
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.lang-switcher {
    display: inline-flex;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    padding: 4px;
    background: rgba(255,255,255,0.06);
}
.lang-switcher a {
    padding: 8px 11px;
    border-radius: 999px;
    color: rgba(255,255,255,0.7);
    font-weight: 700;
    font-size: 0.82rem;
}
.lang-switcher a.active {
    background: white;
    color: var(--bg);
}
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    border: 0;
    background: transparent;
}
.menu-toggle span {
    width: 24px;
    height: 2px;
    background: white;
    display: block;
}
.hero {
    position: relative;
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    color: white;
    background:
      linear-gradient(115deg, rgba(10,19,33,0.92) 10%, rgba(10,19,33,0.74) 55%, rgba(10,19,33,0.85) 100%),
      var(--hero-bg) center/cover no-repeat;
}
.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 180px;
    background: linear-gradient(to top, rgba(9, 17, 30, 0.75), transparent);
}
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 32px;
    align-items: center;
    padding: 64px 0;
}
.hero-copy { max-width: 720px; }
.hero-copy .eyebrow { color: white; background: rgba(255,255,255,0.1); }
.hero-copy h1, .hero-copy p { color: white; }
.hero-subtitle { font-size: 1.14rem; max-width: 660px; margin-top: 18px; }
.hero-actions, .badge-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.badge-row span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.92rem;
}
.hero-panel { padding: 28px; }
.hero-panel-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}
.profile-photo {
    width: 84px;
    height: 84px;
    object-fit: cover;
    border-radius: 22px;
    border: 2px solid rgba(255,255,255,0.16);
}
.hero-panel-name { font-weight: 800; font-size: 1.1rem; }
.hero-panel-role { color: rgba(255,255,255,0.78); }
.hero-panel blockquote {
    margin: 0 0 22px;
    font-size: 1.15rem;
    line-height: 1.6;
}
.trust-box {
    padding: 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.08);
    margin-bottom: 22px;
}
.trust-box p { color: rgba(255,255,255,0.78); }
.mini-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 0;
}
.mini-facts div {
    padding: 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
}
.mini-facts dt {
    margin-bottom: 5px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.65);
}
.mini-facts dd { margin: 0; font-weight: 700; font-size: 0.94rem; }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold) 0%, #e1bf8b 100%);
    color: #101724;
    font-weight: 800;
    border: 0;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 12px 24px rgba(201,164,107,0.22);
}
.button:hover { transform: translateY(-1px); }
.button--ghost {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: none;
}
.button--sm { min-height: 44px; padding-inline: 16px; }
.button--full { width: 100%; }
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.tight-gap { gap: 28px; }
.note-card { padding: 28px; }
.note-card-header { font-size: 1.4rem; font-weight: 800; }
.note-card-role { margin-top: 8px; }
.note-quote {
    margin-top: 20px;
    padding: 20px 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    color: var(--text);
}
.feature-grid {
    display: grid;
    gap: 20px;
}
.four-up { grid-template-columns: repeat(4, 1fr); }
.three-up { grid-template-columns: repeat(3, 1fr); }
.compact { grid-template-columns: 1fr; margin-top: 12px; }
.service-card, .market-card, .showcase-card, .insight-card, .audience-card, .contact-card, .post-card, .content-page, .small-card {
    padding: 28px;
}
.service-card, .showcase-card, .insight-card, .post-card, .content-page { background: rgba(255,255,255,0.92); }
.market-card { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); }
.market-card h3, .market-card p { color: white; }
.showcase-card { min-height: 210px; display: flex; flex-direction: column; justify-content: space-between; }
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-dark);
    font-weight: 800;
}
.text-link::after { content: "→"; }
.check-list {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}
.check-list li {
    position: relative;
    padding-left: 30px;
    color: var(--text);
    font-weight: 600;
}
.check-list li::before {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold) 0%, #f0d2a2 100%);
    position: absolute;
    left: 0;
    top: 8px;
}
.stack-cards { display: grid; gap: 18px; }
.timeline-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(5, 1fr);
}
.timeline-item {
    padding: 24px;
    background: white;
    border-radius: 24px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.timeline-item h3 { font-size: 1.05rem; }
.insight-meta { margin-bottom: 10px; color: var(--gold-dark); font-size: 0.86rem; font-weight: 700; }
.faq-list { display: grid; gap: 12px; margin-top: 30px; }
.faq-item {
    background: white;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px 22px;
    box-shadow: var(--shadow);
}
.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--text);
}
.faq-item p { margin: 16px 0 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 32px;
    align-items: start;
}
.contact-cards { display: grid; gap: 14px; margin-top: 28px; }
.contact-card strong { display: block; margin-bottom: 8px; }
.form-card { padding: 28px; }
.lead-form {
    display: grid;
    gap: 14px;
}
.lead-form label { display: grid; gap: 8px; }
.lead-form span { font-weight: 700; color: var(--text); font-size: 0.95rem; }
.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    min-height: 52px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(19,34,56,0.14);
    background: #fbfcfe;
    font: inherit;
    color: var(--text);
}
.lead-form textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 0.9rem; margin-top: 6px; }
.form-status {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    font-weight: 700;
}
.form-status--success { background: #e6f8ef; color: #0f7b4b; }
.form-status--error { background: #ffeaea; color: #b51f1f; }
.site-footer {
    background: #0b1422;
    color: rgba(255,255,255,0.76);
    padding: 44px 0 20px;
}
.footer-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1.1fr 0.9fr 1fr;
}
.footer-brand { color: white; font-size: 1.15rem; font-weight: 800; margin-bottom: 10px; }
.footer-mini { color: rgba(255,255,255,0.6); }
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}
.footer-bottom {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 62px;
    min-height: 62px;
    padding: 0 18px;
    border-radius: 999px;
    background: #25D366;
    color: white;
    font-weight: 800;
    box-shadow: 0 18px 32px rgba(37, 211, 102, 0.36);
}
.hide-mobile { display: inline-flex; }
.posts-list { display: grid; gap: 20px; }
.page-content > *:first-child { margin-top: 0; }
.page-content img { border-radius: 18px; }

@media (max-width: 1100px) {
    .four-up { grid-template-columns: repeat(2, 1fr); }
    .three-up { grid-template-columns: 1fr; }
    .timeline-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-grid, .two-col, .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
    .site-header { position: sticky; }
    .main-nav {
        position: absolute;
        top: 82px;
        left: 16px;
        right: 16px;
        padding: 18px;
        border-radius: 20px;
        background: rgba(10, 19, 33, 0.96);
        border: 1px solid rgba(255,255,255,0.08);
        box-shadow: var(--shadow);
        display: none;
        flex-direction: column;
        align-items: flex-start;
    }
    .main-nav.is-open { display: flex; }
    .menu-toggle { display: inline-flex; }
    .hide-mobile { display: none; }
    .hero { min-height: auto; }
    .hero-grid { padding-top: 44px; padding-bottom: 54px; }
    .mini-facts { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .section { padding: 76px 0; }
    h1 { font-size: 2.4rem; }
    .button, .button--ghost { width: 100%; }
    .hero-actions { width: 100%; }
    .badge-row { gap: 10px; }
    .badge-row span { width: 100%; }
    .four-up, .timeline-grid { grid-template-columns: 1fr; }
    .service-card, .market-card, .showcase-card, .insight-card, .audience-card, .contact-card, .post-card, .content-page, .small-card, .form-card, .note-card { padding: 22px; }
    .whatsapp-float span { display: none; }
    .whatsapp-float { width: 62px; padding: 0; }
}
