:root {
    --bg-page: #0f131d;
    --bg-surface: #161b2a;
    --bg-muted: #1e2537;
    --bg-accent: rgba(236, 111, 54, 0.08);
    --bg-subtle: #1a2030;
    --text-primary: #f6f8ff;
    --text-secondary: #c7cedd;
    --text-muted: #8f9ab6;
    --accent: #ec6f36;
    --accent-strong: #ff8e53;
    --accent-soft: rgba(236, 111, 54, 0.22);
    --border: rgba(120, 129, 150, 0.25);
    --shadow: 0 22px 44px rgba(6, 8, 16, 0.55);
    --radius-md: 18px;
    --radius-lg: 28px;
    --transition: all 0.25s ease;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    background: var(--bg-page);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus {
    color: var(--accent-strong);
}

.container {
    width: min(1080px, 92vw);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(15, 20, 31, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand__mark {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: var(--accent);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 600;
    letter-spacing: 0.08em;
    box-shadow: 0 12px 28px rgba(236, 111, 54, 0.35);
}

.brand__name {
    font-weight: 600;
    font-size: 1.05rem;
}

.brand__role {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

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

.nav-link {
    position: relative;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 6px 0;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.nav-link.active,
.nav-link:hover {
    color: var(--text-primary);
}

.nav-link.active::after,
.nav-link:hover::after {
    transform: scaleX(1);
}

main {
    padding-bottom: 72px;
}

.hero {
    padding: 84px 0 52px;
}

.hero__grid {
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.95fr);
    align-items: start;
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.eyebrow {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent-strong);
}

.hero__title {
    font-size: clamp(2.3rem, 4vw, 3.1rem);
    line-height: 1.12;
    font-weight: 700;
}

.hero__description {
    font-size: 1rem;
    color: var(--text-secondary);
}

.hero-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--text-secondary);
}

.hero-list li {
    position: relative;
    padding-left: 20px;
}

.hero-list li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-strong);
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.cta-button:hover {
    background: var(--accent-strong);
    box-shadow: 0 26px 46px rgba(236, 111, 54, 0.45);
    color: #fff;
}

.cta-button:focus {
    color: #fff;
}

.secondary-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.secondary-link::after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
}

.secondary-link--plain::after {
    display: none;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
}

.hero-metrics dt {
    font-weight: 600;
    font-size: 1rem;
}

.hero-metrics dd {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.hero__profile {
    display: flex;
}

.profile-panel {
    width: 100%;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.profile-panel__header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.profile-panel__avatar {
    width: 92px;
    height: 92px;
    border-radius: 24px;
    object-fit: cover;
}

.profile-panel__titles {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.profile-panel__name {
    font-weight: 600;
    font-size: 1.12rem;
}

.profile-panel__role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.profile-panel__intro {
    color: var(--text-secondary);
    font-size: 0.96rem;
}

.profile-panel__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--text-secondary);
}

.profile-panel__list i {
    color: var(--accent-strong);
    width: 20px;
}

.profile-panel__cta {
    display: flex;
    gap: 12px;
}

.profile-panel__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-subtle);
    color: var(--accent-strong);
    border: 1px solid var(--border);
    position: relative;
    transition: var(--transition);
}

.profile-panel__icon:hover,
.profile-panel__icon:focus {
    background: var(--accent);
    color: #fff;
    border-color: transparent;
}

.profile-panel__icon:focus {
    outline: 2px solid rgba(236, 111, 54, 0.4);
    outline-offset: 2px;
}

.profile-panel__icon::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translate(-50%, 6px);
    background: var(--bg-subtle);
    color: var(--text-primary);
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 0.75rem;
    white-space: nowrap;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.profile-panel__icon:hover::after,
.profile-panel__icon:focus::after {
    opacity: 1;
    transform: translate(-50%, 0);
}


.section {
    padding: 64px 0;
}

.section--muted,
.section--balanced {
    background: var(--bg-muted);
}

.section--cta {
    background: var(--bg-page);
}

.section--accent {
    background: var(--bg-subtle);
}

.section__header {
    max-width: 600px;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section__header p {
    color: var(--text-secondary);
}

.card-grid {
    display: grid;
    gap: 20px;
}

.card-grid--three {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.info-card {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--text-secondary);
    box-shadow: var(--shadow);
}

.info-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
}

.info-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.split {
    display: grid;
    gap: 24px;
}

.split--two {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.split__block {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: var(--shadow);
}

.split__lead {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-list span {
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-strong);
    font-size: 0.85rem;
    font-weight: 600;
}

.link-list {
    list-style: none;
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--text-primary);
}

.link-list--compact {
    box-shadow: none;
    border: 1px solid rgba(236, 111, 54, 0.25);
}

.link-list a {
    color: var(--text-primary);
    transition: color 0.2s ease;
}

.link-list a:hover {
    color: var(--accent-strong);
}

.link-list li i {
    color: var(--accent-strong);
}

.download-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.download-list--stacked {
    gap: 12px;
}

.download-link {
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    display: flex;
    gap: 14px;
    align-items: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.download-link:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
}

.download-link i {
    font-size: 1.4rem;
    color: var(--accent-strong);
}

.download-link strong {
    display: block;
    color: var(--text-primary);
}

.download-link small {
    color: var(--text-muted);
}

.section--cta .cta-panel {
    margin: 0 auto;
    max-width: 640px;
    padding: 40px;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: center;
}

.contact-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.site-footer {
    padding: 32px 0;
    border-top: 1px solid var(--border);
    background: var(--bg-surface);
    text-align: center;
    color: var(--text-muted);
}

.js-enabled [data-animate="card"] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-enabled [data-animate="card"].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.pulse {
    animation: pulse-scale 0.28s ease;
}

@keyframes pulse-scale {
    0% { transform: scale(1); }
    50% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

@media (max-width: 1024px) {
    .site-nav { display: none; }
    .hero__grid { grid-template-columns: 1fr; }
    .hero__profile { order: -1; }
}

@media (max-width: 720px) {
    .hero { padding: 70px 0 44px; }
    .section { padding: 56px 0; }
    .profile-panel { gap: 16px; }
    .profile-panel__header { flex-direction: column; align-items: flex-start; }
    .profile-panel__avatar { width: 72px; height: 72px; }
    .profile-panel__cta { flex-wrap: wrap; }
    .profile-panel__icon { width: 44px; height: 44px; }
    .hero__actions { flex-direction: column; align-items: stretch; }
    .cta-button,
    .secondary-link { width: 100%; justify-content: center; }
    .link-list,
    .split__block { padding: 22px; }
}

@media (max-width: 480px) {
    .hero-list li { padding-left: 16px; }
    .contact-options { flex-direction: column; }
}


.service-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: var(--shadow);
}

.service-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-card__index {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(236, 111, 54, 0.14);
    color: var(--accent-strong);
    font-weight: 600;
    font-size: 1rem;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
    font-size: 1.18rem;
    font-weight: 600;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
}

.service-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--text-secondary);
}

.service-card ul li {
    position: relative;
    padding-left: 18px;
}

.service-card ul li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--accent-strong);
}

.service-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.service-card__meta i {
    color: var(--accent-strong);
    margin-right: 6px;
}

@media (max-width: 720px) {
    .service-card {
        padding: 22px;
    }

    .service-card__head {
        gap: 10px;
    }
}


.service-grid--cto {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.service-grid--cto .service-card {
    min-height: 100%;
}
