:root {
    --bg: #f5fbff;
    --white: #ffffff;
    --dark: #0a1033;
    --dark-soft: #13235d;
    --text: #1f2d67;
    --muted: #4a5fa3;
    --primary: #0b56ff;
    --primary-hover: #0044d4;
    --accent: #20d85f;
    --accent-soft: #d9ffe6;
    --yellow: #ffeb00;
    --red: #ff2f57;
    --green: #2dff73;
    --border: #c9d7ff;
    --shadow: 0 15px 0 rgba(10, 16, 51, 0.18), 0 22px 48px rgba(10, 16, 51, 0.22);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 10% 0%, rgba(11, 86, 255, 0.18), transparent 35%),
        radial-gradient(circle at 90% 30%, rgba(255, 47, 87, 0.16), transparent 30%),
        radial-gradient(circle at 10% 90%, rgba(45, 255, 115, 0.18), transparent 30%),
        var(--bg);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

.footer-logo-shell {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    margin-bottom: 12px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(151, 204, 65, 0.55);
    box-shadow: 0 12px 26px rgba(15, 37, 80, 0.32);
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(214, 227, 243, 0.92);
    backdrop-filter: blur(8px);
}

.global-promo-band {
    background: linear-gradient(90deg, #163766 0%, #2f6fe7 52%, #97cc41 100%);
    border-bottom: 1px solid rgba(14, 27, 45, 0.1);
}

.global-promo-band a {
    display: block;
    text-align: center;
    color: #fff;
    font-weight: 800;
    padding: 10px 8px;
    font-size: 0.92rem;
    text-decoration: none;
}

.global-promo-band a:hover {
    filter: brightness(1.06);
}
.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-inline-start: 8px;
}

.lang-switcher a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 30px;
    padding: 0 8px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--dark-soft);
}

.lang-switcher a.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

body.rtl {
    direction: rtl;
}

body.rtl .check-list,
body.rtl .promo-list,
body.rtl .promo-checks,
body.rtl .project-body ul,
body.rtl .service-card ul,
body.rtl .card ul {
    padding-left: 0;
    padding-right: 18px;
}

body.rtl .footer-bottom {
    flex-direction: row-reverse;
}

body.rtl .footer-links {
    flex-direction: row-reverse;
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 78px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.brand-logo {
    height: 56px;
    width: auto;
    max-width: 225px;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(15, 37, 80, 0.18));
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-nav a {
    color: var(--dark-soft);
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.nav-toggle {
    display: none;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--dark);
    border-radius: 8px;
    padding: 10px 12px;
    font-weight: 600;
    cursor: pointer;
}

.hero {
    position: relative;
    color: var(--white);
    min-height: 78vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.home-hero {
    background:
        linear-gradient(118deg, rgba(7, 16, 32, 0.9) 0%, rgba(10, 33, 69, 0.76) 55%, rgba(151, 204, 65, 0.46) 100%),
        url('../images/hero-main.jpg') center/cover no-repeat;
}

.hero-content {
    max-width: 760px;
    padding: 80px 0 70px;
}

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-size: 0.78rem;
    font-weight: 700;
    color: #9dc6ff;
    margin-bottom: 14px;
}

.hero h1,
.page-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 4.4vw, 3.35rem);
    line-height: 1.2;
    color: var(--white);
}

.hero p,
.page-hero p {
    margin: 0;
    color: #dde8f7;
    font-size: 1.03rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 10px;
    font-weight: 700;
    padding: 12px 20px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(47, 111, 231, 0.4);
}

.btn-primary:hover {
    background: var(--primary-hover);
}

.btn-secondary {
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--white);
}

.btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.14);
}

.stats {
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.stats-grid article {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 18px;
    box-shadow: var(--shadow);
}

.stats-grid h2 {
    margin: 0;
    color: var(--dark);
    font-size: 1.7rem;
}

.stats-grid p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.93rem;
}

.section {
    padding: 85px 0;
}

