
:root {
    --accent: #ef7c2a;
    --accent-strong: #d86512;
    --accent-soft: #fff4eb;
    --accent-pale: #fffaf6;
    --navy: #0f2037;
    --navy-2: #173457;
    --ink: #101826;
    --muted: #5d6c79;
    --line: #e9edf1;
    --panel: #f7f9fb;
    --footer: #0c182b;
    --footer-2: #0f2137;
    --shadow: 0 16px 40px rgba(17, 31, 49, .09);
    --shadow-soft: 0 8px 24px rgba(17, 31, 49, .06);
    --radius: 20px;
    --max: 1220px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }

.site-header {
    position: sticky; top: 0; z-index: 1000; height: 82px;
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid rgba(15,32,55,.08);
    transition: height .2s ease, box-shadow .2s ease, backdrop-filter .2s ease;
}
.site-header.is-scrolled {
    height: 68px; box-shadow: 0 8px 28px rgba(17,31,49,.08);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.header-inner {
    width: min(calc(100% - 48px), var(--max));
    height: 100%; margin-inline: auto;
    display: grid; grid-template-columns: 240px 1fr 270px;
    align-items: center; gap: 28px;
}
.brand { display: inline-flex; flex-direction: column; align-items: flex-start; width: max-content; }
.brand-main { font-size: 34px; line-height: .95; font-weight: 800; letter-spacing: .01em; color: var(--navy); }
.brand-main .accent { color: var(--accent); }
.brand-tagline {
    margin-top: 7px; color: var(--accent-strong); font-size: 11px; font-weight: 700;
    transition: opacity .2s ease, max-height .2s ease, margin .2s ease;
}
.site-header.is-scrolled .brand-main { font-size: 29px; }
.site-header.is-scrolled .brand-tagline { opacity: 0; max-height: 0; margin-top: 0; overflow: hidden; }

.main-nav { justify-self: center; }
.main-nav > ul {
    display: flex; align-items: center; justify-content: center; gap: 24px;
    list-style: none; margin: 0; padding: 0;
}
.nav-item { position: relative; }
.nav-link, .nav-button {
    display: inline-flex; align-items: center; gap: 6px; position: relative;
    border: 0; background: transparent; padding: 14px 0; color: #152130;
    font-size: 13px; font-weight: 700; cursor: pointer; white-space: nowrap;
}
.nav-link::after, .nav-button::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: 7px;
    height: 2px; border-radius: 999px; background: var(--accent); transition: right .18s ease;
}
.nav-link:hover::after, .nav-button:hover::after { right: 0; }
.nav-caret {
    width: 7px; height: 7px; border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px);
}
.dropdown {
    position: absolute; top: calc(100% - 2px); left: -18px; min-width: 270px; padding: 10px;
    border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.98);
    box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .18s ease;
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown, .nav-item.is-open .dropdown {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a { display: block; padding: 10px 12px; border-radius: 10px; font-size: 13px; font-weight: 650; }
.dropdown a:hover { background: var(--accent-soft); color: var(--accent-strong); }

.header-contact { justify-self: end; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.header-phone {
    display: inline-flex; align-items: center; gap: 9px; color: var(--accent-strong);
    font-size: 18px; font-weight: 800;
}
.header-phone img { width: 18px; height: 18px; filter: invert(50%) sepia(80%) saturate(2500%) hue-rotate(353deg) brightness(97%) contrast(94%); }
.language-links { display: flex; align-items: center; gap: 7px; }
.language-links a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 24px; height: 16px; border-radius: 2px; overflow: hidden;
    border: 1px solid rgba(15,32,55,.12);
}
.language-links .active { outline: 2px solid rgba(239,124,42,.28); }

.mobile-toggle {
    display: none; justify-self: end; width: 44px; height: 44px; border: 1px solid var(--line);
    border-radius: 12px; background: #fff; padding: 0; cursor: pointer;
}
.mobile-toggle span { display: block; width: 19px; height: 2px; margin: 4px auto; background: var(--navy); border-radius: 999px; }

.hero {
    padding: 44px 0 24px;
    background:
        radial-gradient(circle at 10% 10%, rgba(239,124,42,.07), transparent 30%),
        linear-gradient(180deg, #fff 0%, #fffaf7 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
.eyebrow {
    display: inline-block; margin-bottom: 18px; padding: 6px 11px;
    border: 1px solid rgba(239,124,42,.18); border-radius: 999px; background: var(--accent-soft);
    color: var(--accent-strong); font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
}
.hero h1, .page-hero h1 {
    margin: 0 0 18px; color: var(--navy); font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.5rem, 5vw, 4.15rem); line-height: .98; letter-spacing: -.03em;
}
.hero p.lead, .page-hero .lead { max-width: 620px; margin: 0; color: var(--muted); font-size: 1.16rem; line-height: 1.62; }
.hero-actions, .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    min-height: 50px; padding: 0 22px; border-radius: 12px; font-weight: 800;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-strong)); box-shadow: 0 14px 28px rgba(239,124,42,.22); }
.btn-outline { color: var(--accent-strong); background: #fff; border: 1px solid rgba(239,124,42,.42); }
.btn-light { color: var(--navy); background: #fff; }
.hero-visual {
    position: relative; border-radius: 26px; overflow: hidden; box-shadow: var(--shadow); background: #fff; min-height: 420px;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,.06), rgba(255,255,255,0) 45%); pointer-events: none;
}
.floating-cards { position: absolute; left: 20px; bottom: 18px; display: grid; gap: 12px; }
.float-card {
    min-width: 210px; padding: 14px 16px; border-radius: 16px; background: rgba(255,255,255,.95);
    box-shadow: var(--shadow-soft); backdrop-filter: blur(10px);
}
.float-card strong { display: block; color: var(--navy); margin-bottom: 4px; }
.float-card span { color: var(--muted); font-size: .92rem; }

.trust-strip { padding: 18px 0 4px; }
.trust-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
    border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-soft);
}
.trust-item {
    display: grid; grid-template-columns: 58px 1fr; gap: 12px; align-items: center;
    min-height: 108px; padding: 18px 20px;
}
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.round-icon, .mini-icon, .service-icon { display: grid; place-items: center; }
.round-icon {
    width: 50px; height: 50px; border-radius: 50%; border: 1.5px solid rgba(239,124,42,.45); background: var(--accent-soft);
}
.round-icon img, .mini-icon img, .service-icon img {
    width: 24px; height: 24px; filter: invert(50%) sepia(80%) saturate(2500%) hue-rotate(353deg) brightness(97%) contrast(94%);
}
.trust-item strong { display: block; margin-bottom: 3px; color: var(--navy); font-size: .96rem; }
.trust-item p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.45; }

