:root {
    --bg: #07111f;
    --bg-soft: #0c1c32;
    --bg-panel: rgba(12, 28, 50, 0.72);
    --surface: #f6f8fc;
    --surface-2: #edf2fa;
    --text: #102038;
    --text-soft: #59667c;
    --white: #ffffff;
    --line: rgba(255, 255, 255, 0.12);
    --line-dark: rgba(16, 32, 56, 0.08);
    --gold: #e2b84b;
    --gold-strong: #f4c85c;
    --blue: #114f97;
    --blue-2: #2b78d6;
    --shadow-xl: 0 30px 70px rgba(6, 22, 42, 0.22);
    --shadow-md: 0 18px 35px rgba(12, 28, 50, 0.12);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 18px;
    --container: 1260px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(43, 120, 214, 0.14), transparent 24%),
        linear-gradient(180deg, #f9fbff 0%, #eef4fb 55%, #f8fafc 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; line-height: 1.8; color: var(--text-soft); }
h1, h2, h3, h4 { font-family: 'Exo 2', sans-serif; margin: 0 0 1rem; color: var(--text); }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.site-shell { overflow: hidden; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(226, 184, 75, 0.28);
    color: var(--gold-strong);
    background: rgba(226, 184, 75, 0.08);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.section { padding: 110px 0; }
.section-heading { margin-bottom: 34px; }
.section-heading.centered { text-align: center; max-width: 880px; margin-left: auto; margin-right: auto; }
.section-heading.narrow { max-width: 760px; }
.section-heading h2 { font-size: clamp(2rem, 3vw, 3.3rem); line-height: 1.12; margin-top: 16px; }
.section-heading p { font-size: 1.04rem; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(18px);
    background: rgba(7, 17, 31, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled { background: rgba(7, 17, 31, 0.9); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22); }
.nav-wrap {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    min-height: 88px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; color: var(--white); }
.brand img {
    width: 62px; height: 62px; object-fit: cover; border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.24);
    border: 1px solid rgba(255,255,255,0.16);
}
.brand-copy { display: flex; flex-direction: column; gap: 3px; }
.brand-copy strong { font-family: 'Exo 2', sans-serif; font-size: 1.15rem; letter-spacing: 0.02em; }
.brand-copy span { color: rgba(255,255,255,0.72); font-size: 0.84rem; }
.site-nav {
    justify-self: center;
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
}
.site-nav a {
    color: rgba(255,255,255,0.88);
    font-weight: 700;
    font-size: 0.96rem;
    position: relative;
}
.site-nav a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -8px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after { transform: scaleX(1); }
.lang-switcher {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 999px;
    color: var(--white);
}
.lang-switcher a { color: rgba(255,255,255,0.7); font-weight: 800; }
.lang-switcher a.active { color: var(--gold-strong); }
.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 0;
    width: 52px;
    height: 52px;
    margin-left: auto;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    margin: 5px auto;
    border-radius: 999px;
    background: var(--white);
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.hero-section {
    position: relative;
    padding: 110px 0 70px;
    background:
        radial-gradient(circle at 20% 0%, rgba(43, 120, 214, 0.35), transparent 32%),
        radial-gradient(circle at 90% 10%, rgba(226, 184, 75, 0.18), transparent 24%),
        linear-gradient(135deg, #07111f 0%, #0b2447 58%, #123f73 100%);
    color: var(--white);
}
.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.45;
}
.hero-section::before {
    width: 260px; height: 260px; left: -60px; top: 20px;
    background: rgba(226, 184, 75, 0.28);
}
.hero-section::after {
    width: 340px; height: 340px; right: -120px; bottom: -50px;
    background: rgba(43, 120, 214, 0.35);
}
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 42px;
    align-items: center;
}
.hero-copy h1 {
    color: var(--white);
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    line-height: 0.98;
    margin-top: 18px;
    max-width: 11ch;
}
.hero-description {
    color: rgba(255,255,255,0.82);
    font-size: 1.15rem;
    max-width: 61ch;
    margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 26px; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 28px;
    border-radius: 16px;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, #f3cf7d 100%);
    color: #1d2330;
    box-shadow: 0 16px 30px rgba(226, 184, 75, 0.32);
}
.btn-dark {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.14);
}
.full-width { width: 100%; }
.hero-points {
    list-style: none;
    padding: 0; margin: 0;
    display: grid; gap: 14px;
}
.hero-points li {
    display: flex; align-items: center; gap: 12px;
    color: rgba(255,255,255,0.86);
    font-weight: 600;
}
.hero-points i { color: var(--gold-strong); }
.glass-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 20px 60px rgba(4, 14, 28, 0.34);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-xl);
}
.hero-info-card { padding: 24px; }
.card-head {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--white); font-weight: 800; font-size: 0.95rem; margin-bottom: 16px;
}
.card-dot {
    width: 12px; height: 12px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #fff0b3);
    box-shadow: 0 0 0 6px rgba(226,184,75,0.12);
}
.hero-info-card p { color: rgba(255,255,255,0.82); font-size: 1.02rem; }
.hero-visual {
    margin-top: 22px;
    padding: 16px;
    background: rgba(255,255,255,0.07);
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.08);
}
.hero-visual img { width: 100%; border-radius: 18px; }

