/* ── VARIABLES ── */
:root {
    --brand: #F06135;
    --text-dark: #0a0a0a;
    --text-mid: #444;
    --text-muted: #818083;
    --white: #fefefe;
    --radius: 14px;
    --radius-sm: 8px;
}

/* ── RESET ── */
* { box-sizing: border-box; }

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    background: #fff;
    margin: 0;
}

/* ── NAV ── */
.topbar {
    background: var(--white);
    border-bottom: 1px solid #eee;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}
.topbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.topbar-brand {
    font-weight: 700;
    font-size: 15px;
    color: var(--brand);
    line-height: 1.1;
}
.topbar-brand span {
    display: block;
    font-weight: 400;
    font-size: 11px;
    color: var(--text-muted);
}
.topbar-logo-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
}
.topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    border: 1.5px solid var(--brand);
    border-radius: 50px;
    padding: 5px 10px;
    color: var(--brand);
    letter-spacing: 0.04em;
}
.lang-active   { color: var(--brand); }
.lang-divider  { color: #ccc; font-weight: 300; }
.lang-inactive { color: var(--text-muted); font-weight: 400; }

/* ── HERO ── */
.hero {
    background: var(--brand);
    color: #fff;
    padding: 48px 24px 0;
    text-align: center;
    position: relative;
}
.hero-inner {
    padding-bottom: 52px;
}
.hero-logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}
.hero-logo-ring {
    width: 130px;
    height: 130px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    box-shadow: none;
    outline: none;
}
.hero-logo {
    width: 110px;
    height: 110px;
    object-fit: contain;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 18px;
}
.badge-icon {
    width: 21px;
    height: 21px;
    margin-right: 6px;
    vertical-align: middle;
    filter: brightness(0) invert(1);
}
.hero h1 {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}
.hero h1 em {
    font-style: normal;
    color: #fff;
    opacity: 0.75;
}
.hero p {
    font-size: 15px;
    opacity: 0.88;
    margin-bottom: 28px;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
}

/* ── BUTTONS ── */
.hero-cta,
.cta-btn-white,
.fab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    transition: opacity 0.2s, transform 0.15s;
}
.hero-cta:hover,
.cta-btn-white:hover,
.fab:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}
.hero-cta {
    background: #fff;
    color: var(--brand);
    font-size: 16px;
    padding: 14px 28px;
}
.cta-btn-white {
    background: #fff;
    color: var(--brand);
    font-size: 16px;
    padding: 14px 28px;
    margin-top: 20px;
    margin-bottom: 16px;
}

/* ── SECTIONS ── */
section { padding: 48px 20px; }
.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--brand);
    text-transform: uppercase;
    margin-bottom: 6px;
}
.section-title {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
    color: var(--text-dark);
}
.section-body {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ── WHY US ── */
.why-us { background: #fff; }
.feature-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    border: 1px solid #eee;
}
.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 2px;
}
.feature-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ── SERVICES SECTION ── */
.services-section {
    padding: 60px 20px;
    background: var(--brand);
}
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 24px;
}
.service-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-radius: 12px;
    padding: 10px 12px;
    min-height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: background 0.2s, border-color 0.2s;
}
.service-pill:hover {
    background: #fff;
    border-color: #fff;
}
.pill-bullet {
    width: 6px;
    height: 6px;
    background-color: var(--brand);
    border-radius: 50%;
    flex-shrink: 0;
    transition: background-color 0.2s;
}
.service-pill:hover .pill-bullet {
    background-color: var(--brand);
}
.pill-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--brand);
    line-height: 1.2;
}
.service-pill:hover .pill-text {
    color: var(--brand);
}
@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

/* ── CTA SECTION ── */
.cta-section {
    background: var(--brand);
    color: #fff;
    text-align: center;
    border-radius: 32px 32px 0 0;
    margin-top: -50px;
    padding: 60px 20px;
    position: relative;
    z-index: 2;
}
.cta-section .section-label { color: rgba(255,255,255,0.7); }
.cta-section .section-title { color: #fff; }
.cta-section .section-body  { color: rgba(255,255,255,0.88); }
.cta-note {
    font-size: 13px;
    opacity: 0.75;
    margin-top: 4px;
}

/* ── FOOTER ── */
.footer {
    background: #1A1A1A;
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding: 24px 20px 100px;
    font-size: 13px;
    position: relative;
    z-index: 1;
    margin-top: -1px;
}
.footer strong { color: #fff; }

/* ── FLOATING ACTION BUTTON ── */
.fab {
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 999;
    background: var(--brand);
    color: #fff;
    padding: 14px 22px;
    font-size: 15px;
    box-shadow: 0 6px 24px rgba(232, 84, 26, 0.45);
    white-space: nowrap;
}
.icon-white,
.btn-icon-svg {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.icon-orange,
.svg-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    object-fit: contain;
    filter: invert(48%) sepia(87%) saturate(2250%) hue-rotate(341deg) brightness(97%) contrast(92%);
}