@charset "UTF-8";
:root {
    --bg: #F2F4F8;
    --surface: #FFFFFF;
    --text-main: #111827;
    --text-muted: #6B7280;
    --accent: #2563EB;
	--accent-rgb: 37, 99, 235;
    --border: #E5E7EB;
    --code-bg: #1E1E1E;
    --font-main: 'Inter', sans-serif;
    --font-code: 'JetBrains Mono', monospace;
}

* { margin: 0; padding: 0; 
	box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    outline: none
}
html, body {
	-webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Фон в клетку (Engineering Grid) */
.bg-grid {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Navigation --- */
.navbar {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(242, 244, 248, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-main);
    letter-spacing: -0.05em;
}
.mono { color: var(--accent);}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
}
.btn-outlined {
    padding: 10px 20px;
    border: 1px solid var(--text-main);
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}
.btn-outlined:hover { background: var(--text-main); color: #fff; }

/* --- HERO --- */
.hero { padding: 100px 0; }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.label-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-code);
    font-size: 0.85rem;
    color: var(--accent);
    background: #DBEAFE;
    padding: 6px 12px;
    margin-bottom: 20px;
}
.dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}
.highlight { color: var(--accent); }

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    align-items: center;
}
.stat b { display: block; font-size: 1.5rem; }
.stat span { font-size: 0.9rem; color: var(--text-muted); font-family: var(--font-code); }
.divider { width: 1px; height: 40px; background: #CBD5E1; }

/* Code Window */
.code-window {
    background: var(--code-bg);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    position: relative;
    font-family: var(--font-code);
    font-size: 0.9rem;
    transition: transform 0.3s;
}
.code-window:hover { transform: translateY(-5px); }

.window-header { display: flex; gap: 8px; margin-bottom: 20px; align-items: center; }
.win-dot { width: 12px; height: 12px; border-radius: 50%; }
.red { background: #EF4444; } .yellow { background: #F59E0B; } .green { background: #10B981; }
.win-title { margin-left: auto; color: #555; font-size: 0.8rem; }

.window-body { color: #D4D4D4; line-height: 1.6; }
.c-purple { color: #C586C0; }
.c-yellow { color: #DCDCAA; }
.c-green { color: #CE9178; }
.c-blue { color: #4FC1FF; }
.c-tag { color: #569CD6; }
.c-attr { color: #9CDCFE; }
.c-orange { color: #CE9178; }

.indent-1 { padding-left: 20px; }
.indent-2 { padding-left: 40px; }
.indent-3 { padding-left: 60px; }

.cursor { animation: blink 1s infinite; display: inline-block; color: var(--accent); font-weight: bold; }
@keyframes blink { 50% { opacity: 0; } }

.floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 15px 25px;
    display: flex;
    gap: 15px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--border);
}
.icon-check {
    background: #10B981;
    color: white;
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
}

/* --- Marquee --- */
.marquee-wrapper {
    background: var(--text-main);
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
    margin: 60px 0;
    transform: rotate(-1deg);
    width: 99.9%;
    position: relative;
}
.marquee-content {
    display: inline-block;
    animation: scroll 20s linear infinite;
}
.marquee-content span {
    color: rgba(255,255,255,0.7);
    font-family: var(--font-code);
    font-size: 1.2rem;
    margin: 0 30px;
    font-weight: 700;
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Solutions Grid --- */
.section-head { margin-bottom: 50px; }
.section-head h2 { font-size: 2.5rem; margin-bottom: 10px; }

.grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    grid-auto-rows: minmax(250px, auto);
}

.grid-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s;
}
.grid-card:hover { border-color: var(--accent); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

.large-card { grid-column: span 2; grid-row: span 2; }
.wide-card { grid-column: span 3; display: flex; flex-direction: row; align-items: center; }

.grid-card h3 { margin: 15px 0 10px; font-size: 1.4rem; }
.grid-card p { color: var(--text-muted); font-size: 0.95rem; }
.tech-list { margin-top: 20px; list-style: none; display: flex; gap: 10px; }
.tech-list li { background: #F3F4F6; padding: 5px 10px; font-size: 0.8rem; font-family: var(--font-code); }

/* --- Обновленные стили для Tech Grid --- */

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.mono-label {
    font-family: var(--font-code);
    color: var(--accent);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(37, 99, 235, 0.1);
    padding: 5px 10px;
    border-radius: 4px;
	display:inline-block;
	margin-bottom:15px;
}
.agree_block {margin-top: 20px;}
.agree_block, .agree_block a, .agree_block a:hover, .agree_block a:visited {color:var(--text-muted);}
.agree_block a:hover {text-decoration: none;}

/* Общий стиль карточки */
.tech-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Контент снизу */
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.wide {
    grid-column: span 2; /* Широкие карточки */
    min-height: 350px;
    flex-direction: row;
    align-items: center;
}

/* Фон и визуализация */
.card-bg-visual {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    background: radial-gradient(circle at top right, #F8FAFC, transparent 70%);
    pointer-events: none;
}
.card-bg-visual img {width: 100%;
    object-fit: cover;
	object-position: top;
    transition: transform 0.4s ease;
}
.f-links {text-align:right;}
.f-links a,.f-links a:hover, .f-links a:visited, a.flink,.a.flink,a.flink:hover,a.flink:visited {color:#fff;text-decoration:none;border-bottom:1px solid #ffffff8c;line-height:normal;margin-bottom:5px;}
.f-links a:hover,a.flink:hover {border-bottom:1px solid #ffffff}

/* Контент */
.card-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.wide .card-content {
    width: 60%;
    margin-left: auto;
    padding-left: 40px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .wide .card-content {
        width: 100%;
        padding-left: 0;
    }
}

.card-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    width: fit-content;
}

.tech-number {
    font-family: var(--font-code);
    font-weight: 700;
    color: #E5E7EB;
    font-size: 2rem;
    line-height: 1;
}

.tech-card:hover .tech-number {
    color: var(--accent); /* Цифра загорается при наведении */
    transition: 0.3s;
}

.tech-cards:hover .card-bg-visual img {transform: scale(1.08);}

.card-bg-visual img {
    transform: 
        translateY(var(--parallax-y, 0px)) 
        rotateX(2deg) 
        rotateY(-2deg) ;
    transition: box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.tech-card:hover .card-bg-visual img {
    transform: 
        translateY(var(--parallax-y, 0px))
        rotateX(0deg) 
        rotateY(0deg);
}

.tech-cat {
    font-family: var(--font-code);
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tech-card h3 {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.tech-desc {
    font-size: 1rem;
    color: #64748B;
    margin-bottom: 25px;
    max-width: 90%;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tags span {
    font-family: var(--font-code);
    font-size: 0.75rem;
    background: #F3F4F6;
    padding: 6px 12px;
    border-radius: 4px;
    color: #4B5563;
    border: 1px solid transparent;
}

.tech-card:hover .tech-tags span {
    border-color: #CBD5E1;
    background: #fff;
}

/* --- CSS-Рисунки (Абстракция) --- */

/* График для ERP */
.abstract-ui-chart {
    position: absolute;
    top: 40px; right: 40px;
    width: 150px; height: 100px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    opacity: 0.5;
}
.bar { width: 100%; background: #E2E8F0; border-radius: 4px 4px 0 0; transition: 0.5s; }
.bar.active { background: var(--accent); }
.tech-card:hover .bar { height: 80% !important; } /* Анимация графика */

/* Телефон для Mobile */
.abstract-ui-phone {
    position: absolute;
    top: 40px; right: 40px;
    width: 120px; height: 200px;
    border: 4px solid var(--accent);
    border-radius: 16px;
    padding: 10px;
    opacity: 0.6;
    transform: rotate(-10deg);
    transition: 0.4s;
}
.tech-card:hover .abstract-ui-phone { transform: rotate(0deg) scale(1.05); border-color: var(--accent); }
.screen-notch { width: 40%; height: 6px; background: #E2E8F0; margin: 0 auto 15px; border-radius: 0 0 4px 4px; }
.app-row { height: 8px; background: #F1F5F9; margin-bottom: 8px; border-radius: 2px; }
.app-row.short { width: 60%; }
.app-btn { width: 40px; height: 40px; background: #E2E8F0; border-radius: 8px; margin-top: 20px; }

.wide .card-bg-visual {
    width: 40%;
    background: #FAFAFA;
	overflow: hidden;
}
.server-dots {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.server-dots span {
    width: 6px; height: 6px;
    background: #CBD5E1;
    border-radius: 50%;
    transition: 0.3s;
}
.tech-card:hover .server-dots span:nth-child(odd) { background: var(--accent); }

/* --- BENTO GRID TEAM SECTION --- */
.team-section {
    padding: 40px 0 80px 0;
}

.bento-grid-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr; /* Левая часть шире */
    grid-template-rows: auto auto;
    gap: 20px;
}

/* Общий стиль карточки */
.bento-card {
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.06);
    padding: 40px;
    border-radius: 6px; /* Более строгие углы */
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

/* Декоративный уголок (как в чертежах) */
.card-corner-accent {
    position: absolute;
    top: -1px; left: -1px;
    width: 20px; height: 20px;
    border-top: 2px solid var(--accent);
    border-left: 2px solid var(--accent);
    opacity: 0;
    transition: 0.3s;
}
.bento-card:hover .card-corner-accent { opacity: 1; }

/* 1. MANIFESTO (Левая большая карточка) */
.main-manifesto {
    grid-row: span 2; /* Занимает всю высоту */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.manifesto-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 10px 0 30px 0;
    letter-spacing: -0.04em;
    color: var(--text-main);
}

.manifesto-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #374151;
    max-width: 90%;
}
.manifesto-text .fade-text {
    color: var(--text-muted);
    font-size: 1rem;
}

.tech-highlight {
    font-family: var(--font-code);
    color: var(--accent);
    font-weight: 600;
}

.manifesto-sign {
    margin-top: auto;
    padding-top: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.sign-line { height: 1px; width: 40px; background: var(--accent); }
.sign-label { 
    font-family: var(--font-code); 
    font-size: 0.75rem; 
    text-transform: uppercase; 
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

/* 2. TECH STACK (Правая верхняя) */
.tech-stack-visual {
    min-height: 220px;
    display: flex;
    flex-direction: column;
}

.card-header-sm {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-code);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 25px;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 10px;
}

.status-dot {
    width: 8px; height: 8px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.stack-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.stack-row {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-family: var(--font-code);
}
.s-name { color: var(--text-muted); }
.s-line { flex-grow: 1; border-bottom: 1px dashed #e5e7eb; margin: 0 10px; position: relative; top:3px; }
.s-val { color: var(--text-main); font-weight: 600; }

.server-visual {
    margin-top: 15px;
    display: flex;
    gap: 6px;
}
.server-light { width: 20px; height: 4px; background: #E5E7EB; border-radius: 2px; }
.server-light.blink { background: var(--accent); animation: pulse 2s infinite; }

@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.4; } 100% { opacity: 1; } }

/* 3. INNOVATION (Правая нижняя) */
.innovation-visual {
    min-height: 220px;
}
.version-tag {
    background: #F3F4F6;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}

.git-flow {
    display: flex;
    flex-direction: column;
    margin: 20px 0;
}
.git-commit {
    display: flex;
    align-items: center;
    gap: 15px;
}
.commit-dot {
    width: 10px; height: 10px;
    border: 2px solid #D1D5DB;
    border-radius: 50%;
    background: #fff;
}
.commit-dot.active {
    border-color: var(--accent);
    background: var(--accent);
}
.git-line {
    width: 2px; height: 15px;
    background: #E5E7EB;
    margin-left: 4px; /* Центрируем по точке */
}
.commit-msg {
    font-size: 0.9rem;
    font-weight: 500;
}
.inn-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Адаптив */
@media (max-width: 900px) {
    .bento-grid-wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .main-manifesto { grid-row: auto; min-height: auto; padding:20px;}
	.tech-stack-visual, .innovation-visual {padding:20px;}
    .manifesto-title { font-size: 1.6rem; margin: 10px 0 15px 0;}
	.manifesto-sign {padding-top:20px;}
}

/* Щит для FinTech */
.security-shield {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 90px;
    background: #F1F5F9;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}
.lock-icon {
    width: 30px; height: 30px;
    border: 3px solid #94A3B8;
    border-radius: 4px;
    position: relative;
}
.lock-icon::before {
    content: ''; position: absolute;
    top: -12px; left: 50%; transform: translateX(-50%);
    width: 16px; height: 12px;
    border: 3px solid #94A3B8;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
}
.tech-card:hover .security-shield { background: var(--accent); }
.tech-card:hover .lock-icon, .tech-card:hover .lock-icon::before { border-color: white; }

.icon-wrap { font-size: 2rem; background: #F9FAFB; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 8px; }

.contact-section { margin-top: 100px; background: #fff; border-top: 1px solid var(--border); }

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.contact-info { padding: 80px 60px 80px 0; }
.contact-info h2 { font-size: 2.5rem; margin-bottom: 20px; }

.info-items { margin: 40px 0; display: grid; gap: 20px; }
.label { display: block; font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 5px; }
.label_small {font-size: 0.6rem;}
.value { font-size: 1.1rem; color: var(--text-main); font-weight: 600; text-decoration: none; }

.simple-form { display: flex; flex-direction: column; gap: 15px; margin-top: 30px; }
.input-group { display: flex; gap: 15px; }
input, textarea {
    width: 100%;
    padding: 15px;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    font-family: var(--font-main);
    outline: none;
    transition: 0.2s;
}
input:focus, textarea:focus { border-color: var(--text-main); background: #fff; }
.btn-black {
    background: var(--text-main);
    color: #fff;
    padding: 15px;
    border: none;
    font-weight: 600;
    cursor: pointer;
}
.btn-black:hover { background: #000; }

/* Map Styling */
.map-container { position: relative; width: 100%; height: 100%; background: #eee; }
.grayscale-map { filter: grayscale(100%) contrast(1.2); opacity: 0.8; }
.map-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.pin {
    background: var(--text-main);
    color: #fff;
    padding: 10px 20px;
    font-weight: bold;
    position: relative;
}
.pin::after {
    content: '';
    position: absolute;
    bottom: -10px; left: 50%; transform: translateX(-50%);
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: var(--text-main) transparent transparent transparent;
}

.footer-strip { background: #000; color: #fff; padding: 20px 0; font-size: 0.8rem; }
.footer-flex { display: flex; justify-content: space-between; opacity: 0.7; }
.f-links a { color: #fff; margin-left: 20px; text-decoration: none; }

@media (max-width: 900px) {
    .hero-grid, .grid-layout, .contact-wrapper { grid-template-columns: 1fr; }
    .code-window { display: none; }
    .contact-info { padding: 40px 0; }
    .map-container { height: 300px; }
    .grid-card { grid-column: span 1 !important; }
	.hero {padding: 20px 0;}
	.marquee-wrapper {margin: 0 0 40px 0;}
	.section-head h2, .contact-info h2 {font-size: 1.8rem;line-height: 2.1rem;}
	.tech-grid {margin-top:20px;}
	.section-head {margin-bottom:20px;}
	.tech-card {padding:20px;}
	.contact-section {margin-top:40px;}
	#map {margin-bottom:20px;}
}

.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 101;
}
.burger span {
    width: 25px;
    height: 2px;
    background-color: var(--text-main);
    transition: 0.3s;
}
.nav-menu {
	display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 1100px) {
    .nav-container {
        padding: 0 20px;
    }

    .burger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column; /* Вертикальный список */
        align-items: center;
        justify-content: center;
        gap: 30px;
        transform: translateY(-150%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 100;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-links {
        flex-direction: column;
        gap: 30px;
        font-size: 1.5rem;
        text-align: center;
    }

    .burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .burger.active span:nth-child(2) { opacity: 0; }
    .burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
	
    .hero h1 { font-size: 2.6rem; }
    .btn-outlined.mobile-btn { width: 80%; text-align: center; background: var(--text-main); color: #fff; padding: 15px; }
}
.ymaps-layers-pane {
	filter: grayscale(1);
	-ms-filter: grayscale(1);
	-webkit-filter: grayscale(1);
	-moz-filter: grayscale(1);
	-o-filter: grayscale(1);
}
.textblock h1 {line-height:normal; margin-bottom: 1.2rem;margin-top:1.2rem}
.textblock h2 {line-height:normal; margin-bottom: 1.0rem;margin-top:1.4rem}
.textblock p, .textblock ul, .textblock ol {margin-bottom: 0.8rem;}
.textblock ul li, .textblock ol li {margin-left: 40px;margin-bottom: 0.4rem;}
.textblock a,.textblock a:hover, .textblock a:visited {color:#000;text-decoration:none;border-bottom:1px solid #0000003d;}
.textblock a:hover {border-bottom:1px solid #000000;}

@media (max-width: 768px) {
    .tech-grid { grid-template-columns: 1fr; }
    .wide { grid-column: span 1; flex-direction: column; align-items: flex-start; }
    .wide .card-bg-visual { width: calc(100% + 40px); height: 250px; position: relative; border-right: none; border-bottom: 1px dashed #eee; margin: -20px -20px 20px; }
    .wide .card-content { width: 100%; margin: 0; }
    .abstract-ui-phone, .abstract-ui-chart { transform: scale(0.8); right: 10px; top: 10px; }
	.footer-flex {display: grid!important;gap:10px;}
	.f-links a, .f-links a:visited, .f-links a:hover {margin: 0;}
	.team-section {padding: 0 0 20px 0;}
	.tech-card h3 {font-size:1.6rem;}
	.tech-desc {width:100%;min-width: 100%;}
}

@media (max-width:800px) {
	.textblock h1 {font-size: 1.4rem;}
	.textblock h2 {font-size: 1.2rem;}
}