.section { padding: 68px 0; }
.section-soft { background: var(--panel); }
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 32px; }
.section-heading.section-heading-left { text-align: left; max-width: none; margin: 0 0 32px; }
.section-heading h2, .panel h2 {
    margin: 0 0 10px; color: var(--navy); font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3vw, 3rem); line-height: 1.06;
}
.section-heading p { margin: 0; color: var(--muted); font-size: 1.05rem; }

.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.service-card {
    display: flex; flex-direction: column; padding: 24px; min-height: 100%;
    border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-soft);
    transition: transform .16s ease, box-shadow .16s ease;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.service-icon { width: 58px; height: 58px; margin-bottom: 16px; border-radius: 16px; background: var(--accent-soft); }
.service-card h3 { margin: 0 0 10px; color: var(--navy); font-size: 1.18rem; }
.service-card p { margin: 0 0 16px; color: var(--muted); }
.more { margin-top: auto; color: var(--accent-strong); font-weight: 800; }

.benefit-bar {
    display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 0; margin-top: 28px;
    border: 1px solid rgba(239,124,42,.18); border-radius: 20px; background: var(--accent-pale);
}
.benefit-item { display: grid; grid-template-columns: 46px 1fr; gap: 12px; align-items: start; padding: 20px 22px; }
.benefit-item + .benefit-item { border-left: 1px solid rgba(239,124,42,.12); }
.mini-icon { width: 42px; height: 42px; border-radius: 50%; background: #fff; border: 1px solid rgba(239,124,42,.18); }
.benefit-item strong { display: block; margin-bottom: 3px; color: var(--navy); }
.benefit-item p { margin: 0; color: var(--muted); font-size: .94rem; }

.split-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 28px; }
.panel {
    border: 1px solid var(--line); border-radius: 22px; background: #fff; padding: 28px; box-shadow: var(--shadow-soft);
}
.panel h3 { margin: 0 0 12px; color: var(--navy); font-size: 1.45rem; }
.panel p { margin: 0 0 16px; color: var(--muted); }
.area-layout { display: grid; grid-template-columns: 180px 1fr; gap: 20px; align-items: center; }
.area-map {
    height: 150px; border-radius: 18px;
    background: radial-gradient(circle at 68% 42%, rgba(239,124,42,.85) 0 12px, transparent 13px), linear-gradient(135deg, #f6f9fc 0%, #fff 100%);
    position: relative; border: 1px solid var(--line);
}
.area-map::before {
    content: ""; position: absolute; inset: 18px 22px;
    border-radius: 22% 48% 34% 40% / 35% 35% 56% 44%;
    background: rgba(239,124,42,.14); border: 2px solid rgba(239,124,42,.35);
}
.city-list, .industry-list, .bullet-list {
    margin: 0; padding-left: 18px; color: var(--muted); display: grid; gap: 6px;
}
.logo-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; margin-top: 12px; }
.logo-badge {
    display: grid; place-items: center; padding: 16px; border: 1px dashed rgba(15,32,55,.16); border-radius: 16px;
    color: var(--navy-2); font-weight: 800; background: linear-gradient(180deg, #fff, #fbfcfd);
}

.cta-banner {
    margin-top: 30px; padding: 28px 30px; border-radius: 24px;
    background: radial-gradient(circle at 100% 0, rgba(255,255,255,.16), transparent 32%), linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #fff; display: grid; grid-template-columns: 1.2fr .8fr; gap: 20px; align-items: center;
    box-shadow: 0 16px 34px rgba(239,124,42,.20);
}
.cta-banner h3 { margin: 0 0 8px; font-size: 2rem; line-height: 1.05; }
.cta-banner p { margin: 0; color: rgba(255,255,255,.9); }
.cta-banner .cta-actions { justify-content: flex-end; margin-top: 0; }

.page-hero {
    padding: 42px 0 22px;
    background: radial-gradient(circle at 0 0, rgba(239,124,42,.08), transparent 30%), linear-gradient(180deg, #fff 0%, #fffaf7 100%);
}
.page-hero-grid { display: grid; grid-template-columns: 1fr 360px; gap: 30px; align-items: center; }
.info-card, .contact-card {
    padding: 24px; border-radius: 22px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft);
}
.info-card h3, .contact-card h3 { margin: 0 0 10px; color: var(--navy); }
.info-card p, .contact-card p { margin: 0 0 14px; color: var(--muted); }
.info-card ul { margin: 0; padding-left: 18px; color: var(--muted); display: grid; gap: 6px; }

.icon-bullets { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; margin-top: 28px; }
.icon-bullet {
    display: grid; grid-template-columns: 48px 1fr; gap: 12px; padding: 18px;
    border: 1px solid var(--line); border-radius: 18px; background: #fff;
}
.icon-bullet strong { display: block; color: var(--navy); margin-bottom: 4px; }
.icon-bullet p { margin: 0; color: var(--muted); }

.content-block { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.check-list { display: grid; gap: 10px; margin: 18px 0 0; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 24px 1fr; gap: 10px; align-items: start; color: var(--muted); }
.check-list li::before {
    content: "✓"; display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%;
    background: var(--accent-soft); color: var(--accent-strong); font-weight: 800; font-size: 14px;
}
.contact-list { display: grid; gap: 14px; margin-top: 12px; }
.contact-row {
    display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; color: var(--muted);
}
.contact-row img {
    width: 18px; height: 18px; margin-top: 2px;
    filter: invert(50%) sepia(80%) saturate(2500%) hue-rotate(353deg) brightness(97%) contrast(94%);
}
.form-placeholder {
    border: 1px dashed rgba(239,124,42,.35); border-radius: 22px; background: var(--accent-pale);
    padding: 22px; color: var(--muted);
}
.form-placeholder .field { height: 48px; border-radius: 12px; background: #fff; border: 1px solid rgba(15,32,55,.08); margin: 10px 0; }
.form-placeholder .field.textarea { height: 140px; }

.mini-note {
    padding: 16px 18px; border-left: 4px solid var(--accent); background: var(--accent-pale);
    color: var(--muted); border-radius: 0 14px 14px 0;
}

.footer {
    margin-top: 68px; background: linear-gradient(180deg, var(--footer), var(--footer-2)); color: #edf3fa;
}
.footer-top { padding: 44px 0 28px; display: grid; grid-template-columns: 1.2fr .9fr .9fr .9fr .9fr; gap: 26px; }
.footer h4 { margin: 0 0 14px; font-size: 1rem; color: #fff; }
.footer p, .footer li, .footer a { color: rgba(237,243,250,.78); }
.footer ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.footer-brand .brand-main { color: #fff; }
.footer-brand .brand-main .accent { color: var(--accent); }
.footer-brand .brand-tagline { color: rgba(255,255,255,.75); }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials span {
    width: 34px; height: 34px; display: grid; place-items: center;
    border-radius: 50%; border: 1px solid rgba(255,255,255,.14); color: #fff;
}
.footer-bottom {
    padding: 16px 0 22px; border-top: 1px solid rgba(255,255,255,.08);
    display: flex; gap: 16px; justify-content: space-between; align-items: center;
    color: rgba(237,243,250,.72); font-size: .95rem;
}
.center-text { text-align: center; }
.narrow { max-width: 800px; margin-inline: auto; }

@media (max-width: 1120px) {
    .header-inner { grid-template-columns: 220px 1fr 230px; gap: 18px; }
    .trust-grid { grid-template-columns: repeat(3, 1fr); }
    .trust-item:nth-child(4), .trust-item:nth-child(5) { border-top: 1px solid var(--line); }
    .trust-item:nth-child(4) { border-left: none; }
    .hero-grid, .page-hero-grid, .content-block, .split-panels, .cta-banner { grid-template-columns: 1fr; }
    .benefit-bar { grid-template-columns: repeat(2,1fr); }
    .benefit-item:nth-child(3), .benefit-item:nth-child(4) { border-top: 1px solid rgba(239,124,42,.12); }
    .benefit-item:nth-child(3) { border-left: none; }
    .footer-top { grid-template-columns: 1.2fr 1fr 1fr; }
}
@media (max-width: 900px) {
    .main-nav {
        position: absolute; top: 82px; left: 16px; right: 16px; padding: 16px;
        border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.99);
        box-shadow: var(--shadow); transform: translateY(-10px); opacity: 0; visibility: hidden; transition: .18s ease;
    }
    .main-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
    .main-nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
    .nav-link, .nav-button { width: 100%; justify-content: space-between; padding: 14px 0; }
    .dropdown {
        position: static; min-width: 0; padding: 8px 0 0; border: 0; box-shadow: none;
        opacity: 1; visibility: visible; transform: none; display: none; background: transparent;
    }
    .nav-item.is-open .dropdown { display: block; }
    .dropdown a { padding-left: 12px; }
    .header-contact { display: none; }
    .header-inner { grid-template-columns: 1fr auto; }
    .mobile-toggle { display: block; }
    .hero { padding-top: 20px; }
    .hero-grid { gap: 28px; }
    .service-grid, .split-panels, .icon-bullets { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
    .container { width: min(calc(100% - 32px), var(--max)); }
    .service-grid, .trust-grid, .benefit-bar, .icon-bullets, .footer-top, .area-layout { grid-template-columns: 1fr; }
    .trust-item + .trust-item, .benefit-item + .benefit-item { border-left: none; border-top: 1px solid var(--line); }
    .hero-actions, .cta-banner .cta-actions { flex-direction: column; align-items: stretch; }
    .site-header { height: 74px; }
    .main-nav { top: 74px; }
}