.trust-strip { margin-top: -40px; position: relative; z-index: 2; }
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.trust-item {
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(16,32,56,0.08);
    box-shadow: var(--shadow-md);
    border-radius: 22px;
    padding: 24px;
}
.trust-label {
    display: block;
    margin-bottom: 8px;
    color: #6e7c91;
    font-size: 0.9rem;
    font-weight: 700;
}
.trust-item strong {
    color: var(--text);
    font-size: 1.16rem;
    font-family: 'Exo 2', sans-serif;
}

.section-services { background: transparent; }
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.feature-card {
    padding: 26px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,255,0.92));
    border: 1px solid rgba(16,32,56,0.07);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(226,184,75,0.07), transparent 22%);
    pointer-events: none;
}
.service-icon {
    width: 62px; height: 62px;
    border-radius: 18px;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(226,184,75,0.18), rgba(17,79,151,0.08));
    color: #c99a2b;
    font-size: 1.55rem;
    margin-bottom: 16px;
}
.service-card img {
    border-radius: 18px;
    margin-bottom: 18px;
    border: 1px solid rgba(16,32,56,0.08);
    background: #eef3fb;
}
.service-card h3 {
    font-size: 1.42rem;
    line-height: 1.15;
    margin-bottom: 10px;
}
.service-card p { font-size: 0.98rem; }

.section-industries {
    background: linear-gradient(180deg, rgba(7,17,31,0.96), rgba(11,36,71,0.98));
    color: var(--white);
}
.industries-grid {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 28px;
    align-items: center;
}
.section-industries .section-heading h2,
.section-industries .section-heading p { color: var(--white); }
.section-industries .section-heading p { color: rgba(255,255,255,0.78); }
.industries-panel {
    padding: 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.industry-pill {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--white);
    font-weight: 700;
}
.industry-pill i { color: var(--gold-strong); font-size: 1.2rem; }

.split-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 34px;
    align-items: center;
}
.media-card,
.content-card,
.contact-form-card {
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(16,32,56,0.08);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-xl);
}
.media-card { padding: 18px; }
.media-card img { border-radius: 22px; background: var(--surface-2); }
.content-card { padding: 34px; }
.value-box {
    margin-top: 28px;
    padding: 24px;
    border-radius: 22px;
    background: linear-gradient(180deg, #f5f8ff, #eef3fb);
    border: 1px solid rgba(16,32,56,0.06);
}
.value-box h3 { font-size: 1.3rem; margin-bottom: 14px; }
.value-box ul { margin: 0; padding-left: 18px; display: grid; gap: 10px; }
.value-box li { color: var(--text-soft); line-height: 1.65; }

.section-process { background: transparent; }
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.timeline-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,249,255,0.92));
    border: 1px solid rgba(16,32,56,0.08);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    padding: 26px;
}
.timeline-card span {
    display: inline-flex;
    width: 56px; height: 56px;
    align-items: center; justify-content: center;
    border-radius: 16px;
    font-family: 'Exo 2', sans-serif;
    font-weight: 800;
    color: #173a69;
    background: linear-gradient(135deg, rgba(226,184,75,0.3), rgba(17,79,151,0.12));
    margin-bottom: 18px;
}
.timeline-card h3 { font-size: 1.18rem; }