.section-alt {
    background: linear-gradient(180deg, #ffffff 0%, #edf4ff 100%);
}

.section-title {
    margin: 0;
    color: var(--dark);
    font-size: clamp(1.5rem, 3.2vw, 2.35rem);
    line-height: 1.25;
}

.section-intro {
    max-width: 760px;
    margin: 14px 0 0;
    color: var(--muted);
}

.cards {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.card h3 {
    margin: 0 0 10px;
    color: var(--dark);
    font-size: 1.09rem;
}

.card p {
    margin: 0;
    color: var(--muted);
}

.split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 34px;
    align-items: center;
}

.check-list {
    margin: 22px 0 0;
    padding-left: 18px;
}

.check-list li {
    margin: 10px 0;
    color: var(--text);
}

.image-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.cta {
    padding-top: 20px;
}

.cta-box {
    background: linear-gradient(135deg, #16366a 0%, #2356a8 55%, #89be35 100%);
    color: var(--white);
    border-radius: 16px;
    padding: clamp(30px, 5vw, 54px);
    box-shadow: var(--shadow);
}

.cta-box h2 {
    margin: 0;
    font-size: clamp(1.5rem, 3.1vw, 2.2rem);
}

.cta-box p {
    max-width: 780px;
    color: #d8e7ff;
    margin: 16px 0 24px;
}

.page-hero {
    position: relative;
    color: var(--white);
    min-height: 48vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(9, 20, 39, 0.92) 0%, rgba(17, 51, 102, 0.64) 100%);
}

.page-hero .container {
    position: relative;
    z-index: 1;
    max-width: 840px;
    padding: 70px 0;
}

.legal-hero {
    background:
        linear-gradient(120deg, rgba(9, 20, 39, 0.92), rgba(17, 51, 102, 0.66)),
        url('../images/legal-hero.jpg') center/cover no-repeat;
}

.promo-hero {
    background:
        linear-gradient(120deg, rgba(47, 111, 231, 0.84), rgba(24, 73, 149, 0.76), rgba(151, 204, 65, 0.65)),
        url('../images/services-hero.jpg') center/cover no-repeat;
    overflow: hidden;
}

.promo-hero::before {
    background: linear-gradient(128deg, rgba(9, 20, 39, 0.64) 0%, rgba(20, 52, 102, 0.46) 100%);
}

.promo-hero::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    right: -70px;
    top: -55px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
    z-index: 0;
}

.promo-hero .container {
    position: relative;
    z-index: 1;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #d8ec8c;
    color: #16345f;
    font-weight: 800;
    padding: 8px 14px;
    border-radius: 999px;
    border: 3px solid #1d3e73;
    box-shadow: 6px 6px 0 rgba(29, 62, 115, 0.34);
    margin-bottom: 18px;
}

.promo-strip {
    background: #fff;
    border: 2px dashed var(--accent);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: var(--shadow);
}

.promo-strip p {
    margin: 0;
    font-weight: 600;
    color: var(--dark-soft);
}

.promo-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.promo-card {
    background: #ffffff;
    border: 3px solid #151515;
    border-radius: 22px;
    padding: 22px;
    box-shadow: 10px 10px 0 rgba(21, 21, 21, 0.16);
}

