* { box-sizing: border-box; }
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: italic;
  font-weight: 200 800;
  font-display: swap;
  src: url(../fonts/Plus-Jakarta-Sans-italic.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(../fonts/Plus-Jakarta-Sans.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
html, body { margin: 0; padding: 0; }

:root{
    --rc-bg-0:#070b18;
    --rc-bg-1:#0a1024;
    --rc-bg-tech:#0A0E1F;
    --rc-bg-chip:#ACA9CA;
    --rc-surface: #151834;
	--rc-work:#242954;
    --rc-surface-2: rgba(18, 26, 52, 0.55);
    --rc-border: rgba(255,255,255,0.10);
    --rc-text: rgba(255,255,255,1);
    --rc-text-muted: rgba(255,255,255,0.68);
    --rc-accent: #20d6d6;
    --rc-accent-2: #6a5cff;
    --rc-shadow: 0 18px 60px rgba(0,0,0,0.55);
	--rc-border:#242954;
	--rc-placeholder:#A9A4D5;
}

body{
    font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--rc-text);
    background: var(--rc-bg-0);
    line-height: 1.5;
	overflow-x: hidden;
}

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

.rc-main{
    min-height: 60vh;
	padding-bottom:30px;
}

.rc-page{
    padding: 0;
}

.rc-fullbleed{
    width: 100vw;
    margin-inline: calc(50% - 50vw);
}
/*
.rc-bg{
    background:
        radial-gradient(920px 520px at 72% 2%, rgba(106, 92, 255, 0.38) 0%, rgba(106, 92, 255, 0) 62%),
        radial-gradient(820px 540px at 18% 16%, rgba(32, 214, 214, 0.22) 0%, rgba(32, 214, 214, 0) 58%),
        linear-gradient(180deg, var(--rc-bg-0) 0%, var(--rc-bg-1) 55%, rgba(0, 78, 80, 0.98) 100%);
}
*/
.rc-bg{
    background: none;
}
.rc-section--tech{padding:60px 0 70px;background:var(--rc-bg-tech);}
.rc-header{
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(7, 11, 24, 0.78);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}
.rc-header__inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 18px;
}
.rc-brand{
    display: inline-flex;
    align-items: baseline;
    gap: 0;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--rc-text);
    font-size: 31px;
    line-height: 1;
}

.rc-brand__code,
.rc-brand__brace{
    color: var(--rc-accent-2);
}

.rc-brand__code{
    position: relative;
    display: inline-block;
}

.rc-brand__code::after{
    content: "";
    display: inline-block;
    width: 2px;
    height: 0.82em;
    margin-left: 0.06em;
    background-color: var(--rc-accent, #2dd4bf);
    vertical-align: -0.06em;
    animation: rc-caret-blink 1.05s steps(1, end) infinite;
}

@keyframes rc-caret-blink{
    0%, 48% { opacity: 1; }
    49%, 100% { opacity: 0; }
}

.post-content section {
	padding: 25px 0 0 0;
}

.rc-nav-toggle{
    display: none;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.06);
    width: 44px;
    height: 40px;
    border-radius: 10px;
    padding: 0;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.rc-nav-toggle__bar{
    display: block;
    width: 18px;
    height: 2px;
    background: rgba(255,255,255,0.88);
    border-radius: 2px;
}
.rc-nav-toggle__bar + .rc-nav-toggle__bar{
    margin-top: 6px;
}

.rc-nav__list{
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}
.rc-nav__link{
    color: var(--rc-text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
}
.rc-nav__link:hover{
    color: rgba(255,255,255,0.96);
}
.rc-nav__cta{
    margin-left: 8px;
}

.rc-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 11px;
    padding: 15px 33px;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    user-select: none;
	font-size:19px;
}
.rc-btn--small{
    padding: 9px 22px;
    border-radius: 11px;
    font-size: 16px;
}
.rc-btn--primary{
    background: linear-gradient(90deg,rgba(2, 152, 171, 1) 0%, rgba(83, 70, 255, 1) 100%);
    color: #fff;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.rc-btn--primary:hover{
    filter: brightness(1.05);
}
.rc-btn--ghost{
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.92);
}
.rc-btn--ghost:hover{
    background: rgba(255,255,255,0.09);
}