.section-showcase { padding-top: 10px; }
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.showcase-card {
    padding: 28px 24px;
    border-radius: 22px;
    background: linear-gradient(180deg, #112848, #0b1830);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--white);
    box-shadow: var(--shadow-md);
    min-height: 200px;
    display: flex; flex-direction: column; justify-content: flex-end;
    position: relative;
    overflow: hidden;
}
.showcase-card::before {
    content: '';
    position: absolute;
    inset: 18px 18px auto auto;
    width: 90px; height: 90px;
    border-radius: 22px;
    background: radial-gradient(circle, rgba(226,184,75,0.16), transparent 65%);
}
.showcase-card i { color: var(--gold-strong); font-size: 1.8rem; margin-bottom: 18px; }
.showcase-card span { font-weight: 800; font-size: 1.05rem; line-height: 1.5; }

.section-faq { background: transparent; }
.faq-layout { align-items: start; }
.accordion { display: grid; gap: 14px; }
.accordion-item {
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(16,32,56,0.08);
    border-radius: 22px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.accordion-trigger {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--text);
    font-family: 'Exo 2', sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    cursor: pointer;
}
.accordion-trigger i { color: var(--blue); transition: transform 0.25s ease; }
.accordion-item.active .accordion-trigger i { transform: rotate(45deg); }
.accordion-panel {
    display: none;
    padding: 0 24px 22px;
}
.accordion-item.active .accordion-panel { display: block; }

.section-cta { padding-top: 30px; }
.cta-box {
    padding: 42px;
    border-radius: 30px;
    background: linear-gradient(135deg, #07111f 0%, #102f5a 58%, #1f5ca8 100%);
    color: var(--white);
    box-shadow: 0 35px 70px rgba(8, 18, 34, 0.26);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
}
.cta-box h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 3rem); }
.cta-box p { color: rgba(255,255,255,0.8); max-width: 68ch; }

.section-contact { padding-top: 80px; }
.contact-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 28px;
    align-items: start;
}
.contact-cards { display: grid; gap: 14px; margin-top: 24px; }
.contact-card {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(16,32,56,0.08);
    box-shadow: var(--shadow-md);
}
.contact-card i {
    width: 56px; height: 56px; border-radius: 18px;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(226,184,75,0.2), rgba(17,79,151,0.12));
    color: #c89623; font-size: 1.2rem;
}
.contact-card span {
    display: block;
    margin-bottom: 6px;
    color: #6a7488;
    font-size: 0.9rem;
    font-weight: 700;
}
.contact-card a,
.contact-card strong { font-weight: 800; color: var(--text); }
.contact-form-card { padding: 26px; }
#contactForm { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
label { display: grid; gap: 10px; }
label span { font-weight: 800; color: var(--text); }
input, select, textarea {
    width: 100%;
    border: 1px solid rgba(16,32,56,0.12);
    border-radius: 16px;
    background: rgba(255,255,255,0.9);
    color: var(--text);
    padding: 15px 18px;
    font: inherit;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
input:focus, select:focus, textarea:focus {
    border-color: rgba(17,79,151,0.5);
    box-shadow: 0 0 0 4px rgba(17,79,151,0.08);
}
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-status {
    min-height: 24px;
    font-weight: 700;
    color: var(--blue);
}
.form-status.error { color: #c0392b; }

.site-footer {
    margin-top: 90px;
    padding: 34px 0 48px;
    background: #07111f;
    color: rgba(255,255,255,0.78);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
}
.site-footer strong { display: block; color: var(--white); margin-bottom: 10px; font-family: 'Exo 2', sans-serif; }
.site-footer p { color: rgba(255,255,255,0.62); max-width: 72ch; margin: 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { color: rgba(255,255,255,0.78); font-weight: 700; }

@media (max-width: 1200px) {
    .site-nav { gap: 18px; }
    .hero-grid,
    .split-grid,
    .contact-grid,
    .industries-grid { grid-template-columns: 1fr; }
    .timeline-grid,
    .showcase-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
    .nav-wrap {
        grid-template-columns: auto auto auto;
        align-items: center;
    }
    .menu-toggle { display: inline-block; }
    .site-nav {
        position: absolute;
        top: calc(100% + 12px);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        gap: 0;
        background: rgba(7,17,31,0.96);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 22px;
        box-shadow: 0 24px 50px rgba(0,0,0,0.32);
        padding: 12px;
    }
    .site-nav.open { display: flex; }
    .site-nav a {
        padding: 15px 14px;
        border-radius: 14px;
    }
    .site-nav a:hover { background: rgba(255,255,255,0.06); }
    .site-nav a::after { display: none; }
    .lang-switcher { justify-self: end; }
    .trust-grid,
    .service-grid,
    .timeline-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
    .section { padding: 88px 0; }
    .hero-section { padding-top: 96px; }
    .brand-copy { display: none; }
    .nav-wrap { gap: 12px; }
    .lang-switcher { font-size: 0.92rem; padding: 9px 12px; }
    .hero-copy h1 { max-width: none; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .trust-grid,
    .service-grid,
    .timeline-grid,
    .showcase-grid,
    .form-row,
    .industries-panel,
    .footer-grid,
    .cta-box,
    .contact-grid { grid-template-columns: 1fr; }
    .cta-box { padding: 28px; }
    .contact-card { grid-template-columns: 48px 1fr; }
    .contact-card i { width: 48px; height: 48px; border-radius: 14px; }
    .container { width: min(var(--container), calc(100% - 22px)); }
}