.promo-card.featured {
    transform: translateY(-10px) rotate(-1deg);
    background: linear-gradient(180deg, #f6fbe8 0%, #e9f5cf 100%);
}

.promo-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    background: linear-gradient(135deg, #2f6fe7 0%, #9dd74a 100%);
    border: 2px solid #131313;
    box-shadow: 4px 4px 0 rgba(19, 19, 19, 0.25);
    margin-bottom: 14px;
}

.promo-card h3 {
    margin: 0 0 8px;
    color: #0f1d2f;
}

.promo-price {
    margin: 0 0 8px;
    font-size: 1.55rem;
    color: #1f4f9f;
    font-weight: 800;
}

.promo-tag {
    display: inline-block;
    margin: 0 0 12px;
    background: #2a63ca;
    color: #fff;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
}

.promo-list {
    margin: 10px 0 0;
    padding-left: 18px;
}

.promo-list li {
    margin: 8px 0;
    color: var(--text);
}

.promo-steps {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.promo-step {
    background: #ffffff;
    border: 2px solid #111;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 7px 7px 0 rgba(17, 17, 17, 0.15);
}

.promo-step-number {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    border: 2px solid #17386b;
}

.promo-step h3 {
    margin: 12px 0 8px;
    color: var(--dark);
}

.promo-step p {
    margin: 0;
    color: var(--muted);
}

.promo-cta-box {
    background: linear-gradient(140deg, #1d4a96 0%, #2f6fe7 55%, #92ca3f 100%);
    color: #fff;
    border: 3px solid #111;
    border-radius: 20px;
    padding: clamp(28px, 4vw, 40px);
    box-shadow: 10px 10px 0 rgba(17, 17, 17, 0.2);
}

.promo-cta-box h2 {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.promo-cta-box p {
    margin: 14px 0 0;
    color: #eef5ff;
}

.promo-checks {
    margin: 18px 0 24px;
    padding-left: 18px;
}

.promo-checks li {
    margin: 8px 0;
}

.service-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.service-card h3 {
    margin: 0 0 10px;
    color: var(--dark);
}

.service-card p {
    margin: 0;
    color: var(--muted);
}

.service-card ul {
    margin: 14px 0 0;
    padding-left: 18px;
}

.service-card li {
    margin: 8px 0;
    color: var(--text);
}

.steps {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.steps article {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px;
}

.steps span {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(47, 111, 231, 0.16);
    color: var(--primary);
    font-weight: 800;
}

.steps h3 {
    margin: 14px 0 8px;
    color: var(--dark);
}

.steps p {
    margin: 0;
    color: var(--muted);
}

.centered {
    text-align: center;
}

.centered .btn {
    margin-top: 24px;
}

.project-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.project-card {
    border-radius: 14px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.project-card img {
    width: 100%;
    height: 215px;
    object-fit: cover;
}

.project-body {
    padding: 18px 18px 20px;
}

.project-body h3 {
    margin: 0 0 8px;
    color: var(--dark);
    font-size: 1.03rem;
}

.project-body p {
    margin: 0;
    color: var(--muted);
}

.project-body ul {
    margin: 12px 0 0;
    padding-left: 18px;
}

.project-body li {
    margin: 6px 0;
    color: var(--text);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 24px;
}

.contact-card h2 {
    margin: 0 0 8px;
    color: var(--dark);
    font-size: 1.3rem;
}

.contact-card p {
    margin: 0 0 16px;
    color: var(--muted);
}

.form {
    display: grid;
    gap: 11px;
}

.form label {
    color: var(--dark);
    font-weight: 600;
    font-size: 0.93rem;
}

.form input,
.form textarea {
    width: 100%;
    border: 1px solid #ced9e8;
    border-radius: 10px;
    padding: 11px 12px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text);
    background: #fbfdff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form input:focus,
.form textarea:focus {
    outline: none;
    border-color: rgba(47, 111, 231, 0.75);
    box-shadow: 0 0 0 3px rgba(47, 111, 231, 0.14);
}

.inline-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.form .btn {
    width: fit-content;
    margin-top: 6px;
}

.domain-check {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.domain-check .domain-check-btn {
    margin-top: 0;
    white-space: nowrap;
}

.domain-check .domain-check-btn:disabled {
    opacity: 0.75;
    cursor: wait;
}

.domain-check-result {
    margin: 8px 0 0;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.4;
}

.domain-check-result.is-info {
    color: var(--muted);
}

.domain-check-result.is-available {
    color: #0a7a39;
}

.domain-check-result.is-unavailable,
.domain-check-result.is-error {
    color: #b72020;
}

.form-wide {
    max-width: 880px;
    margin: 0 auto;
}

.brief-form {
    margin-top: 24px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: clamp(18px, 2.5vw, 28px);
    box-shadow: var(--shadow);
}

.checklist-group {
    margin-top: 12px;
    padding: 14px;
    border: 1px solid #d6e0ef;
    border-radius: 12px;
    background: #f9fbff;
}

.checklist-group h3 {
    margin: 0 0 10px;
    color: var(--dark);
    font-size: 1rem;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
}

.checklist-grid label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--text);
    font-size: 0.92rem;
    line-height: 1.35;
    cursor: pointer;
}

.checklist-grid input[type="checkbox"] {
    margin-top: 2px;
    accent-color: var(--primary);
}

.status-message {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 10px;
    font-weight: 600;
}

.status-message.success {
    background: #eaf9ef;
    color: #0a7a39;
    border: 1px solid #b9e6c9;
}

.status-message.error {
    background: #fff0f0;
    color: #b72020;
    border: 1px solid #f1b9b9;
}

.contact-infos {
    margin-top: 26px;
    background: #f3f7fd;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px;
}

.contact-infos h3 {
    margin: 0 0 10px;
    color: var(--dark);
}

.contact-infos p {
    margin: 6px 0;
    color: var(--text);
}

.legal-content h2 {
    margin: 0 0 8px;
    color: var(--dark);
    font-size: 1.3rem;
}

.legal-content h2:not(:first-child) {
    margin-top: 34px;
}

.legal-content p {
    margin: 8px 0;
    color: var(--text);
}

.site-footer {
    background: linear-gradient(180deg, #0b1e3b 0%, #113160 100%);
    color: #d6deea;
    margin-top: 40px;
}

.footer-top {
    padding: 65px 0 38px;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 26px;
}

.footer-col h3,
.footer-col h4 {
    margin: 0 0 12px;
    color: #ffffff;
}

.footer-logo {
    height: 56px;
    width: auto;
    max-width: 240px;
    display: block;
}

.footer-col p {
    margin: 0;
    color: #bcc7d8;
}

.footer-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-col li {
    margin: 8px 0;
    color: #c5d0df;
}

.footer-bottom {
    border-top: 1px solid rgba(197, 208, 223, 0.18);
    padding: 18px 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
    color: #c7d2e1;
    font-size: 0.92rem;
}

.footer-links {
    display: flex;
    gap: 14px;
}

.footer-links a {
    color: #dbe6f5;
    font-size: 0.92rem;
}

.footer-links a:hover {
    color: var(--primary);
}

@media (max-width: 1080px) {
    .cards,
    .project-grid,
    .promo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stats-grid,
    .steps,
    .promo-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 860px) {
    .brand-logo {
        height: 46px;
    }
    .nav-toggle {
        display: inline-flex;
    }

    .main-nav {
        position: absolute;
        top: 79px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 4%;
        gap: 12px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: all 0.25s ease;
    }

    .main-nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .split,
    .service-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .lang-switcher {
        margin-inline-start: 0;
        margin-top: 6px;
    }
}

@media (max-width: 640px) {
    .cards,
    .project-grid,
    .stats-grid,
    .steps,
    .promo-grid,
    .promo-steps,
    .checklist-grid,
    .inline-fields,
    .footer-top {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 70vh;
    }

    .section {
        padding: 66px 0;
    }

    .domain-check {
        flex-direction: column;
    }

    .domain-check .domain-check-btn {
        width: 100%;
    }

    .promo-card.featured {
        transform: none;
    }
}

/* Flash/cartoon style overrides aligned with hilcumputer */
.site-header {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(236, 244, 255, 0.97) 100%);
    border-bottom: 2px solid var(--primary);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-social {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.quick-social a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--primary);
    transition: transform 0.2s ease, background 0.2s ease;
}

.quick-social a:hover {
    transform: translateY(-2px) rotate(-6deg);
    background: var(--yellow);
    color: #0a1033;
}

.brand-logo {
    padding: 4px 6px;
    border-radius: 10px;
    border: 2px solid #0a1033;
    background: linear-gradient(120deg, #ffffff 0%, #eaf2ff 100%);
}

.global-promo-band {
    background: linear-gradient(90deg, #0b56ff 0%, #ff2f57 35%, #ffeb00 65%, #2dff73 100%);
    border-top: 2px solid #0a1033;
    border-bottom: 2px solid #0a1033;
}

.global-promo-band a {
    color: #0a1033;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.6);
    letter-spacing: 0.01em;
}

.home-hero {
    background:
        linear-gradient(118deg, rgba(10, 16, 51, 0.86) 0%, rgba(11, 86, 255, 0.58) 40%, rgba(255, 47, 87, 0.48) 70%, rgba(45, 255, 115, 0.4) 100%),
        url('../images/hero-main.jpg') center/cover no-repeat;
}

.promo-hero {
    background:
        linear-gradient(118deg, rgba(10, 16, 51, 0.82) 0%, rgba(11, 86, 255, 0.56) 40%, rgba(255, 47, 87, 0.45) 72%, rgba(45, 255, 115, 0.36) 100%),
        url('../images/services-hero.jpg') center/cover no-repeat;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 4px 0 14px;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    border: 2px solid #0a1033;
    padding: 6px 12px;
    font-size: 0.79rem;
    font-weight: 800;
    color: #0a1033;
    box-shadow: 3px 3px 0 rgba(10, 16, 51, 0.35);
}

.badge-blue {
    background: #7fb0ff;
}

.badge-yellow {
    background: var(--yellow);
}

.badge-red {
    background: #ff8ca4;
}

.badge-green {
    background: #84ffb0;
}

.btn {
    border: 2px solid #0a1033;
    border-radius: 12px;
    box-shadow: 4px 4px 0 rgba(10, 16, 51, 0.26);
}

.btn-primary {
    background: linear-gradient(120deg, #0b56ff 0%, #2d7dff 100%);
}

.btn-secondary {
    background: linear-gradient(120deg, rgba(255, 235, 0, 0.25), rgba(255, 47, 87, 0.26));
    border-color: #ffffff;
}

.stats-grid article,
.card,
.service-card,
.project-card,
.contact-card,
.promo-card,
.steps article,
.promo-step,
.brief-form,
.contact-infos {
    border: 2px solid #0a1033;
    border-radius: 18px;
}

.stats-grid article:nth-child(1) {
    background: linear-gradient(145deg, #ffffff 0%, #dbe7ff 100%);
}

.stats-grid article:nth-child(2) {
    background: linear-gradient(145deg, #ffffff 0%, #ffe0ea 100%);
}

.stats-grid article:nth-child(3) {
    background: linear-gradient(145deg, #ffffff 0%, #fff8c9 100%);
}

.stats-grid article:nth-child(4) {
    background: linear-gradient(145deg, #ffffff 0%, #d8ffea 100%);
}

.card:hover,
.service-card:hover,
.project-card:hover,
.promo-card:hover,
.contact-card:hover {
    transform: translateY(-4px);
    transition: transform 0.2s ease;
}

.section-title i,
.card h3 i,
.service-card h3 i,
.project-body h3 i,
.stats-grid h2 i {
    margin-inline-end: 8px;
    color: #0b56ff;
}

.cards .card h3::before,
.service-grid .service-card h3::before,
.project-grid .project-body h3::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-inline-end: 8px;
    color: #0b56ff;
}

.cards .card:nth-child(1) h3::before { content: "\f085"; }
.cards .card:nth-child(2) h3::before { content: "\f187"; }
.cards .card:nth-child(3) h3::before { content: "\f0ac"; }
.cards .card:nth-child(4) h3::before { content: "\f002"; }
.cards .card:nth-child(5) h3::before { content: "\f1e0"; }
.cards .card:nth-child(6) h3::before { content: "\f0c2"; }

.cards .card:nth-child(7) h3::before { content: "\f3ed"; }
.cards .card:nth-child(8) h3::before { content: "\f109"; }

.service-grid .service-card:nth-child(1) h3::before { content: "\f085"; }
.service-grid .service-card:nth-child(2) h3::before { content: "\f187"; }
.service-grid .service-card:nth-child(3) h3::before { content: "\f0ac"; }
.service-grid .service-card:nth-child(4) h3::before { content: "\f002"; }
.service-grid .service-card:nth-child(5) h3::before { content: "\f1e0"; }
.service-grid .service-card:nth-child(6) h3::before { content: "\f0c2"; }
.service-grid .service-card:nth-child(7) h3::before { content: "\f3ed"; }
.service-grid .service-card:nth-child(8) h3::before { content: "\f390"; }

.project-grid .project-card:nth-child(1) .project-body h3::before { content: "\f0e7"; }
.project-grid .project-card:nth-child(2) .project-body h3::before { content: "\f07a"; }
.project-grid .project-card:nth-child(3) .project-body h3::before { content: "\f201"; }
.project-grid .project-card:nth-child(4) .project-body h3::before { content: "\f187"; }
.project-grid .project-card:nth-child(5) .project-body h3::before { content: "\f0c2"; }
.project-grid .project-card:nth-child(6) .project-body h3::before { content: "\f0ad"; }

.promo-card {
    background: linear-gradient(150deg, #fff 0%, #ffe8f0 47%, #e0f7ff 100%);
}

.promo-card:nth-child(2n) {
    background: linear-gradient(150deg, #fff 0%, #fff4d6 45%, #ddffea 100%);
}

.promo-card.featured {
    background: linear-gradient(150deg, #fff4f8 0%, #ffe66c 45%, #90ffbf 100%);
}

.status-message.success {
    background: #dfffe9;
    border-color: #0a1033;
}

.status-message.error {
    background: #ffe3ea;
    border-color: #0a1033;
}

.form input:focus,
.form textarea:focus {
    border-color: #0b56ff;
    box-shadow: 0 0 0 3px rgba(11, 86, 255, 0.2);
}

.site-footer {
    background: linear-gradient(135deg, #08122e 0%, #0b56ff 45%, #ff2f57 100%);
    border-top: 3px solid #0a1033;
}

.social-links {
    margin-top: 14px;
    display: flex;
    gap: 8px;
}

.social-links a {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 2px solid #ffffff;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    background: var(--yellow);
    color: #0a1033;
    border-color: var(--yellow);
}

@media (max-width: 860px) {
    .header-right {
        width: 100%;
        justify-content: space-between;
    }

    .nav-wrap {
        flex-wrap: wrap;
        padding: 10px 0;
    }
}

/* IKYASYS flash/cartoon pass 2 */
@keyframes neonPulse {
    0%, 100% {
        filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
        transform: translateY(0);
    }
    50% {
        filter: drop-shadow(0 0 10px rgba(255, 235, 0, 0.72));
        transform: translateY(-2px);
    }
}

@keyframes promoBandShift {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 0 0 rgba(255, 235, 0, 0);
    }
    50% {
        text-shadow: 0 0 18px rgba(255, 235, 0, 0.42), 0 0 30px rgba(255, 47, 87, 0.25);
    }
}

@keyframes wobblePop {
    0%, 100% {
        transform: rotate(-2deg) translateY(0);
    }
    25% {
        transform: rotate(2deg) translateY(-2px);
    }
    50% {
        transform: rotate(-1deg) translateY(-5px);
    }
    75% {
        transform: rotate(2deg) translateY(-1px);
    }
}

@keyframes floatSticker {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-8px) rotate(2deg);
    }
}

@keyframes spinGlow {
    0% {
        transform: rotate(-2deg) scale(1);
        box-shadow: 4px 4px 0 rgba(19, 19, 19, 0.25);
    }
    50% {
        transform: rotate(4deg) scale(1.08);
        box-shadow: 8px 8px 0 rgba(19, 19, 19, 0.2), 0 0 20px rgba(255, 235, 0, 0.4);
    }
    100% {
        transform: rotate(-2deg) scale(1);
        box-shadow: 4px 4px 0 rgba(19, 19, 19, 0.25);
    }
}

@keyframes cardTilt {
    0%, 100% {
        transform: translateY(-10px) rotate(-1deg);
    }
    50% {
        transform: translateY(-14px) rotate(1deg);
    }
}

.global-promo-band {
    background-size: 220% 220%;
    animation: promoBandShift 7s linear infinite alternate;
}

.global-promo-band a {
    animation: neonPulse 2.2s ease-in-out infinite;
}

.hero h1,
.page-hero h1 {
    -webkit-text-stroke: 1px rgba(10, 16, 51, 0.35);
    text-shadow: 0 3px 0 rgba(10, 16, 51, 0.3);
    animation: titleGlow 3.4s ease-in-out infinite;
}

.hero-badges .badge-pill {
    animation: wobblePop 2.8s ease-in-out infinite;
}

.hero-badges .badge-pill:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-badges .badge-pill:nth-child(3) {
    animation-delay: 0.35s;
}

.hero-badges .badge-pill:nth-child(4) {
    animation-delay: 0.5s;
}

.hero-stickers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 6px 0 18px;
}

.sticker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 74px;
    padding: 6px 12px;
    border-radius: 14px;
    border: 2px solid #0a1033;
    color: #0a1033;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    box-shadow: 4px 4px 0 rgba(10, 16, 51, 0.28);
    animation: floatSticker 3s ease-in-out infinite;
}

.sticker-blue {
    background: #7fb0ff;
}

.sticker-yellow {
    background: #ffeb00;
}

.sticker-red {
    background: #ff8ca4;
}

.sticker-green {
    background: #84ffb0;
}

.sticker-pink {
    background: #ffc2e1;
}

.hero-stickers .sticker:nth-child(2) {
    animation-delay: 0.35s;
}

.hero-stickers .sticker:nth-child(3) {
    animation-delay: 0.65s;
}

.promo-stickers {
    margin-top: -4px;
    margin-bottom: 14px;
}

.promo-badge {
    animation: wobblePop 2.6s ease-in-out infinite;
}

.promo-card.featured {
    animation: cardTilt 2.6s ease-in-out infinite;
}

.promo-card:hover .promo-icon {
    animation: spinGlow 0.8s ease-in-out both;
}

.quick-social a {
    animation: neonPulse 2.4s ease-in-out infinite;
}

.quick-social a:nth-child(2) {
    animation-delay: 0.2s;
}

.quick-social a:nth-child(3) {
    animation-delay: 0.4s;
}

.section-title {
    text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.4);
}

@media (max-width: 640px) {
    .hero-stickers {
        gap: 8px;
    }

    .sticker {
        min-width: 66px;
        font-size: 0.7rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .global-promo-band,
    .global-promo-band a,
    .hero h1,
    .page-hero h1,
    .hero-badges .badge-pill,
    .hero-stickers .sticker,
    .promo-badge,
    .promo-card.featured,
    .quick-social a {
        animation: none !important;
    }
}