.rc-hero{
    padding: 145px 0;
}
.rc-hero__grid{
    max-width: 1260px;
    margin: 0 auto;
    padding: 0;
}
.rc-h1{
    font-size: 64px;
    line-height: 1.02;
	font-weight:600;
    letter-spacing: -0.04em;
    margin: 0 0 30px;
}
.rc-lead{
    margin: 0 0 10px;
    color: #fff;
    max-width: 46ch;
    font-size: 24px;
	font-weight:500;
}
.rc-desc{font-size:16px;color:#ACA9CA;margin:0 0 30px;}
.rc-hero__copy{width:67%;}
.rc-hero__actions{
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.rc-hero__art{
    position: relative;
    height: 420px;
}
.rc-hero__ring{
    position: absolute;
    inset: 0;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.10);
    background:
        radial-gradient(circle at 55% 40%, rgba(106, 92, 255, 0.25), transparent 55%),
        radial-gradient(circle at 40% 60%, rgba(32, 214, 214, 0.18), transparent 55%);
}
.rc-hero__illustration{
    position: absolute;
    inset: 40px 40px 40px 40px;
    border-radius: 18px;
    background-image: url("../img/hero.png");
    background-size: cover;
    background-position: 65% 55%;
    background-repeat: no-repeat;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: var(--rc-shadow);
}

.rc-section{
    max-width: 1260px;
    margin: 0 auto;
    padding: 0;
}
.rc-section--tight{
    padding-top: 44px;
    padding-bottom: 44px;
}
.rc-section__head{
    margin-bottom: 36px;
}
.rc-section__head--center{
    text-align: center;
}
.rc-h2{
    margin: 0;
    font-size: 42px;
	font-weight:700;
}
.rc-h2 span{color:#6A5FFC;}
.rc-h3{
    margin: 0 0 15px;
    font-size: 24px;
}
.rc-h3--large{
    font-size: 42px;
	font-weight:700;
	max-width: 380px;
    line-height: 1.3;
}
.rc-p{
    margin: 0;
    color: var(--rc-bg-chip);
    font-size: 16px;
}


.rc-cards{
    display: grid;
    gap: 16px;
}
.rc-cards--6{
    grid-template-columns: repeat(3, minmax(0, 1fr));
	gap:37px;
}
.rc-cards--4{
    grid-template-columns: repeat(2, minmax(0, 1fr));
	gap:50px;
}
.rc-cards--plugins{
    grid-template-columns: repeat(2, minmax(0, 1fr));
	gap:54px;
}

.rc-card{
    border-radius: 23px;
    padding: 40px 35px 60px;
    background: var(--rc-surface);
    box-shadow: 0 0 16px 2px rgba(0,0,0,0.2);
}
.rc-card--work{
    display: grid;
    grid-template-columns: 184px 1fr;
    column-gap: 19px;
    align-items: center;
	border-radius: 23px;
	background: var(--rc-surface);
	padding: 38px 50px 38px 34px;
	box-shadow: 0 4px 4px 0 rgba(0,0,0,0.25);
}
.rc-card--work .rc-work__icon{
    grid-row: 1 / -1;
}
.rc-card--work .rc-h3{
    margin-top: 0;
    margin-bottom: 15px;
}
.rc-card__icon{
    margin-bottom:18px;
	text-align:center;
}

.rc-list{
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
    color: #ACA9CA;
    font-size: 16px;
}
.rc-list li{
    position: relative;
    padding-left: 46px;
}
.rc-list li:before{
    position:absolute;
	width:23px;
	height:23px;
	left:0;
	top:0;
	background:url(../img/checked.svg) no-repeat;
	background-size:cover;
	content:'';
}

.rc-expertise{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 120px;
    row-gap: 90px;
}
.rc-expertise__title{
    font-size: 24px;
    color: #fff;
	font-weight:700;
    margin-bottom: 15px;
}
.rc-section--tech .rc-section__head{margin-bottom:50px;}
.rc-chips{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.rc-chip{
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    border-radius: 8px;
    background: #242954;
    font-size: 16px;
    color: var(--rc-bg-chip);
}
.rc-section--work{padding:60px 0 70px;background:var(--rc-work);}
.rc-columns{
    display: grid;
	margin-top:74px;
	border-bottom:1px solid var(--rc-border);
}
.rc-columns > .rc-col{padding:0 4em 6em;border-right:1px solid var(--rc-border);}
.rc-columns > .rc-col:nth-child(1){padding:0 4em 6em 0;}
.rc-columns > .rc-col:last-child{padding:0 0 6em 4em;border-right:none;}
.rc-imgs{display:flex;flex-wrap;column-gap:18px;align-items:center;margin-top:30px;}
.rc-columns--3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rc-col__title{
    font-weight: 700;
    margin-bottom: 20px;
	font-size:24px;
}
.rc-legacy__copy{
    display: flex;
	justify-content: space-between;
    align-items: center;
	margin:120px 0 65px;
}
.rc-legacy .rc-p{max-width:400px;font-size:20px;}

.rc-plugin{
	padding:50px 60px;
	border-radius:23px;
	border:1px solid #1B5866;
	background: linear-gradient(0deg,rgba(10, 14, 31, 1) 0%, rgba(8, 46, 62, 1) 50%, rgba(5, 77, 93, 1) 100%);
	display:grid;
	grid-template-columns:140px 1fr;
}
.rc-plugin.coming_soon{background:var(--rc-bg-tech);color:var(--rc-bg-chip);}
.rc-plugin__span{background:var(--rc-work);color:var(--rc-bg-chip);border-radius:8px;line-height:39px;padding:0 16px;font-size:16px;display:inline-block;}
.rc-plugin__title{
    font-weight: 700;
    font-size:32px;
	margin-bottom:10px;
	line-height:1.3;
}
.rc-plugin__social{margin-bottom:20px;color:var(--rc-bg-chip);}
.version{padding-left:27px;background:url(../img/star.svg) no-repeat 0 50%;margin-right:28px;}
.date{padding-left:27px;background:url(../img/date.svg) no-repeat 0 50%;margin-right:19px;}
.free{padding-left:27px;background:url(../img/free.svg) no-repeat 0 50%;color:#fff;}
.rc-plugin__desc{margin-bottom:20px;}
.rc-plugin__link{
    
}
.rc-plugin__link:hover{
    text-decoration: underline;
}
.rc-section__cta{
    display: flex;
    justify-content: center;
    margin-top: 49px;
}
.rc-section__cta .rc-btn{padding:15px 33px;}
.rc-section--about{
    padding: 64px 0 36px;
	/*background: linear-gradient(180deg,rgba(36, 41, 84, 1) 0%, rgba(10, 14, 31, 1) 100%);*/
	background: none;
}
.rc-about-wrapper{
	display:grid;
	grid-template-columns:270px 1fr;
	gap:60px;
}
.rc-p--muted{color:#fff;font-size:16px;}
.rc-form{
    max-width: 780px;
    margin: 18px auto 0;
    border-radius: 18px;
    padding: 22px;
    border: 1px solid rgba(255,255,255,0.10);
    background:
        radial-gradient(820px 320px at 50% -10%, rgba(106, 92, 255, 0.42) 0%, rgba(106, 92, 255, 0) 65%),
        rgba(255,255,255,0.04);
}
.rc-form__grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.rc-field{
    display: grid;
    gap: 8px;
}
.rc-field--full{
    grid-column: 1 / -1;
}
.rc-field__label{
    font-size: 12px;
    color: rgba(255,255,255,0.72);
}
.rc-input{
    width: 100%;
    border-radius: 12px;
    padding: 12px 12px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.94);
    color: rgba(0,0,0,0.90);
    font: inherit;
    outline: none;
}
.rc-input:focus{
    border-color: rgba(32, 214, 214, 0.55);
    box-shadow: 0 0 0 4px rgba(32, 214, 214, 0.12);
}
.rc-textarea{
    resize: vertical;
}
.rc-form__actions{
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.rc-footer{
    background: var(--rc-bg-tech);
}
.rc-footer__inner{
    padding: 50px 0;
}
.rc-brand--footer{
    font-size: 18px;
}
.rc-footer__tagline{
    margin: 30px 0 0;
    color: var(--rc-bg-chip);
    max-width: 46ch;
    font-size: 16px;
}
.rc-footer__cols{
    display: grid;
    grid-template-columns: 35% 18% 18% 18%;
    gap: 5%;
	margin-bottom:58px;
}
.rc-footer__copyright{
	font-size:14px;
	text-align:center;
	color:var(--rc-bg-chip);	
}
.rc-footer__title{
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
}
.rc-footer__link{
    display: block;
    color: var(--rc-bg-chip);
    text-decoration: none;
    margin: 6px 0;
    font-size: 16px;
}
.rc-footer__link:hover{
    color: rgba(255,255,255,0.92);
}
.rc-footer__bottom{
    padding-top: 37px;
    border-top: 1px solid var(--rc-work);
}
.rc-footer__meta{
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.56);
    font-size: 12px;
}
.rc-footer__meta-link{
    color: rgba(255,255,255,0.70);
    text-decoration: none;
}
.rc-footer__meta-link:hover{
    text-decoration: underline;
}
.rc-footer__meta-sep{
    color: rgba(255,255,255,0.38);
}

.posts-list{
    display: grid;
    gap: 16px;
}
.post-card{
    border-radius: 16px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.04);
}
.post-card h2{
    margin: 0 0 8px;
    font-size: 18px;
}
.post-card h2 a{
    color: rgba(255,255,255,0.94);
    text-decoration: none;
}
.post-card h2 a:hover{
    text-decoration: underline;
}
.post-meta{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.62);
    font-size: 12px;
    margin-bottom: 10px;
}
.access-badge{
    border-radius: 999px;
    padding: 4px 10px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
}
.post-tags{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}
.tag{
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.74);
    text-decoration: none;
    font-size: 12px;
}
.tag:hover{
    color: rgba(255,255,255,0.92);
}
.what_we_do{background: linear-gradient(180deg,rgba(15, 22, 50, 1) 0%, rgba(31, 24, 125, 1) 32%, rgba(2, 117, 132, 1) 73%, rgba(10, 14, 31, 1) 100%);position:relative;padding-bottom:56px;}
.what_we_do:before{position:absolute;background-image:url(../img/background.png);background-position:50% 35px;background-repeat:no-repeat;content:'';left:0;top:0;width:100%;height:100%;}
.what_we_do > div{position:relative;}
.rc-section-clients{background: linear-gradient(180deg,rgba(10, 14, 31, 1) 0%, rgba(10, 14, 31, 1) 50%, rgba(31, 26, 125, 1) 100%);padding:79px 0 0;position:relative;}
.rc-section-clients:after{content:'';position:absolute;left:0;bottom:0;height:14px;width:100%;background:#070b18;}
.rc-section-clients > .rc-section{padding-bottom:14px;background:url(../img/legacy_bg.png) no-repeat 50% 100%;position:relative;z-index:1;}
.rc-section-products{padding:63px 0 76px;background:var(--rc-bg-tech);}
.rc-plugin__link.rc-btn{padding-right:51px;position:relative;}
.rc-plugin__link.rc-btn:after{background:url(../img/arrow_right.svg) no-repeat;content:'';position:absolute;width:19px;height:16px;display:inline-block;top:23px;right:19px;}
.contactForm{border-radius:23px;padding:76px 0 28px;background: linear-gradient(180deg,rgba(83, 70, 255, 1) 0%, rgba(11, 15, 32, 1) 100%);}
.contact-form{max-width:598px;margin:0 auto;text-align:center;}
.contactForm .alert{max-width:598px;margin:0 auto 20px;}
.form-group label{display:block;text-align:left;}
.form-group input{background:#fff;line-height:50px;padding:0 16px;border-radius:8px;border:none;width:100%;outline:none;color:#000;font-size:16px;}
.form-group textarea{height:127px;padding:16px;background:#fff;border-radius:8px;width:100%;outline:none;color:#000;font-size:16px;font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;}
.form-group{margin-bottom:28px;}
.contactForm .btn{
	display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 11px;
    padding: 15px 33px;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    user-select: none;
    font-size: 19px;
	background: linear-gradient(90deg, rgba(2, 152, 171, 1) 0%, rgba(83, 70, 255, 1) 100%);
    color: #fff;
	border:none;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
::placeholder {
  color: var(--rc-placeholder);
  font-size: 16px;
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
.rc-footer_email{padding-left:30px;background:url(../img/email.svg) 0 50% no-repeat;font-size:16px;margin-top:30px;}
.rc-footer_email a{color:#6A5FFC;text-decoration:none;}
.rc-footer_email a:hover{text-decoration:underline;}
.rc-footer_email span{margin-right:10px;}
.alert-success{background: rgba(34,197,94,.15);border: 1px solid #22C55E;color: #D1FAE5;padding:10px 20px;margin-bottom:20px;border-radius:6px;}
.post-content a, .post-content a:visited, .post-content a:hover{color:#6A5FFC;}

section.cta-box {
  align-items: center;
  border-radius: 23px;
  padding: 20px 30px 30px 30px;
  margin:50px 0;
  background: linear-gradient(180deg,rgba(83, 70, 255, 1) 0%, rgba(11, 15, 32, 1) 100%);
}
.rc-btn{color:#fff !important;}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 11px;
  padding: 15px 33px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  font-size: 19px;
  background: linear-gradient(90deg, rgba(2, 152, 171, 1) 0%, rgba(83, 70, 255, 1) 100%);
  color: #fff !important;
  border: none;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.cta-box a:not(.btn), .cta-box a:not(.btn):visited, .cta-box a:not(.btn):hover {
  color: #fff;
}



@media (max-width: 1300px){
	.container, .rc-hero__grid, .rc-section{padding-right: 20px;padding-left:20px;}
}
@media (max-width: 980px){
    .rc-hero__grid{
        grid-template-columns: 1fr;
    }
    .rc-hero__art{
        height: 320px;
    }
    .rc-cards--6{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .rc-columns--3{
        grid-template-columns: 1fr;
    }
    .rc-expertise{
        grid-template-columns: 1fr;
    }
    .rc-legacy{
        grid-template-columns: 1fr;
    }
	.rc-cards--6, .rc-cards--4{gap: 20px;}
	.rc-h1{font-size:42px;}
	.rc-h2{font-size:32px;}
	.rc-cards--plugins{gap:20px;}
	.rc-plugin{padding:20px;}
	.rc-plugin__title{font-size:24px;}
	.rc-card--work{grid-template-columns: 1fr;}
	.rc-columns > .rc-col, .rc-columns > .rc-col:nth-child(1), .rc-columns > .rc-col:nth-child(2), .rc-columns > .rc-col:last-child{padding:0 0 30px;}
	.rc-col__title{margin-bottom:10px;}
	.rc-columns{margin-top:0;}
	.what_we_do{padding-bottom:30px;}
	.rc-section--tech{padding:30px 0;}
	.rc-expertise{row-gap:50px;}
	.rc-nav-toggle{
        display: inline-flex;
		flex-direction:column;
    }
	.rc-plugin__title{font-size:24px;}
    .rc-plugin{grid-template-columns: 1fr;}
    .rc-nav{
        position: fixed;
		width:100%;
        top: 70px;
        left: 0;
        background: rgba(7, 11, 24, 0.96);
        border-bottom: 1px solid rgba(255,255,255,0.10);
        padding: 0;
        opacity: 0;
        pointer-events: none;
        transition: opacity 160ms ease, transform 160ms ease;
    }
	.rc-nav__cta{
		padding: 10px 20px;
		border-top:1px solid rgba(255,255,255,0.10);
		margin:0;
	}
    .rc-nav[data-open="true"]{
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    .rc-nav__list{
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
	.
    .rc-nav__cta,
    .rc-nav__admin{
        margin-left: 0;
    }
    .rc-nav__link{
        padding: 10px 20px;
        border-radius: 0;
        background: none;
        border-top: 1px solid rgba(255,255,255,0.1);
		display:block;
    }
    .rc-card--work{
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }
    .rc-card--work .rc-work__icon{
        grid-row: auto;
    }
    .rc-form__grid{
        grid-template-columns: 1fr;
    }
    .rc-footer__cols{
        display:block;
		margin-bottom:20px;
    }
	.rc-footer__bottom{padding-top:20px;}
	.rc-footer__inner{padding-top:20px;padding-bottom:20px;}
	.rc-footer__title{margin-top:20px;}
	.rc-hero{padding:100px 0;}
}
@media(max-width:760px){
	.rc-section-clients > .rc-section{background:none;}
	.rc-legacy__copy{margin:50px 0;display:block;}
	.rc-h3--large, .rc-legacy .rc-p{max-width:100%;}
	.rc-h3--large{font-size:32px;}
	.rc-about-wrapper{gap:20px;}
	.rc-imgs{flex-wrap:wrap;}
	.rc-brand{font-size:24px;}
}
@media(max-width:600px){
	.rc-about-wrapper{display:block;}
	.rc-hero__copy{width:100%;}
	.rc-hero{padding:50px 0;}
	.rc-h1{font-size:32px;}
	.rc-h2, .rc-h3--large{font-size:26px;}
	.rc-lead{font-size:20px;}
	.rc-cards{display:block;}
	.rc-card + .rc-card{margin-top:20px;}
	.what_we_do:before{background:none;}
	.rc-card--work + .rc-card--work{margin-top:20px;}
	.rc-plugin + .rc-plugin{margin-top:20px;}
	.rc-imgs img{margin-top:10px;}
	.contactForm{padding:50px 20px;}
}
.rc-work__icon{
    width: 167px;
    height: 186px;
    border-radius: 14px;
    background-size: 100% auto;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.rc-work__icon--discovery{ background-image: url("../img/discovery.svg"); }
.rc-work__icon--transparent{ background-image: url("../img/transparent.svg");}
.rc-work__icon--qa{ background-image: url("../img/quality.svg");}
.rc-work__icon--support{ background-image: url("../img/post_launch.svg");}


.screenshot-carousel {
  position: relative;
  overflow: hidden;
  margin: 30px 0;
  border-radius: 12px;
  background: rgba(0,0,0,0.2);
}
.carousel-track {
  display: flex;
  transition: transform 0.35s ease;
}
.carousel-track .screenshot {
  flex: 0 0 100%;
  min-width: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}
.screenshot-carousel .screenshot img {
  width: auto;
  height: 750px;
  max-width: 90%;
  object-fit: contain;
  cursor: pointer;
}
.screenshot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  transition: box-shadow .2s;
}
.screenshot-caption {
  margin-top: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}
.carousel-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.carousel-counter {
  font-size: 0.85rem;
  color: var(--text-muted);
  min-width: 40px;
  text-align: center;
}
.carousel-dots {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  cursor: pointer;
  transition: background .2s, transform .2s;
  border: none;
  padding: 0;
  flex-shrink: 0;
}
.carousel-dot.active {
  background: var(--rc-accent-2);
  transform: scale(1.3);
}
.carousel-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(15,18,32,.75);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 10;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}
.carousel-arrow::before {
  color: #fff;
  font-size: 24px;
  line-height: 1;
}
.carousel-arrow.next::before {
  content: "›";
}
.carousel-arrow.prev::before {
  content: "‹";
}

.carousel-arrow.prev {
  left: 12px;
}
.carousel-arrow.next {
  right: 12px;
}
/* ================================================
   Lightbox (shared for both modes)
   ================================================ */

.screenshot-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.95);
    z-index: 10000;
    animation: fadeIn 0.2s;
}

.screenshot-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,.5);
}

.lightbox-caption {
    margin-top: 16px;
    color: #fff;
    font-size: 0.95rem;
    text-align: center;
    max-width: 760px;
    padding: 0 20px;
}

.lightbox-counter {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #fff;
    font-size: 0.9rem;
    background: rgba(0,0,0,.5);
    padding: 6px 14px;
    border-radius: 20px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.lightbox-close:hover { background: rgba(255,255,255,.2); }
.lightbox-close::before { content: "вњ•"; color: #fff; font-size: 22px; line-height: 1; }

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    z-index: 10001;
}

.lightbox-arrow:hover { background: rgba(255,255,255,.2); }
.lightbox-arrow.prev { left: 20px; }
.lightbox-arrow.next { right: 20px; }
.lightbox-arrow::before { color: #fff; font-size: 28px; line-height: 1; }
.lightbox-arrow.prev::before { content: "‹"; }
.lightbox-arrow.next::before { content: "›"; }

.lightbox-keyboard-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.5);
    font-size: 0.82rem;
    background: rgba(0,0,0,.5);
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
}
.lightbox-close::before {
    content: "✕";
    color: rgb(255, 255, 255);
    font-size: 22px;
    line-height: 1;
}