*, *::before, *::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--navy:      #0b1f3a;
--navy2:     #152d52;
--blue:      #0055b3;
--blue2:     #0069d9;
--blue-pale: #e8f0fc;
--teal:      #00a89d;
--gray:      #f4f6f9;
--gray2:     #e8ecf2;
--text:      #0b1f3a;
--text2:     #4a5e78;
--text3:     #8a9bb0;
--border:    #dde3ed;
--white:     #fff;
--r:         3px;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'DM Sans', sans-serif;
color: var(--text);
background: var(--white);
overflow-x: hidden;
font-size: 16px;
line-height: 1.7;
}
a {
color: inherit;
text-decoration: none;
}
img {
max-width: 100%;
height: auto;
display: block;
}
ul {
list-style: none;
}  .logo {
display: flex;
align-items: center;
gap: 12px;
}
.logo-mark {
width: 38px;
height: 38px;
background: var(--navy);
border-radius: 2px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.logo-mark svg {
width: 22px;
height: 22px;
}
.logo-text {
line-height: 1.2;
}
.logo-main {
font-size: 14px;
font-weight: 700;
color: var(--navy);
letter-spacing: 0.01em;
}
.logo-sub {
font-size: 11px;
color: var(--text3);
font-weight: 400;
letter-spacing: 0.04em;
} .nav-links {
display: flex;
gap: 32px;
}
.nav-links a {
font-size: 14px;
font-weight: 500;
color: var(--text2);
text-decoration: none;
transition: color .2s;
}
.nav-links a:hover,
.nav-links a:focus {
color: var(--blue);
}
.nav li {    
text-decoration: none;
} .nav-right {
display: flex;
align-items: center;
gap: 20px;
}
.nav-phone {
font-size: 15px;
font-weight: 600;
color: var(--text);
text-decoration: none;
transition: color .2s;
}
.nav-phone:hover {
color: var(--blue);
}
.nav-cta {
background: var(--blue);
color: #fff;
font-size: 15px;
font-weight: 600;
padding: 9px 22px;
border-radius: var(--r);
text-decoration: none;
letter-spacing: 0.02em;
transition: background .2s;
}
.nav-cta:hover {
background: var(--blue2);
color: #fff;
} .nav-toggle {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
padding: 4px;
background: none;
border: none;
}
.nav-toggle span {
width: 22px;
height: 2px;
background: var(--navy);
border-radius: 2px;
transition: all .3s;
} .hero-label {
font-size: 11px;
font-weight: 600;
letter-spacing: 0.12em;
text-transform: uppercase;
color: #7a9cc4;
margin-bottom: 20px;
display: flex;
align-items: center;
gap: 8px;
}
.hero-label::before {
content: '';
width: 24px;
height: 1px;
background: #7a9cc4;
flex-shrink: 0;
}
.hero h1 {
font-family: 'DM Serif Display', serif;
font-size: 52px;
color: #fff;
line-height: 1.15;
margin-bottom: 24px;
font-weight: 400;
}
.hero h1 em {
font-style: italic;
color: #7ab8f5;
}
.hero-desc {
font-size: 17px;
color: #94b0cc;
line-height: 1.7;
margin-bottom: 36px;
max-width: 400px;
font-weight: 300;
}
.hero-btns {
display: flex;
gap: 12px;
flex-wrap: wrap;
}
.btn-white {
background: #fff;
color: var(--navy);
font-size: 15px;
font-weight: 700;
padding: 12px 28px;
border-radius: var(--r);
text-decoration: none;
letter-spacing: 0.02em;
transition: background .2s;
display: inline-block;
}
.btn-white:hover {
background: #e8f0fc;
color: var(--navy);
}
.btn-outline {
border: 1px solid rgba(255, 255, 255, .25);
color: #fff;
font-size: 15px;
font-weight: 500;
padding: 12px 24px;
border-radius: var(--r);
text-decoration: none;
transition: border-color .2s;
display: inline-block;
}
.btn-outline:hover {
border-color: #fff;
color: #fff;
}
.hero-badges {
display: flex;
gap: 16px;
margin-top: 40px;
flex-wrap: wrap;
}
.hero-badge {
display: flex;
align-items: center;
gap: 8px;
font-size: 12px;
color: #94b0cc;
}
.hero-badge svg {
width: 14px;
height: 14px;
color: #7ab8f5;
flex-shrink: 0;
} @keyframes countUp {
from { opacity: 0; transform: translateY(8px); }
to   { opacity: 1; transform: translateY(0); }
} .utp-item svg {
width: 16px;
height: 16px;
opacity: .8;
flex-shrink: 0;
} @media (max-width: 768px){
section {
padding: 040px;
}
}
@media (max-width: 480px){
section {
padding: 10px;
}
}
.sec-eyebrow {
font-size: 11px;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--blue);
margin-bottom: 14px;
}
h2.sec-title {
font-family: 'DM Serif Display', serif;
font-size: 42px;
font-weight: 400;
color: var(--navy);
line-height: 1.2;
margin-bottom: 16px;
} .about {
background: var(--white);
}
.about-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: start;
}
@media (max-width: 768px){
.about-grid {    
grid-template-columns: none;
gap: 40px;    
}
}
.about-features {
display: flex;
flex-direction: column;
gap: 20px;
margin-top: 32px;
}
.about-feat {
display: flex;
gap: 14px;
padding: 16px;
border: 1px solid var(--border);
border-radius: 4px;
transition: border-color .2s;
}
.about-feat:hover {
border-color: var(--blue);
}
.feat-ico {
width: 38px;
height: 38px;
background: var(--blue-pale);
border-radius: var(--r);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.feat-ico svg {
width: 17px;
height: 17px;
color: var(--blue);
}
.feat-body h4 {
font-size: 16px;
font-weight: 600;
color: var(--navy);
margin-bottom: 3px;
}
.feat-body p {
font-size: 15px;
color: var(--text2);
line-height: 1.6;
} .utp-block {
background: var(--navy);
border-radius: 6px;
padding: 28px;
color: #fff;
margin-top: 28px;
position: relative;
overflow: hidden;
}
.utp-block::before {
content: '';
position: absolute;
right: -20px;
top: -20px;
width: 100px;
height: 100px;
border-radius: 50%;
background: rgba(0, 85, 179, .3);
}
.utp-tag {
font-size: 10px;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
color: #7ab8f5;
margin-bottom: 10px;
}
.utp-block h4 {
font-size: 16px;
font-weight: 600;
color: #fff;
margin-bottom: 8px;
line-height: 1.3;
}
.utp-block p {
font-size: 13px;
color: #94b0cc;
line-height: 1.6;
}
.utp-compare {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
margin-top: 16px;
}
.utp-col {
border-radius: var(--r);
padding: 12px;
}
.utp-col.bad {
background: rgba(255, 255, 255, .05);
border: 1px solid rgba(255, 255, 255, .08);
}
.utp-col.good {
background: rgba(0, 85, 179, .4);
border: 1px solid rgba(120, 184, 245, .2);
}
.utp-col-label {
font-size: 10px;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
margin-bottom: 8px;
}
.utp-col.bad .utp-col-label { color: #e07070; }
.utp-col.good .utp-col-label { color: #7ab8f5; }
.utp-col li {
font-size: 12px;
list-style: none;
padding: 2px 0;
display: flex;
align-items: flex-start;
gap: 5px;
}
.utp-col.bad li  { color: #94b0cc; }
.utp-col.good li { color: #cce0f5; }
.utp-col.bad li::before  { content: '—'; color: #e07070; font-size: 10px; flex-shrink: 0; margin-top: 2px; }
.utp-col.good li::before { content: '✓'; color: #7ab8f5; font-size: 10px; flex-shrink: 0; margin-top: 2px; } .about-right {
display: flex;
flex-direction: column;
gap: 14px;
}
.team-card {
background: var(--gray);
border: 1px solid var(--border);
border-radius: 4px;
padding: 16px;
display: flex;
align-items: center;
gap: 14px;
}
.team-card:hover {
box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.avatar {
width: 90px;
height: 90px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 13px;
font-weight: 700;
color: #fff;
flex-shrink: 0;
}
.tc-info h4 {
font-size: 14px;
font-weight: 600;
color: var(--navy);
}
.tc-info p {
font-size: 12px;
color: var(--text3);
}
.cert-row {
background: var(--blue-pale);
border: 1px solid #c0d5f0;
border-radius: 4px;
padding: 14px 16px;
display: flex;
align-items: center;
gap: 10px;
}
.cert-row svg {
width: 20px;
height: 20px;
color: var(--blue);
flex-shrink: 0;
}
.cert-row span {
font-size: 13px;
color: var(--navy);
font-weight: 500;
line-height: 1.4;
} .services {
background: var(--gray);
}
.svc-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2px;
background: var(--border);
border-radius: 4px;
overflow: hidden;
margin-top: 48px;
}
.svc-card {
background: var(--white);
padding: 36px 28px;
display: flex;
flex-direction: column;
transition: background .2s;
}
.svc-card:hover {
background: #f8fbff;
}
.svc-num {
font-size: 11px;
font-weight: 700;
letter-spacing: 0.1em;
color: var(--text3);
margin-bottom: 20px;
}
.svc-icon {
width: 52px;
height: 52px;
background: var(--blue-pale);
border-radius: var(--r);
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}
.svc-icon svg {
width: 24px;
height: 24px;
color: var(--blue);
}
.svc-card h3 {
font-family: 'DM Serif Display', serif;
font-size: 22px;
font-weight: 400;
color: var(--navy);
margin-bottom: 10px;
line-height: 1.3;
}
.svc-card p {
font-size: 15px;
color: var(--text2);
line-height: 1.7;    
}
.svc-list {
list-style: none;
margin-top: 16px;
display: flex;
flex-direction: column;
gap: 6px;
flex: 1;
}
.svc-list li {
font-size: 14px;
color: var(--text2);
display: flex;
align-items: flex-start;
gap: 7px;
line-height: 1.4;
}
.svc-list li svg {
width: 13px;
height: 13px;
color: var(--teal);
flex-shrink: 0;
margin-top: 2px;
}
.svc-cta {
margin-top: 24px;
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 12px;
font-weight: 600;
color: var(--blue);
text-decoration: none;
letter-spacing: 0.04em;
text-transform: uppercase;
}
.svc-cta svg {
width: 12px;
height: 12px;
transition: transform .2s;
}
.svc-card:hover .svc-cta svg {
transform: translateX(3px);
} .form-strip-inner {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 64px;
align-items: center;
}
@media (max-width: 768px){
.form-strip-inner {   
grid-template-columns: none;
gap: 30px;   
}
}
.form-strip-left h3 {
font-family: 'DM Serif Display', serif;
font-size: 28px;
color: #fff;
font-weight: 400;
margin-bottom: 8px;
}
.form-strip-left p {
font-size: 14px;
color: #94b0cc;
line-height: 1.6;
}
.form-inline {
display: grid;
grid-template-columns: 1fr 1fr 1fr auto;
gap: 10px;
align-items: end;
}
.field-wrap label {
font-size: 11px;
font-weight: 600;
color: #7a9cc4;
text-transform: uppercase;
letter-spacing: 0.06em;
margin-bottom: 5px;
display: block;
}
.field-wrap input,
.field-wrap select {
width: 100%;
padding: 11px 14px;
border: 1px solid rgba(255, 255, 255, .15);
border-radius: var(--r);
font-family: 'DM Sans', sans-serif;
font-size: 14px;
color: #fff;
background: rgba(255, 255, 255, .08);
outline: none;
transition: border-color .2s;
appearance: none;
}
.field-wrap input::placeholder {
color: #4a6a8a;
}
.field-wrap input:focus,
.field-wrap select:focus {
border-color: var(--blue2);
}
.field-wrap select {
color: #94b0cc;
cursor: pointer;
}
.field-wrap select option {
background: #152d52;
color: #fff;
}
.form-submit-btn {
background: var(--blue);
color: #fff;
border: none;
padding: 11px 28px;
border-radius: var(--r);
font-family: 'DM Sans', sans-serif;
font-size: 15px;
font-weight: 700;
cursor: pointer;
white-space: nowrap;
letter-spacing: 0.04em;
transition: background .2s;
height: 44px;
}
.form-submit-btn:hover {
background: var(--blue2);
} .stats-section {
background: var(--white);
padding: 80px 56px;
}
.stats-header {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: end;
margin-bottom: 56px;
}
@media (max-width: 768px){
.stats-header {   
grid-template-columns: none;
gap: 40px;   
margin-bottom: 30px;
}
}
.stats-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 2px;
background: var(--border);
border-radius: 4px;
overflow: hidden;
}
.stat-box {
background: var(--gray);
padding: 32px 24px;
}
.stat-big sup {
font-size: 22px;
vertical-align: super;
}
.stat-bar {
width: 32px;
height: 3px;
background: var(--blue);
margin-top: 12px;
border-radius: 1px;
} .media-section {
background: var(--gray);
padding: 80px 56px;
}
.media-grid {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 24px;
margin-top: 40px;
align-items: start;
}
@media (max-width: 768px){
.media-grid {
grid-template-columns: 1fr;    
margin-top: 40px;    
}
}
.gallery-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 8px;
}
@media (max-width: 768px){
.gallery-grid {   
grid-template-columns: repeat(2, 1fr);    
}
}
.gallery-cell:hover {
border-color: var(--blue);
}
.gallery-cell svg {
width: 24px;
height: 24px;
color: var(--border);
}
.gallery-cell img {
width: 100%;
height: 100%;
object-fit: cover;
}
.gallery-cell.video {
background: linear-gradient(135deg, #c8d8ec, #dce8f5);
position: relative;
} .article-card {
background: var(--white);
border: 1px solid var(--border);
border-radius: 4px;
overflow: hidden;
}
@media (max-width: 768px){
.article-card {
order: -1;
}
}
.article-top {
background: var(--navy);
padding: 20px;
display: flex;
align-items: center;
gap: 10px;
}
.article-source {
font-size: 10px;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
color: #7ab8f5;
}
.article-body {
padding: 20px;
}
.article-body h4 {
font-family: 'DM Serif Display', serif;
font-size: 20px;
color: var(--navy);
margin-bottom: 10px;
line-height: 1.4;
font-weight: 400;
}
.article-body p {
font-size: 15px;
color: var(--text2);
line-height: 1.6;
margin-bottom: 16px;
}
.article-link {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 12px;
font-weight: 700;
color: var(--blue);
text-decoration: none;
text-transform: uppercase;
letter-spacing: 0.06em;
transition: color .2s;
}
.article-link:hover {
color: var(--blue2);
}
.article-link svg {
width: 11px;
height: 11px;
} .contacts-section {
background: var(--white);
padding: 80px 56px;
border-top: 1px solid var(--border);
}
.contacts-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 16px;
margin-top: 40px;
}
.ct {
background: var(--gray);
border-radius: 4px;
padding: 24px;
border: 1px solid var(--border);
transition: border-color .2s;
}
@media (max-width: 768px){
.ct {
padding: 18px;
}
}
.ct:hover {
border-color: var(--blue);
}
.ct-ico {
width: 40px;
height: 40px;
background: var(--blue-pale);
border-radius: var(--r);
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 16px;
}
.ct-ico svg {
width: 18px;
height: 18px;
color: var(--blue);
}
.ct h4 {
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.08em;
color: var(--text3);
margin-bottom: 6px;
}
.ct a,
.ct p {
font-size: 17px;
font-weight: 600;
color: var(--navy);
text-decoration: none;
line-height: 1.4;
}
.ct a:hover {
color: var(--blue);
} .site-footer .footer-copy {
font-size: 12px;
color: #fff;
}
.site-footer .footer-nav {
display: flex;
gap: 24px;
}
.site-footer .footer-nav a {
font-size: 12px;
color: #fff;
text-decoration: none;
transition: color .2s;
}
.site-footer .footer-nav a:hover {
color: #7a9cc4;
} .container {
width: 100%;
max-width: 1240px;
margin-left: auto;
margin-right: auto;
padding-left: 32px;
padding-right: 32px;
} .hero {
background: var(--navy);
display: block;
overflow: hidden;
}
.hero-container {
display: grid;
grid-template-columns: 1fr 1fr;
min-height: 540px;
max-width: 1240px;
margin: 0 auto;
padding: 0 32px;
}
.hero-left {
background: transparent;
padding: 72px 48px 56px 0;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.hero-right {
background: transparent;
border-left: 1px solid rgba(255,255,255,.08);
display: flex;
flex-direction: column;
}
.hero-anim-area {
flex: 1;
position: relative;
overflow: hidden;
background: linear-gradient(180deg,#0d2240 0%,#0b1f3a 60%,#0e2e50 100%);
display: flex;
align-items: center;
justify-content: center;
min-height: 340px;
}
.hero-water-svg {
position: absolute;
bottom: 0; left: 0;
width: 100%; height: 160px;
pointer-events: none;
}
.water-wave--back  { fill: #4fc3f7; opacity: .14; animation: waveFallback 6s ease-in-out infinite; }
.water-wave--front { fill: #0055b3; opacity: .24; animation: waveFallback 4s ease-in-out infinite reverse; }
@keyframes waveFallback {
0%,100% { transform: translateX(0); }
50%      { transform: translateX(-28px); }
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.hero-particle {
position: absolute; width: 2px; height: 2px;
background: rgba(122,184,245,.5); border-radius: 50%;
animation: particleDrift linear infinite;
}
@keyframes particleDrift {
0%   { transform: translateY(0) translateX(0); opacity: 0; }
10%  { opacity: .7; }
90%  { opacity: .3; }
100% { transform: translateY(-180px) translateX(16px); opacity: 0; }
}
.hero-meter-card {
position: relative; z-index: 2;
animation: cardFloat 5s ease-in-out infinite;
filter: drop-shadow(0 16px 40px rgba(0,0,0,.55));
}
.meter-svg-art { width: 200px; height: auto; display: block; }
@keyframes cardFloat {
0%,100% { transform: translateY(0); }
50%      { transform: translateY(-10px); }
}
.needle-animated    { animation: needleRotate 6s  linear infinite; }
.needle-animated-rev{ animation: needleRotate 4s  linear infinite reverse; }
.needle-slow        { animation: needleRotate 10s linear infinite; }
.needle-medium      { animation: needleRotate 7s  linear infinite reverse; }
@keyframes needleRotate { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.meter-digit-tick   { animation: digitTick .15s ease-in-out; }
@keyframes digitTick {
0%   { transform: translateY(-4px); opacity: .5; }
100% { transform: translateY(0);    opacity: 1; }
}
.hero-svidotstvo {
position: absolute; bottom: 80px; right: 20px; z-index: 3;
background: var(--white); border-radius: 8px; overflow: visible;
box-shadow: 0 8px 32px rgba(0,0,0,.4); width: 150px;
animation: cardFloat 5s ease-in-out infinite 1.2s;
transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease;
cursor: zoom-in;
}
.hero-svidotstvo:hover,
.hero-svidotstvo.is-zoomed {
transform: translateY(-6px) scale(1.5) !important;
box-shadow: 0 24px 64px rgba(0,0,0,.6);
animation-play-state: paused;
z-index: 10; cursor: zoom-out;
}
.hero-svidotstvo img {
width: 100%; height: 90px; object-fit: cover;
object-position: top; display: block;
border-radius: 8px 8px 0 0;
}
.hero-svidotstvo-label {
padding: 5px; font-size: 9px; font-weight: 600;
color: var(--navy); letter-spacing: .06em; text-transform: uppercase;
display: flex; align-items: center; gap: 5px;
}
.hero-svidotstvo-label::before {
content: ''; width: 6px; height: 6px;
background: var(--teal); border-radius: 50%; flex-shrink: 0;
animation: svitPulse 2s ease-in-out infinite;
}
@keyframes svitPulse {
0%,100% { transform: scale(1);   opacity: 1; }
50%      { transform: scale(1.5); opacity: .7; }
}
.hero-counter-box {
background: rgba(255,255,255,.06);
border-top: 1px solid rgba(255,255,255,.1);
padding: 24px 32px;
display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.counter-item { text-align: center; }
.counter-num {
font-family: 'DM Serif Display',serif;
font-size: 40px; color: #fff; line-height: 1;
}
.counter-label { font-size: 11px; color: #7a9cc4; margin-top: 4px; font-weight: 500; letter-spacing: .04em; } .utp-banner { background: var(--blue); padding: 16px 32px; color: white;}
.utp-banner-inner {
display: flex; align-items: center; justify-content: center;
gap: 40px; flex-wrap: wrap;
max-width: 1240px; margin: 0 auto;
}
.site-header { 
background: var(--white);
border-bottom: 1px solid var(--border);
padding: 0 56px;
height: 68px;
display: flex;
align-items: center;
justify-content: space-between;
position: sticky;
top: 0;
z-index: 100; 
}
.site-footer  { padding: 28px 32px; background: var(--navy);}
.footer-inner {
display: flex; align-items: center; justify-content: space-between;
flex-wrap: wrap; gap: 12px;
max-width: 1240px; margin: 0 auto;
} .about,.services,.stats-section,.media-section,
.contacts-section,.advantages-section { padding: 80px 32px; }
.form-strip { padding: 40px 32px; background: #152d52;} .reveal-item { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1{transition-delay:.1s} .reveal-delay-2{transition-delay:.2s}
.reveal-delay-3{transition-delay:.3s} .reveal-delay-4{transition-delay:.4s} .btn-animated {
position: relative; overflow: hidden;
transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn-animated::after {
content:''; position:absolute; inset:0;
background: rgba(255,255,255,.15);
transform: translateX(-100%) skewX(-15deg);
transition: transform .4s ease;
}
.btn-animated:hover::after { transform: translateX(110%) skewX(-15deg); }
.btn-animated:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,85,179,.25); }
.btn-animated:active { transform: translateY(0); box-shadow: none; }
.btn-white.btn-animated:hover  { box-shadow: 0 6px 20px rgba(0,0,0,.15); }
.btn-outline.btn-animated:hover{ box-shadow: 0 6px 20px rgba(255,255,255,.1); } .svc-accordion { margin-top: 20px; border-top: 1px solid var(--border); padding-top: 16px; }
.svc-accordion-btn {
display: flex; align-items: center; justify-content: space-between;
width: 100%; background: none; border: 1px solid var(--blue);
border-radius: var(--r); padding: 10px 16px;
font-family: 'DM Sans',sans-serif; font-size: 12px; font-weight: 700;
color: var(--blue); text-transform: uppercase; letter-spacing: .06em;
cursor: pointer; transition: background .2s, color .2s;
}
.svc-accordion-btn:hover { background: var(--blue); color: #fff; }
.svc-accordion-btn:hover .acc-arrow { stroke: #fff; }
.acc-arrow { width: 14px; height: 14px; transition: transform .3s; flex-shrink: 0; }
.svc-accordion-btn[aria-expanded="true"] .acc-arrow { transform: rotate(180deg); }
.svc-accordion-body { padding: 16px 4px 4px; animation: accordionOpen .3s ease; }
.svc-accordion-body[hidden] { display: none; }
.svc-accordion-body p { font-size: 14px; color: var(--text2); line-height: 1.7; margin-bottom: 12px; }
.svc-cta-link {
display: inline-block; margin-top: 8px; background: var(--blue); color: #fff;
font-size: 12px; font-weight: 700; padding: 9px 20px;
border-radius: var(--r); text-decoration: none; letter-spacing: .04em; transition: background .2s;
}
.svc-cta-link:hover { background: var(--blue2); color: #fff; }
@keyframes accordionOpen { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:translateY(0)} } .gallery-cell { 
cursor: pointer; 
position: relative; 
aspect-ratio: 4 / 3;
background: var(--gray2);
border-radius: var(--r);
border: 1px solid var(--border);
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
transition: border-color .2s;
}
.gallery-cell::after { content:''; position:absolute; inset:0; background:rgba(0,85,179,0); transition:background .2s; border-radius:var(--r); }
.gallery-cell:hover::after { background: rgba(0,85,179,.12); }
.lightbox-overlay {
position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 9999;
display: flex; align-items: center; justify-content: center; animation: lightboxFadeIn .25s ease;
}
.lightbox-overlay[hidden] { display: none; }
@keyframes lightboxFadeIn { from{opacity:0} to{opacity:1} }
.lightbox-content {
max-width: 90vw;
max-height: 90vh;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
}
.lightbox-img { max-width:100%; max-height:80vh; border-radius:4px; object-fit:contain; animation:lightboxScale .3s ease; }
@keyframes lightboxScale { from{transform:scale(.92);opacity:0} to{transform:scale(1);opacity:1} }
.lightbox-caption { color: rgba(255,255,255,.7); font-size: 13px; margin-top: 12px; } #lightbox-img[hidden],
#lightbox-video[hidden] {
display: none !important;
}
.lightbox-close,.lightbox-prev,.lightbox-next {
position: fixed; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
border-radius: 50%; width: 44px; height: 44px;
display: flex; align-items: center; justify-content: center;
cursor: pointer; color: #fff; transition: background .2s, transform .2s;
}
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover { background: rgba(255,255,255,.2); }
.lightbox-prev:hover  { background:rgba(255,255,255,.2); transform:translateY(-50%) translateX(-2px); }
.lightbox-next:hover  { background:rgba(255,255,255,.2); transform:translateY(-50%) translateX(2px); }
.lightbox-close svg,.lightbox-prev svg,.lightbox-next svg { width:18px; height:18px; } .advantages-section { background: var(--navy); }
.adv-header { text-align: center; margin-bottom: 56px; }
.adv-header .sec-eyebrow { color: #7ab8f5; justify-content: center; display: flex; }
.adv-header h2.sec-title { color: #fff; }
.adv-header .sec-sub { color: #94b0cc; margin: 0 auto; max-width: 520px; }
.adv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.adv-card {
background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
border-radius: 8px; padding: 32px 28px;
transition: background .25s, border-color .25s, transform .25s;
}
.adv-card:hover { background: rgba(0,85,179,.2); border-color: rgba(122,184,245,.3); transform: translateY(-4px); }
.adv-icon {
width: 52px; height: 52px; background: rgba(0,85,179,.35);
border-radius: 8px; display: flex; align-items: center; justify-content: center;
margin-bottom: 20px; transition: background .25s;
}
.adv-card:hover .adv-icon { background: rgba(0,85,179,.55); }
.adv-icon svg { width: 24px; height: 24px; color: #7ab8f5; }
.adv-card h3 { font-family:'DM Serif Display',serif; font-size:20px; font-weight:400; color:#fff; margin-bottom:10px; line-height:1.3; }
.adv-card p  { font-size: 15px; color: #94b0cc; line-height: 1.65; } body { font-size: 16px; line-height: 1.7; }
h2.sec-title { font-size: 42px; }
.sec-sub { font-size: 17px; line-height: 1.75; }
.feat-body h4 { font-size: 16px; }
.feat-body p  { font-size: 15px; line-height: 1.6; }
.svc-card h3  { font-size: 22px; }
.svc-card p   { font-size: 15px; }
.svc-list li  { font-size: 14px; }
.stat-big     { font-size: 48px; }
.stat-big sup { font-size: 24px; }
.stat-desc    { font-size: 15px; }
.ct a,.ct p   { font-size: 17px; }
.utp-item     { 
display: flex;
align-items: center;
gap: 10px;
color: #fff;
font-size: 13px;
font-weight: 500; 
}
.article-body h4 { font-size: 20px; }
.article-body p  { font-size: 15px; } .needle-animated,.needle-animated-rev,.needle-slow,.needle-medium {
transform-box: fill-box;
transform-origin: 50% 100%;
} @media (max-width: 1200px) {
.site-header  { padding: 0 24px; }
.site-footer  { padding: 28px 24px; }
.utp-banner   { padding: 16px 24px; }
.about,.services,.stats-section,.media-section,
.contacts-section,.advantages-section { padding: 64px 24px; }
.form-strip   { padding: 40px 24px; }
.hero-container { padding: 0 24px; }
.hero-left    { padding: 56px 32px 48px 0; }
}
@media (max-width: 1024px) {
.hero-container { grid-template-columns: 1fr; padding: 0 24px; }
.hero-right { order: -1; border-left: none; border-bottom: 1px solid rgba(255,255,255,.08); }
.hero-left  {  padding: 40px 0 36px; }
.hero-anim-area { min-height: 280px; }
.hero-svidotstvo { bottom: 70px; right: 16px; width: 130px; }
.hero-svidotstvo img { height: 100px; } .meter-svg-art { width: 170px; }
.utp-banner   { padding: 0; }
.utp-banner-inner { flex-direction: column; align-items: flex-start; gap: 0; }
.utp-item { padding: 10px 20px; width: 100%; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 14px; }
.utp-item:last-child { border-bottom: none; }
.utp-sep  { 
width: 1px;
height: 20px;
background: rgba(255, 255, 255, .2); 
}
.adv-grid { grid-template-columns: repeat(2,1fr); }
h2.sec-title { font-size: 36px; }
}
@media (max-width: 768px) {
.site-header { padding: 0 16px; height: 60px; }
.about,.services,.stats-section,.media-section,
.contacts-section,.advantages-section { padding: 48px 16px; }
.form-strip   { padding: 32px 16px; }
.site-footer  { padding: 20px 16px; }
.utp-item     { padding: 10px 16px; }
.hero-container { padding: 0 16px; }
.hero-left    { padding: 32px 0 28px; }
.hero h1      { font-size: 40px; }
h2.sec-title  { font-size: 28px; }
.sec-sub      { font-size: 15px; }
.hero-anim-area { min-height: 260px; }
.meter-svg-art  { width: 150px; }
.hero-svidotstvo { width: 110px; bottom: 10px; right: 10px; }
.hero-svidotstvo img { height: 78px; } .adv-grid { grid-template-columns: 1fr; }
.adv-header h2.sec-title { font-size: 28px; }
.stats-grid  { grid-template-columns: repeat(2,1fr); }
.contacts-grid { grid-template-columns: 1fr; }
.svc-grid    { grid-template-columns: 1fr; }
.form-inline { grid-template-columns: 1fr; }
.form-submit-btn { width: 100%; }
.footer-inner { flex-direction: column; align-items: flex-start; }
.nav-links,.nav-right { display: none; }
.nav-toggle { display: flex; }
}
@media (max-width: 480px) {
.hero h1 { font-size: 40px; }
h2.sec-title { font-size: 24px; }
.hero-btns { flex-direction: column; }
.btn-white,.btn-outline { text-align: center; }
.stats-grid { grid-template-columns: 1fr; }
.hero-svidotstvo { width: 96px; bottom: 10px; right: 8px; }
.hero-svidotstvo img { height: 58px; } }
@media (max-width: 768px) {
.site-header {
position: sticky;
top: 0;
z-index: 100;
display: flex;
align-items: center;
justify-content: space-between;
} .nav-right {
display: none;
}
.nav-right.is-open {
display: flex;
flex-direction: column;
align-items: stretch;
gap: 0;
position: absolute;
top: 80px;
left: 0;
right: 0;
background: var(--white);
border-bottom: 1px solid var(--border);
padding: 10px 16px;
z-index: 99;
box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.nav-right.is-open .nav-phone,
.nav-right.is-open .nav-cta {
display: block;
text-align: center;
padding: 10px 16px;
margin-top: 8px;
}
.nav-links.is-open {
display: flex;
flex-direction: column;
position: absolute;
top: 120px;
left: 0;
right: 0;
background: var(--white);
border-bottom: 1px solid var(--border);
padding: 16px;
gap: 16px;
z-index: 99;
box-shadow: 0 8px 24px rgba(0,0,0,.08);
} .nav-links.is-open + .nav-right {
top: 0
; } .nav-toggle {
z-index: 100; 
display: flex;
margin-left: auto;
}
} @media (max-width: 1024px) {
.utp-banner {
display: none;
}
}
@media (max-width: 1024px) {
.hero-right { order: -1; } .hero-left  { order: 1; } }
.hero-svidotstvo {
transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
box-shadow 0.35s ease;
transform-origin: bottom right;
}
.hero-svidotstvo img {
transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
transform-origin: bottom right;
} @media (hover: hover) {
.hero-svidotstvo:hover { box-shadow: 0 24px 60px rgba(0,0,0,0.55);
}
} @media (max-width: 1024px) {
.hero-svidotstvo.is-zoomed img {
transform-origin: bottom right;
}
.hero-svidotstvo.is-zoomed { box-shadow: 0 24px 60px rgba(0,0,0,0.55) !important;
} .hero-svidotstvo:hover {
transform: none;
box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
} .nav-links ul,
.nav-links ul li,
.footer-nav ul,
.footer-nav ul li {
list-style: none;
margin: 0;
padding: 0;
}
.nav-links ul {
display: flex;
gap: 32px;
}
.footer-nav ul {
display: flex;
gap: 24px;
flex-wrap: wrap;
}
@media (max-width: 768px) {
.nav-links ul {
flex-direction: column;
gap: 0;
}
.nav-links ul li a {
display: block;
padding: 8px 0;
}
} .logo-img {
width: 44px;
height: 44px;
object-fit: cover;
flex-shrink: 0;
display: block;
} .how-to-order {
margin-top: 56px;
padding-top: 48px;
border-top: 1px solid var(--border);
}
.how-to-order h3 {
font-family: 'DM Serif Display', serif;
font-size: 28px;
font-weight: 400;
color: var(--navy);
margin-bottom: 32px;
}
.order-steps {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
list-style: none;
padding: 0;
margin: 0;
}
.order-steps li {
display: flex;
align-items: flex-start;
gap: 16px;
background: var(--gray);
border: 1px solid var(--border);
border-radius: 6px;
padding: 20px;
}
.step-num {
width: 36px;
height: 36px;
background: var(--blue);
color: #fff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 15px;
font-weight: 700;
flex-shrink: 0;
}
.order-steps li > div strong {
display: block;
font-size: 15px;
font-weight: 600;
color: var(--navy);
margin-bottom: 4px;
}
.order-steps li > div p {
font-size: 13px;
color: var(--text2);
line-height: 1.5;
margin: 0;
}
@media (max-width: 768px) {
.order-steps {
grid-template-columns: 1fr;
gap: 12px;
}
.how-to-order h3 {
font-size: 22px;
}
} .how-to-order-section {
background: var(--blue);
padding: 72px 32px;
}
.how-to-order-section .sec-eyebrow {
color: rgba(255,255,255,0.7);
}
.how-to-order-section .sec-title {
color: #fff;
}
.how-to-order-section .sec-sub {
color: rgba(255,255,255,0.8);
max-width: 520px;
}
.order-steps--standalone {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-top: 40px;
list-style: none;
padding: 0;
}
.order-steps--standalone li {
display: flex;
align-items: flex-start;
gap: 16px;
background: rgba(255,255,255,0.1);
border: 1px solid rgba(255,255,255,0.2);
border-radius: 8px;
padding: 24px 20px;
transition: background 0.2s ease;
}
.order-steps--standalone li:hover {
background: rgba(255,255,255,0.16);
}
.order-steps--standalone .step-num {
background: #fff;
color: var(--blue);
font-size: 16px;
font-weight: 700;
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.order-steps--standalone li > div strong {
display: block;
font-size: 16px;
font-weight: 600;
color: #fff;
margin-bottom: 6px;
}
.order-steps--standalone li > div p {
font-size: 14px;
color: rgba(255,255,255,0.75);
line-height: 1.55;
margin: 0;
}
@media (max-width: 768px) {
.how-to-order-section { padding: 56px 16px; }
.order-steps--standalone { grid-template-columns: 1fr; gap: 12px; }
} .gallery-cell img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.35s ease;
}
.gallery-cell:hover img {
transform: scale(1.05);
}
.gallery-cell--video {
background: linear-gradient(135deg, #0b1f3a 0%, #152d52 100%);
position: relative;
overflow: hidden;
cursor: pointer; } .gallery-cell--video img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.35s ease;
}
.gallery-cell--video:hover img {
transform: scale(1.05);
}
.play-overlay {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
pointer-events: none;
} .play-overlay--over {
position: absolute;
inset: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 10px;
pointer-events: none;
background: rgba(0,0,0,0.28);
border-radius: var(--r);
}
.play-btn {
width: 56px;
height: 56px;
background: rgba(0, 85, 179, 0.85);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.2s ease, transform 0.2s ease;
}
.gallery-cell--video:hover .play-btn {
background: var(--blue2, #0069d9);
transform: scale(1.12);
}
.play-btn svg {
width: 22px;
height: 22px;
color: #fff;
margin-left: 3px;
}
.play-label {
font-size: 12px;
font-weight: 600;
color: rgba(255,255,255,0.85);
letter-spacing: 0.06em;
text-transform: uppercase;
} .lightbox-video {
max-width: min(90vw, 960px);
max-height: 80vh;
width: 100%;
border-radius: 6px;
display: block;
outline: none;
background: #000;
} .lightbox-prev[hidden],
.lightbox-next[hidden] {
display: none !important;
} .about-facts {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
margin-top: 32px;
margin-bottom: 24px;
}
.about-fact {
background: var(--gray);
border: 1px solid var(--border);
border-radius: 6px;
padding: 16px;
text-align: center;
}
.fact-num {
font-family: 'DM Serif Display', serif;
font-size: 26px;
color: var(--navy);
line-height: 1.1;
margin-bottom: 4px;
}
.fact-label {
font-size: 12px;
color: var(--text2);
line-height: 1.4;
}
.about-note {
display: flex;
gap: 12px;
align-items: flex-start;
background: var(--blue-pale);
border-left: 3px solid var(--blue);
border-radius: 0 4px 4px 0;
padding: 14px 16px;
}
.about-note svg {
width: 18px;
height: 18px;
color: var(--blue);
flex-shrink: 0;
margin-top: 2px;
}
.about-note p {
font-size: 14px;
color: var(--navy);
line-height: 1.6;
margin: 0;
}
@media (max-width: 600px) {
.about-facts { grid-template-columns: 1fr 1fr; }
.about-facts .about-fact:last-child { grid-column: span 2; }
} .reviews-section {
background: var(--gray);
padding: 80px 32px;
}
.reviews-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-top: 40px;
}
.review-card {
background: var(--white);
border: 1px solid var(--border);
border-radius: 8px;
padding: 28px 24px;
display: flex;
flex-direction: column;
gap: 14px;
transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.review-card:hover {
box-shadow: 0 8px 28px rgba(0,0,0,.08);
transform: translateY(-3px);
}
.review-stars {
font-size: 18px;
color: #f5a623;
letter-spacing: 2px;
}
.review-text {
font-size: 15px;
color: var(--text2);
line-height: 1.7;
font-style: italic;
flex: 1;
}
.review-author {
display: flex;
align-items: center;
gap: 12px;
margin-top: 4px;
padding-top: 14px;
border-top: 1px solid var(--border);
}
.review-avatar {
width: 40px;
height: 40px;
border-radius: 50%;
background: var(--navy);
color: #fff;
font-size: 13px;
font-weight: 700;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.review-name {
font-size: 14px;
font-weight: 600;
color: var(--navy);
}
.review-meta {
font-size: 12px;
color: var(--text3);
margin-top: 2px;
}
@media (max-width: 1024px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .reviews-grid { grid-template-columns: 1fr; } } .pricing-section {
background: var(--white);
padding: 80px 32px;
}
.pricing-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-top: 48px;
align-items: start;
}
.pricing-card {
background: var(--gray);
border: 1px solid var(--border);
border-radius: 10px;
padding: 32px 28px;
position: relative;
transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.pricing-card:hover {
box-shadow: 0 10px 32px rgba(0,0,0,.09);
transform: translateY(-4px);
}
.pricing-card--featured {
background: var(--navy);
border-color: var(--navy);
transform: scale(1.03);
}
.pricing-card--featured:hover {
transform: scale(1.03) translateY(-4px);
}
.pricing-badge {
position: absolute;
top: -12px;
left: 50%;
transform: translateX(-50%);
background: var(--blue);
color: #fff;
font-size: 11px;
font-weight: 700;
letter-spacing: 0.06em;
text-transform: uppercase;
padding: 4px 16px;
border-radius: 20px;
white-space: nowrap;
}
.pricing-icon {
width: 48px;
height: 48px;
background: var(--blue-pale);
border-radius: 6px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 16px;
}
.pricing-card--featured .pricing-icon {
background: rgba(255,255,255,.12);
}
.pricing-icon svg {
width: 22px;
height: 22px;
color: var(--blue);
}
.pricing-card--featured .pricing-icon svg {
color: #7ab8f5;
}
.pricing-card h3 {
font-family: 'DM Serif Display', serif;
font-size: 22px;
font-weight: 400;
color: var(--navy);
margin-bottom: 8px;
}
.pricing-card--featured h3 { color: #fff; }
.pricing-price {
font-size: 15px;
color: var(--text2);
margin-bottom: 20px;
}
.pricing-card--featured .pricing-price { color: #94b0cc; }
.pricing-price strong {
font-family: 'DM Serif Display', serif;
font-size: 36px;
color: var(--navy);
font-weight: 400;
}
.pricing-card--featured .pricing-price strong { color: #fff; }
.pricing-list {
list-style: none;
padding: 0;
margin: 0 0 24px;
display: flex;
flex-direction: column;
gap: 8px;
}
.pricing-list li {
font-size: 14px;
color: var(--text2);
padding-left: 20px;
position: relative;
line-height: 1.45;
}
.pricing-list li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--teal);
font-weight: 700;
font-size: 13px;
}
.pricing-card--featured .pricing-list li { color: #94b0cc; }
.pricing-card--featured .pricing-list li::before { color: #4fc3f7; }
.pricing-btn {
display: block;
text-align: center;
padding: 11px 20px;
border-radius: var(--r);
font-size: 14px;
font-weight: 600;
text-decoration: none;
background: var(--blue);
color: #fff;
transition: background 0.2s ease;
}
.pricing-btn:hover { background: var(--blue2); color: #fff; }
.pricing-card--featured .pricing-btn {
background: #fff;
color: var(--navy);
}
.pricing-card--featured .pricing-btn:hover {
background: var(--blue-pale);
color: var(--navy);
}
.pricing-note {
font-size: 13px;
color: var(--text3);
margin-top: 24px;
text-align: center;
line-height: 1.6;
}
@media (max-width: 1024px) {
.pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
.pricing-card--featured { transform: none; }
.pricing-card--featured:hover { transform: translateY(-4px); }
} .faq-section {
background: var(--navy);
padding: 80px 32px;
}
.faq-inner {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 64px;
align-items: start;
}
.faq-header .sec-eyebrow { color: #7ab8f5; }
.faq-header .sec-title   { color: #fff; }
.faq-header .sec-sub     { color: #94b0cc; max-width: 100%; }
.faq-phone {
display: inline-flex;
align-items: center;
gap: 8px;
margin-top: 24px;
font-size: 16px;
font-weight: 600;
color: #7ab8f5;
text-decoration: none;
transition: color 0.2s;
}
.faq-phone:hover { color: #fff; }
.faq-phone svg {
width: 18px;
height: 18px;
}
.faq-list {
display: flex;
flex-direction: column;
gap: 2px;
}
.faq-item {
background: rgba(255,255,255,.05);
border: 1px solid rgba(255,255,255,.08);
border-radius: 6px;
overflow: hidden;
transition: background 0.2s;
}
.faq-item:has(.faq-btn[aria-expanded="true"]) {
background: rgba(0,85,179,.25);
border-color: rgba(122,184,245,.2);
}
.faq-btn {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
padding: 18px 20px;
background: none;
border: none;
text-align: left;
cursor: pointer;
color: #fff;
font-family: 'DM Sans', sans-serif;
font-size: 15px;
font-weight: 500;
line-height: 1.4;
transition: color 0.2s;
}
.faq-btn:hover { color: #7ab8f5; }
.faq-arrow {
width: 18px;
height: 18px;
flex-shrink: 0;
transition: transform 0.3s ease;
color: #7ab8f5;
}
.faq-btn[aria-expanded="true"] .faq-arrow {
transform: rotate(180deg);
}
.faq-answer {
padding: 0 20px 18px;
animation: faqOpen 0.25s ease;
}
.faq-answer[hidden] { display: none; }
.faq-answer p {
font-size: 14px;
color: #94b0cc;
line-height: 1.7;
margin: 0;
}
@keyframes faqOpen {
from { opacity: 0; transform: translateY(-6px); }
to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 1024px) {
.faq-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
.reviews-section  { padding: 56px 16px; }
.pricing-section  { padding: 56px 16px; }
.faq-section      { padding: 56px 16px; }
} .social-links-block {
margin-top: 48px;
padding-top: 40px;
border-top: 1px solid var(--border);
}
.social-links-block h3 {
font-family: 'DM Serif Display', serif;
font-size: 22px;
font-weight: 400;
color: var(--navy);
margin-bottom: 20px;
}
.social-links {
display: flex;
gap: 12px;
flex-wrap: wrap;
}
.social-link {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 20px;
border-radius: 6px;
font-size: 14px;
font-weight: 600;
text-decoration: none;
transition: transform 0.2s ease, box-shadow 0.2s ease;
color: #fff;
}
.social-link:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(0,0,0,0.2);
color: #fff;
}
.social-link svg {
width: 18px;
height: 18px;
flex-shrink: 0;
}
.social-link--instagram {
background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.social-link--facebook {
background: #1877f2;
}
.social-link--tiktok {
background: #010101;
} .footer-social {
display: flex;
gap: 10px;
align-items: center;
}
.footer-social-link {
width: 34px;
height: 34px;
border-radius: 6px;
background: rgba(255,255,255,0.08);
border: 1px solid rgba(255,255,255,0.12);
display: flex;
align-items: center;
justify-content: center;
color: #7a9cc4;
transition: background 0.2s ease, color 0.2s ease;
text-decoration: none;
}
.footer-social-link:hover {
background: rgba(255,255,255,0.16);
color: #fff;
}
.footer-social-link svg {
width: 16px;
height: 16px;
}
@media (max-width: 768px) {
.social-links { flex-direction: column; }
.social-link  { justify-content: center; }
.footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
} .about-photo-wrap {
margin: 28px 0;
border-radius: 8px;
overflow: hidden;
border: 1px solid var(--border);
}
.about-photo {
width: 100%;
height: 240px;
object-fit: cover;
display: block;
}
.about-lab-svg {
background: linear-gradient(135deg, #0d2240 0%, #152d52 100%);
border-radius: 8px;
padding: 24px 16px 16px;
margin: 28px 0;
border: 1px solid rgba(122,184,245,0.15);
}
.about-lab-svg svg {
width: 100%;
height: auto;
display: block;
} .stats-diagram {
background: linear-gradient(135deg, #0b1f3a 0%, #0f2540 100%);
border-radius: 10px;
padding: 24px 20px 16px;
margin-top: 50px;
border: 1px solid rgba(122,184,245,0.1);
overflow-x: auto;
}
@media (max-width: 480px){
.stats-diagram {
display: none;
}
}
.process-svg {
width: 100%;
min-width: 500px;
height: auto;
display: block;
}
@media (max-width: 768px) {
.stats-diagram { padding: 16px 12px 12px; }
.process-svg   { min-width: 420px; }
} .about-photo-wrap {
margin: 28px 0;
border-radius: 8px;
overflow: hidden;
border: 1px solid var(--border);
}
.about-photo {
width: 100%;
height: 240px;
object-fit: cover;
display: block;
}
.about-lab-svg {
background: linear-gradient(135deg, #0d2240 0%, #152d52 100%);
border-radius: 8px;
padding: 24px 16px 16px;
margin: 28px 0;
border: 1px solid rgba(122,184,245,0.15);
}
.about-lab-svg svg {
width: 100%;
height: auto;
display: block;
} .stats-diagram {
background: linear-gradient(135deg, #0b1f3a 0%, #0f2540 100%);
border-radius: 10px;
padding: 24px 20px 16px;
border: 1px solid rgba(122,184,245,0.1);
overflow-x: auto;
}
.process-svg {
width: 100%;
min-width: 500px;
height: auto;
display: block;
} .about-photo-wrap {
margin: 28px 0;
border-radius: 8px;
overflow: hidden;
border: 1px solid var(--border);
}
.about-photo {
width: 100%;
height: 240px;
object-fit: cover;
display: block;
}
.about-lab-svg {
background: linear-gradient(135deg, #0d2240 0%, #152d52 100%);
border-radius: 8px;
padding: 24px 16px 16px;
margin: 28px 0;
border: 1px solid rgba(122,184,245,0.15);
}
.about-lab-svg svg {
width: 100%;
height: auto;
display: block;
}
@media (max-width: 768px) {
.stats-diagram { padding: 16px 12px 12px; }
.process-svg   { min-width: 420px; }
}
.avatar img {
width: 90px;
height: 90px;
border-radius: 50%;
object-fit: cover;
display: block;
}
.avatar span {
width: 60px;
height: 60px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 13px;
font-weight: 700;
color: #fff;
}