:root { --primary: #3580C0;
--primary-dark: #1B3A5C;
--primary-light: #5A9BD5;
--primary-pale: #A8CDE8;
--accent: #7AB83D;
--accent-dark: #5A8F1E;
--accent-light: #9AD05E;
--accent-pale: #C5E89E; --dark: #1B3A5C;
--text: #2D3748;
--text-light: #637389;
--white: #FFFFFF;
--light-bg: #F0F6FB;
--light-bg2: #F4FAF0;
--light-bg-green: #F2F9EC;
--border: #E2EAF2; --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
--gradient-blue: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
--gradient-green: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
--gradient-hero: linear-gradient(165deg, #0F2847 0%, #1B3A5C 30%, #2A5F8F 60%, #3580C0 100%); --shadow: 0 4px 24px rgba(27, 58, 92, 0.10);
--shadow-hover: 0 12px 40px rgba(27, 58, 92, 0.18);
--shadow-card: 0 2px 16px rgba(27, 58, 92, 0.06);
--shadow-green: 0 4px 24px rgba(122, 184, 61, 0.25);
--shadow-blue: 0 4px 24px rgba(53, 128, 192, 0.25); --radius: 16px;
--radius-sm: 10px;
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
--font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
} *, *::before, *::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
font-size: 16px;
}
body {
font-family: var(--font);
color: var(--text);
line-height: 1.7;
background: var(--white);
overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 {
font-weight: 700;
line-height: 1.3;
color: var(--dark);
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
} .btn {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 16px 36px;
border-radius: 50px;
font-weight: 600;
font-size: 1rem;
cursor: pointer;
transition: var(--transition);
border: none;
font-family: var(--font);
position: relative;
overflow: hidden;
}
.btn-primary {
background: var(--accent);
color: var(--white);
box-shadow: var(--shadow-green);
}
.btn-primary:hover {
background: var(--accent-dark);
transform: translateY(-3px);
box-shadow: 0 8px 30px rgba(122, 184, 61, 0.4);
}
.btn-blue {
background: var(--gradient-blue);
color: var(--white);
box-shadow: var(--shadow-blue);
}
.btn-blue:hover {
transform: translateY(-3px);
box-shadow: 0 8px 30px rgba(53, 128, 192, 0.4);
}
.btn-outline {
background: transparent;
color: var(--white);
border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
background: var(--white);
color: var(--primary-dark);
border-color: var(--white);
}
.btn-white {
background: var(--white);
color: var(--primary-dark);
box-shadow: var(--shadow);
}
.btn-white:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-hover);
} .section-title {
text-align: center;
margin-bottom: 40px;
}
.section-title .label {
display: inline-block;
padding: 6px 20px;
border-radius: 50px;
font-weight: 600;
font-size: 0.85rem;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 16px;
}
.section-title .label-blue {
background: var(--light-bg);
color: var(--primary);
}
.section-title .label-green {
background: var(--light-bg-green);
color: var(--accent-dark);
}
.section-title h2 {
font-size: 2.5rem;
margin-bottom: 16px;
color: var(--primary-dark);
}
.section-title h2 em {
font-style: normal;
color: var(--accent);
}
.section-title p {
font-size: 1.1rem;
color: var(--text-light);
max-width: 640px;
margin: 0 auto;
} .site-header {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
background: rgba(255,255,255,0.95);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(27,58,92,0.06);
transition: var(--transition);
}
.site-header.scrolled {
box-shadow: 0 2px 30px rgba(27,58,92,0.08);
}
.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
height: 60px;
} .logo {
display: flex;
align-items: center;
gap: 12px;
font-weight: 800;
font-size: 1.4rem;
}
.logo-img {
height: 50px;
width: auto;
}
.logo-text {
display: flex;
align-items: baseline;
gap: 0;
}
.logo-text .blue {
color: var(--primary-dark);
font-weight: 800;
}
.logo-text .green {
color: var(--accent);
font-weight: 800;
} .main-nav {
display: flex;
gap: 6px;
}
.main-nav a {
padding: 8px 18px;
border-radius: 50px;
font-weight: 500;
font-size: 0.92rem;
color: var(--text);
transition: var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
background: var(--light-bg);
color: var(--primary);
}
.header-contacts {
display: flex;
align-items: center;
gap: 20px;
}
.header-phone {
display: flex;
align-items: center;
gap: 10px;
font-weight: 700;
font-size: 1.05rem;
color: var(--primary-dark);
}
.header-phone-icon {
width: 38px;
height: 38px;
background: var(--light-bg-green);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.85rem;
color: var(--accent);
}
.header-cta {
padding: 12px 24px;
font-size: 0.9rem;
}
.mobile-toggle {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
padding: 5px;
background: none;
border: none;
}
.mobile-toggle span {
width: 28px;
height: 3px;
background: var(--primary-dark);
border-radius: 3px;
transition: var(--transition);
} .hero {
min-height: 90vh;
display: flex;
align-items: center;
position: relative;
background: var(--gradient-hero);
overflow: hidden;
padding-top: 90px;
}
.hero::before {
content: '';
position: absolute;
top: -40%;
right: -15%;
width: 70%;
height: 180%;
background: radial-gradient(ellipse, rgba(122,184,61,0.08) 0%, transparent 70%);
animation: heroGlow 8s ease-in-out infinite alternate;
}
.hero::after {
content: '';
position: absolute;
bottom: -20%;
left: -10%;
width: 50%;
height: 100%;
background: radial-gradient(ellipse, rgba(53,128,192,0.1) 0%, transparent 70%);
animation: heroGlow 10s ease-in-out infinite alternate-reverse;
}
@keyframes heroGlow {
0% { transform: translate(0, 0) scale(1); }
100% { transform: translate(-3%, 3%) scale(1.05); }
}
.hero .container {
position: relative;
z-index: 2;
}
.hero-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}
.hero-content { color: var(--white); }
.hero-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(122,184,61,0.15);
border: 1px solid rgba(122,184,61,0.25);
padding: 8px 20px;
border-radius: 50px;
font-size: 0.9rem;
margin-bottom: 28px;
backdrop-filter: blur(10px);
color: var(--accent-pale);
}
.hero-badge i { color: var(--accent-light); }
.hero h1 {
font-size: 3.2rem;
color: var(--white);
margin-bottom: 20px;
line-height: 1.15;
}
.hero h1 em {
font-style: normal;
color: var(--accent-light);
}
.hero-desc {
font-size: 1.15rem;
color: rgba(255,255,255,0.75);
margin-bottom: 36px;
max-width: 520px;
line-height: 1.8;
}
.hero-btns {
display: flex;
gap: 16px;
margin-bottom: 50px;
flex-wrap: wrap;
}
.hero-stats {
display: flex;
gap: 40px;
}
.hero-stat { text-align: left; }
.hero-stat .number {
font-size: 2.2rem;
font-weight: 800;
color: var(--accent-light);
display: block;
}
.hero-stat .text {
font-size: 0.85rem;
color: rgba(255,255,255,0.6);
max-width: 120px;
}
.hero-visual {
position: relative;
display: flex;
align-items: center;
justify-content: center;
} .hero-card {
background: rgba(255,255,255,0.06);
border: 1px solid rgba(255,255,255,0.1);
backdrop-filter: blur(24px);
border-radius: 24px;
padding: 40px;
width: 100%;
max-width: 460px;
}
.hero-card h3 {
color: var(--white);
font-size: 1.4rem;
margin-bottom: 8px;
}
.hero-card > p {
color: rgba(255,255,255,0.55);
font-size: 0.95rem;
margin-bottom: 28px;
}
.hero-form .form-group { margin-bottom: 14px; }
.hero-form input,
.hero-form textarea {
width: 100%;
padding: 14px 20px;
border-radius: var(--radius-sm);
border: 1px solid rgba(255,255,255,0.12);
background: rgba(255,255,255,0.07);
color: var(--white);
font-size: 0.95rem;
font-family: var(--font);
transition: var(--transition);
outline: none;
}
.hero-form input::placeholder,
.hero-form textarea::placeholder {
color: rgba(255,255,255,0.35);
}
.hero-form input:focus,
.hero-form textarea:focus {
border-color: var(--accent);
background: rgba(255,255,255,0.1);
}
.hero-form textarea {
resize: vertical;
min-height: 80px;
}
.hero-form .btn {
width: 100%;
justify-content: center;
padding: 16px;
font-size: 1.05rem;
} .bubble {
position: absolute;
border-radius: 50%;
animation: float 6s ease-in-out infinite;
z-index: 1;
}
.bubble:nth-child(1) {
width: 120px; height: 120px;
background: rgba(122,184,61,0.06);
border: 1px solid rgba(122,184,61,0.08);
top: 15%; left: 5%;
animation-duration: 7s;
}
.bubble:nth-child(2) {
width: 80px; height: 80px;
background: rgba(53,128,192,0.06);
border: 1px solid rgba(53,128,192,0.08);
top: 60%; left: 10%;
animation-delay: 1s;
animation-duration: 5s;
}
.bubble:nth-child(3) {
width: 60px; height: 60px;
background: rgba(122,184,61,0.05);
border: 1px solid rgba(122,184,61,0.07);
top: 30%; right: 5%;
animation-delay: 2s;
animation-duration: 8s;
}
.bubble:nth-child(4) {
width: 40px; height: 40px;
background: rgba(53,128,192,0.06);
border: 1px solid rgba(53,128,192,0.08);
bottom: 20%; right: 15%;
animation-delay: 3s;
animation-duration: 6s;
}
@keyframes float {
0%, 100% { transform: translateY(0) scale(1); }
50% { transform: translateY(-30px) scale(1.05); }
} .services {
background: #f8fafc; padding: 60px 0;
position: relative;
z-index: 1;
} .services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px;
margin-top: 50px;
} .service-card {
background: #ffffff;
border-radius: 20px; padding: 20px 20px;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); border: 1px solid rgba(0,0,0,0.03);
position: relative;
overflow: hidden;
height: 100%;
} .service-card:hover {
transform: translateY(-15px);
box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15); border-color: rgba(14, 165, 233, 0.2);
} .service-card::after {
content: '';
position: absolute;
bottom: 0; left: 0;
width: 0%;
height: 4px;
background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
transition: width 0.4s ease;
}
.service-card:hover::after {
width: 100%;
} .service-icon {
width: 70px;
height: 70px;
background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
font-size: 28px;
color: var(--primary);
margin-bottom: 25px;
transition: all 0.4s ease;
} .service-card:hover .service-icon {
background: var(--primary);
color: #ffffff;
transform: rotate(-10deg) scale(1.1);
}
.service-card h3 {
font-size: 1.25rem;
font-weight: 800;
margin-bottom: 15px;
line-height: 1.3;
}
.service-card p {
color: var(--text-light); font-size: 0.95rem;
line-height: 1.6;
} .why-us {
padding: 60px 0;
background: var(--light-bg);
position: relative;
}
.why-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
}
.why-card {
background: var(--white);
border-radius: var(--radius);
padding: 36px 24px;
text-align: center;
transition: var(--transition);
box-shadow: var(--shadow-card);
border: 1px solid transparent;
}
.why-card:hover {
transform: translateY(-6px);
box-shadow: var(--shadow-hover);
border-color: rgba(122,184,61,0.15);
}
.why-icon {
width: 72px;
height: 72px;
margin: 0 auto 20px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.6rem;
color: var(--white);
}
.why-card:nth-child(1) .why-icon,
.why-card:nth-child(3) .why-icon { background: var(--gradient-blue); }
.why-card:nth-child(2) .why-icon,
.why-card:nth-child(4) .why-icon { background: var(--gradient-blue); }
.why-card h3 {
font-size: 1.05rem;
margin-bottom: 10px;
color: var(--primary-dark);
}
.why-card p {
font-size: 0.9rem;
color: var(--text-light);
} .steps {
padding: 80px 0;
background: var(--light-bg);
} .steps-type {
display: flex;
justify-content: center;
gap: 12px;
margin-bottom: 20px;
}
.steps-type-btn {
display: flex;
align-items: center;
gap: 10px;
padding: 14px 28px;
border: 2px solid var(--border);
border-radius: 50px;
background: var(--white);
font-family: var(--font);
font-size: 0.92rem;
font-weight: 600;
color: var(--text);
cursor: pointer;
transition: var(--transition);
}
.steps-type-btn i {
font-size: 1rem;
color: var(--text-light);
transition: var(--transition);
}
.steps-type-btn:hover { border-color: var(--primary-light); color: var(--primary); }
.steps-type-btn.active { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); }
.steps-type-btn.active i { color: var(--accent-light); }
.steps-well {
display: flex;
justify-content: center;
margin-bottom: 40px;
}
.steps-well-btn {
padding: 10px 24px;
border: 2px solid var(--border);
background: var(--white);
font-family: var(--font);
font-size: 0.88rem;
font-weight: 600;
color: var(--text-light);
cursor: pointer;
transition: var(--transition);
}
.steps-well-btn:first-child { border-radius: 10px 0 0 10px; border-right: 1px solid var(--border); }
.steps-well-btn:last-child { border-radius: 0 10px 10px 0; border-left: 1px solid var(--border); }
.steps-well-btn:hover { color: var(--primary); }
.steps-well-btn.active { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); } .steps-panel { display: none; }
.steps-panel.active { display: block; } .steps-layout {
display: grid;
grid-template-columns: 1fr 360px;
gap: 48px;
align-items: start;
} .steps-timeline {
position: relative;
}
.step-item {
display: flex;
gap: 20px;
position: relative;
padding-bottom: 24px;
}
.step-item:last-child { padding-bottom: 0; } .step-marker {
display: flex;
flex-direction: column;
align-items: center;
flex-shrink: 0;
width: 48px;
}
.step-marker-num {
width: 48px;
height: 48px;
border-radius: 50%;
background: var(--white);
border: 3px solid var(--primary);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.1rem;
font-weight: 800;
color: var(--primary);
flex-shrink: 0;
position: relative;
z-index: 2;
box-shadow: 0 4px 12px rgba(53, 128, 192, 0.15);
}
.step-marker-num--done {
background: var(--accent);
border-color: var(--accent);
color: var(--white);
font-size: 1rem;
box-shadow: 0 4px 12px rgba(122, 184, 61, 0.25);
}
.step-marker-line {
width: 3px;
flex: 1;
background: linear-gradient(180deg, var(--primary), rgba(53, 128, 192, 0.15));
margin-top: 8px;
border-radius: 3px;
}
.step-item:last-child .step-marker-line { display: none; } .step-card {
flex: 1;
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 22px 26px;
transition: var(--transition);
}
.step-card:hover {
box-shadow: 0 6px 24px rgba(27, 58, 92, 0.08);
border-color: rgba(53, 128, 192, 0.2);
}
.step-card--final {
background: linear-gradient(135deg, #f0faf0, #e8f8e0);
border-color: rgba(122, 184, 61, 0.2);
}
.step-card--final:hover {
border-color: rgba(122, 184, 61, 0.4);
}
.step-card-head {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 12px;
}
.step-card-head i {
font-size: 1.1rem;
color: var(--primary);
width: 20px;
text-align: center;
}
.step-item--final .step-card-head i { color: var(--accent-dark); }
.step-card-head h4 {
font-size: 1rem;
font-weight: 700;
color: var(--primary-dark);
margin: 0;
line-height: 1.4;
}
.step-item--final .step-card-head h4 { color: var(--accent-dark); }
.step-card ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 6px;
}
.step-card ul li {
position: relative;
padding-left: 18px;
font-size: 0.88rem;
color: var(--text);
line-height: 1.6;
}
.step-card ul li::before {
content: '';
position: absolute;
left: 0;
top: 9px;
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--primary-light);
}
.step-item--final .step-card ul li::before { background: var(--accent); } .steps-result {
position: sticky;
top: 100px;
}
.steps-result-card {
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 32px 28px;
box-shadow: 0 8px 32px rgba(27, 58, 92, 0.06);
}
.steps-result-icon {
width: 64px;
height: 64px;
border-radius: 18px;
background: var(--gradient-blue);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
color: var(--white);
margin-bottom: 20px;
}
.steps-result-card h3 {
font-size: 1.2rem;
font-weight: 700;
color: var(--primary-dark);
margin-bottom: 20px;
}
.steps-result-list {
display: flex;
flex-direction: column;
gap: 12px;
margin-bottom: 24px;
}
.steps-result-item {
display: flex;
align-items: flex-start;
gap: 10px;
}
.steps-result-item i {
color: var(--accent);
font-size: 0.9rem;
margin-top: 3px;
flex-shrink: 0;
}
.steps-result-item span {
font-size: 0.9rem;
color: var(--text);
line-height: 1.5;
}
.steps-result-time {
display: flex;
align-items: center;
gap: 14px;
padding: 16px 18px;
background: var(--light-bg);
border-radius: var(--radius-sm);
margin-bottom: 20px;
}
.steps-result-time > i {
font-size: 1.2rem;
color: var(--primary);
}
.steps-result-time-val {
display: block;
font-size: 1.1rem;
font-weight: 700;
color: var(--primary-dark);
}
.steps-result-time-label {
display: block;
font-size: 0.78rem;
color: var(--text-light);
} .stats {
padding: 80px 0;
background: var(--gradient-hero);
position: relative;
overflow: hidden;
}
.stats::before {
content: '';
position: absolute;
width: 400px;
height: 400px;
border-radius: 50%;
background: rgba(122,184,61,0.05);
top: -100px;
right: -100px;
}
.stats::after {
content: '';
position: absolute;
width: 300px;
height: 300px;
border-radius: 50%;
background: rgba(53,128,192,0.05);
bottom: -80px;
left: -80px;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 30px;
position: relative;
z-index: 2;
}
.stat-item {
text-align: center;
color: var(--white);
}
.stat-number {
font-size: 3rem;
font-weight: 800;
margin-bottom: 8px;
}
.stat-item:nth-child(odd) .stat-number { color: var(--accent-light); }
.stat-item:nth-child(even) .stat-number { color: var(--primary-pale); }
.stat-text {
font-size: 1.2rem;
color: rgba(255,255,255,0.65);
} .accent-strip {
height: 6px;
background: var(--gradient);
} .cta {
padding: 60px 0;
background: var(--light-bg);
}
.cta-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: start;
}
.cta-info h2 {
font-size: 2.2rem;
margin-bottom: 20px;
color: var(--primary-dark);
}
.cta-info h2 em {
font-style: normal;
color: var(--accent);
}
.cta-info > p {
font-size: 1.05rem;
color: var(--text-light);
margin-bottom: 36px;
line-height: 1.8;
}
.contact-details {
display: flex;
flex-direction: column;
gap: 20px;
}
.contact-item {
display: flex;
align-items: flex-start;
gap: 16px;
}
.contact-item-icon {
width: 50px;
height: 50px;
flex-shrink: 0;
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.1rem;
color: var(--white);
}
.contact-item:nth-child(odd) .contact-item-icon { background: var(--gradient-green); }
.contact-item:nth-child(even) .contact-item-icon { background: var(--gradient-green); }
.contact-item h4 {
font-size: 0.85rem;
text-transform: uppercase;
letter-spacing: 0.5px;
color: var(--text-light);
margin-bottom: 4px;
font-weight: 600;
}
.contact-item p,
.contact-item a {
font-size: 1.15rem;
font-weight: 600;
color: var(--dark);
}
.contact-item a:hover { color: var(--primary); } .cta-form-wrap {
background: var(--white);
border-radius: var(--radius);
padding: 44px;
box-shadow: var(--shadow);
}
.cta-form-wrap h3 {
font-size: 1.4rem;
margin-bottom: 6px;
color: var(--primary-dark);
}
.cta-form-wrap > p {
color: var(--text-light);
font-size: 0.95rem;
margin-bottom: 28px;
}
.cta-form .form-group { margin-bottom: 16px; }
.cta-form label {
display: block;
font-weight: 600;
font-size: 0.87rem;
margin-bottom: 6px;
color: var(--text);
}
.cta-form input,
.cta-form textarea {
width: 100%;
padding: 14px 18px;
border: 2px solid var(--border);
border-radius: var(--radius-sm);
font-size: 0.95rem;
font-family: var(--font);
transition: var(--transition);
outline: none;
background: var(--white);
}
.cta-form input:focus,
.cta-form textarea:focus {
border-color: var(--accent);
box-shadow: 0 0 0 4px rgba(122,184,61,0.12);
}
.cta-form textarea {
resize: vertical;
min-height: 100px;
}
.cta-form .btn {
width: 100%;
justify-content: center;
margin-top: 4px;
}
.form-success {
display: none;
background: #d4edda;
color: #155724;
padding: 16px;
border-radius: var(--radius-sm);
text-align: center;
margin-top: 12px;
font-weight: 600;
} .site-footer {
background: var(--primary-dark);
color: rgba(255,255,255,0.6);
padding: 30px 0 10px;
}
.footer-grid {
display: grid;
grid-template-columns: 1.5fr 1fr 1fr;
gap: 40px;
margin-bottom: 40px;
}
.footer-brand .logo {
margin-bottom: 16px;
}
.footer-brand .logo-text .blue { color: var(--white); }
.footer-brand .logo-text .green { color: var(--accent-light); }
.footer-brand .logo-img {
filter: brightness(0) invert(1);
}
.footer-brand p {
font-size: 0.92rem;
line-height: 1.8;
max-width: 300px;
}
.footer-col h4 {
color: var(--white);
font-size: 1rem;
margin-bottom: 20px;
position: relative;
padding-bottom: 12px;
}
.footer-col h4::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 40px;
height: 3px;
background: var(--accent);
border-radius: 3px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
font-size: 0.92rem;
transition: var(--transition);
}
.footer-links a:hover {
color: var(--accent-light);
padding-left: 6px;
}
.footer-contact-item {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 12px;
font-size: 0.92rem;
}
.footer-contact-item i {
color: var(--accent);
width: 20px;
text-align: center;
}
.footer-contact-item a:hover { color: var(--accent-light); }
.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.08);
padding-top: 10px;
display: flex;
justify-content: space-between;
align-items: center;
font-size: 0.85rem;
} .scroll-top {
position: fixed;
bottom: 30px;
right: 30px;
width: 50px;
height: 50px;
background: var(--gradient);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 1.2rem;
cursor: pointer;
opacity: 0;
visibility: hidden;
transform: translateY(20px);
transition: var(--transition);
box-shadow: var(--shadow-green);
border: none;
z-index: 999;
}
.scroll-top.visible {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.scroll-top:hover { transform: translateY(-4px); } .fade-up {
opacity: 0;
transform: translateY(40px);
transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-up.visible {
opacity: 1;
transform: translateY(0);
} .stagger .fade-up:nth-child(1),
.stagger .fade-up:nth-child(2),
.stagger .fade-up:nth-child(3),
.stagger .fade-up:nth-child(4) {
transition-delay: 0s;
}
.stagger .fade-up:nth-child(5),
.stagger .fade-up:nth-child(6),
.stagger .fade-up:nth-child(7),
.stagger .fade-up:nth-child(8) {
transition-delay: 0.15s;
}
.stagger .fade-up:nth-child(9),
.stagger .fade-up:nth-child(10),
.stagger .fade-up:nth-child(11),
.stagger .fade-up:nth-child(12) {
transition-delay: 0.3s;
}
.stagger .fade-up:nth-child(13),
.stagger .fade-up:nth-child(14),
.stagger .fade-up:nth-child(15),
.stagger .fade-up:nth-child(16) {
transition-delay: 0.45s;
}
.stagger .fade-up:nth-child(17),
.stagger .fade-up:nth-child(18),
.stagger .fade-up:nth-child(19),
.stagger .fade-up:nth-child(20) {
transition-delay: 0.6s;
} .mobile-nav-overlay {
display: none;
position: fixed;
inset: 0;
background: rgba(27,58,92,0.5);
z-index: 1001;
opacity: 0;
transition: opacity 0.3s;
}
.mobile-nav-overlay.active { opacity: 1; }
.mobile-nav-panel {
position: fixed;
top: 0;
right: -320px;
width: 320px;
height: 100%;
background: var(--white);
z-index: 1002;
padding: 80px 30px 30px;
transition: right 0.3s ease;
overflow-y: auto;
box-shadow: -10px 0 40px rgba(27,58,92,0.15);
}
.mobile-nav-panel.active { right: 0; }
.mobile-nav-close {
position: absolute;
top: 20px;
right: 20px;
width: 40px;
height: 40px;
background: var(--light-bg);
border: none;
border-radius: 50%;
font-size: 1.2rem;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
color: var(--text);
transition: var(--transition);
}
.mobile-nav-close:hover {
background: #fde8e8;
color: #c53030;
}
.mobile-nav-panel a {
display: block;
padding: 14px 0;
font-weight: 600;
font-size: 1.05rem;
color: var(--text);
border-bottom: 1px solid var(--border);
transition: var(--transition);
}
.mobile-nav-panel a:hover {
color: var(--primary);
padding-left: 8px;
}
.mobile-nav-phone {
margin-top: 30px;
text-align: center;
}
.mobile-nav-phone a {
border: none;
color: var(--primary-dark);
font-size: 1.2rem;
font-weight: 700;
}  .contacts-hero {
position: relative;
padding: 80px 0 20px;
background: var(--gradient-hero);
overflow: hidden;
}
.contacts-hero-bg {
position: absolute;
inset: 0;
background:
radial-gradient(ellipse at 80% 20%, rgba(122,184,61,0.08) 0%, transparent 50%),
radial-gradient(ellipse at 20% 80%, rgba(53,128,192,0.08) 0%, transparent 50%);
}
.contacts-hero-content {
position: relative;
z-index: 2;
max-width: 640px;
}
.breadcrumbs {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 24px;
font-size: 0.9rem;
color: rgba(255,255,255,0.5);
}
.breadcrumbs a {
color: rgba(255,255,255,0.6);
transition: var(--transition);
}
.breadcrumbs a:hover { color: var(--accent-light); }
.breadcrumbs i { font-size: 0.7rem; }
.contacts-hero h1 {
font-size: 2.8rem;
color: var(--white);
margin-bottom: 16px;
}
.contacts-hero h1 em {
font-style: normal;
color: var(--accent-light);
}
.contacts-hero p {
font-size: 1.1rem;
color: rgba(255,255,255,0.65);
line-height: 1.8;
} .ct-section {
padding: 60px 0;
background: var(--white);
}
.ct-grid {
display: grid;
grid-template-columns: 420px 1fr;
gap: 48px;
align-items: start;
} .ct-info {
padding: 8px 0;
}
.ct-block { padding: 0; }
.ct-block-label {
display: flex;
align-items: center;
gap: 10px;
font-size: 0.9rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1.5px;
color: var(--text-light);
margin-bottom: 14px;
}
.ct-dot {
width: 8px;
height: 8px;
border-radius: 50%;
flex-shrink: 0;
}
.ct-dot--blue  { background: var(--accent); }
.ct-dot--green { background: var(--accent); }
.ct-divider {
height: 1px;
background: var(--border);
margin: 15px 0;
} .ct-phone {
display: block;
font-size: 1.65rem;
font-weight: 800;
color: var(--primary-dark);
letter-spacing: -0.5px;
transition: var(--transition);
line-height: 1.4;
}
.ct-phone:hover { color: var(--primary); }
.ct-phone--secondary {
font-size: 1.6rem;
font-weight: 600;
color: var(--text);
margin-top: 4px;
}
.ct-phone--secondary:hover { color: var(--accent); } .ct-email {
font-size: 1.15rem;
font-weight: 600;
color: var(--primary);
border-bottom: 2px solid rgba(53,128,192,0.2);
padding-bottom: 2px;
transition: var(--transition);
}
.ct-email:hover {
color: var(--accent);
border-color: var(--accent);
} .ct-address {
font-size: 1.05rem;
color: var(--text);
line-height: 1.75;
font-weight: 500;
} .ct-schedule { display: flex; flex-direction: column; gap: 10px; }
.ct-schedule-row {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 0.95rem;
color: var(--text);
font-weight: 500;
}
.ct-schedule-time {
font-weight: 700;
color: var(--primary-dark);
}
.ct-schedule-row--off { color: var(--text-light); }
.ct-schedule-row--off .ct-schedule-time {
color: var(--text-light);
font-weight: 500;
} .ct-req {
font-size: 1.05rem;
font-weight: 600;
color: var(--primary-dark);
margin-bottom: 6px;
}
.ct-req-note {
font-size: 0.85rem;
color: var(--text-light);
} .ct-map {
top: 100px;
}
.ct-map-wrap {
width: 100%;
height: 560px;
border-radius: var(--radius);
overflow: hidden;
border: 1px solid var(--border);
position: relative;
} .ct-map-wrap iframe {
width: 100%;
height: 100%;
display: block;
filter: grayscale(100%) contrast(1.05);
transition: filter 0.5s ease;
}
.ct-map-wrap:hover iframe {
filter: grayscale(0%) contrast(1);
}
.ct-map-badge {
display: inline-flex;
align-items: center;
gap: 10px;
margin-top: 16px;
padding: 10px 20px;
background: var(--light-bg);
border: 1px solid var(--border);
border-radius: 50px;
font-size: 1rem;
font-weight: 600;
color: var(--text);
}
.ct-map-badge i {
color: var(--primary);
font-size: 0.95rem;
} .ct-form-section {
padding: 60px 0 80px;
background: var(--light-bg);
}
.ct-form-top {
text-align: center;
margin-bottom: 48px;
}
.ct-form-top h2 {
font-size: 2.2rem;
color: var(--primary-dark);
margin-bottom: 12px;
}
.ct-form-top h2 em {
font-style: normal;
color: var(--accent);
}
.ct-form-top p {
font-size: 1.05rem;
color: var(--text-light);
}
.ct-form-card {
background: var(--white);
border-radius: var(--radius);
padding: 48px;
box-shadow: var(--shadow);
border-image: var(--gradient) 1;
max-width: 1300px;
margin: 0 auto;
}
.ct-form-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
margin-bottom: 20px;
}
.ct-form-group { display: flex; flex-direction: column; }
.ct-form-group--full { margin-bottom: 24px; }
.ct-form-group label {
font-weight: 600;
font-size: 0.85rem;
margin-bottom: 7px;
color: var(--text);
letter-spacing: 0.2px;
}
.ct-form-group input,
.ct-form-group textarea,
.ct-form-group select {
width: 100%;
padding: 14px 18px;
border: 2px solid var(--border);
border-radius: var(--radius-sm);
font-size: 0.95rem;
font-family: var(--font);
transition: var(--transition);
outline: none;
background: var(--white);
color: var(--text);
-webkit-appearance: none;
appearance: none;
}
.ct-form-group select {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23637389' d='M1.4.3L6 4.9 10.6.3 12 1.7l-6 6-6-6z'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 16px center;
padding-right: 44px;
cursor: pointer;
}
.ct-form-group input:focus,
.ct-form-group textarea:focus,
.ct-form-group select:focus {
border-color: var(--accent);
box-shadow: 0 0 0 4px rgba(122,184,61,0.1);
}
.ct-form-group textarea {
resize: vertical;
min-height: 130px;
}
.ct-form-bottom {
display: flex;
align-items: center;
gap: 24px;
flex-wrap: wrap;
}
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }
.ct-form-note {
font-size: 0.8rem;
color: var(--text-light);
display: flex;
align-items: center;
gap: 6px;
}
.ct-form-note i { color: var(--accent); }  .pj-map-section {
background: var(--white);
padding: 0;
margin-top: -1px;
}
.pj-map-container {
width: 100%;
height: 480px;
background: var(--light-bg);
} .pj-list-section {
padding: 30px 0 60px;
background: var(--white);
} .pj-toolbar {
display: flex;
justify-content: space-between;
align-items: center;
gap: 24px;
margin-bottom: 32px;
flex-wrap: wrap;
padding-bottom: 24px;
border-bottom: 1px solid var(--border);
}
.pj-list-title {
font-size: 1.5rem;
color: var(--primary-dark);
display: flex;
align-items: center;
gap: 14px;
}
.pj-list-count {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 36px;
height: 36px;
padding: 0 12px;
background: var(--gradient);
color: var(--white);
border-radius: 50px;
font-size: 0.85rem;
font-weight: 700;
}
.pj-toolbar-right {
display: flex;
align-items: center;
gap: 12px;
flex-wrap: wrap;
}
.pj-filters {
display: flex;
flex-wrap: wrap;
gap: 6px;
}
.pj-filter {
padding: 8px 18px;
border: 2px solid var(--border);
border-radius: 50px;
background: var(--white);
font-family: var(--font);
font-size: 0.85rem;
font-weight: 600;
color: var(--text);
cursor: pointer;
transition: var(--transition);
}
.pj-filter:hover {
border-color: var(--primary-light);
color: var(--primary);
}
.pj-filter.active {
background: var(--primary-dark);
border-color: var(--primary-dark);
color: var(--white);
}
.pj-search {
position: relative;
min-width: 220px;
}
.pj-search i {
position: absolute;
left: 14px;
top: 50%;
transform: translateY(-50%);
color: var(--text-light);
font-size: 0.85rem;
}
.pj-search input {
width: 100%;
padding: 10px 14px 10px 40px;
border: 2px solid var(--border);
border-radius: 50px;
font-family: var(--font);
font-size: 0.88rem;
background: var(--white);
outline: none;
transition: var(--transition);
color: var(--text);
}
.pj-search input:focus {
border-color: var(--accent);
box-shadow: 0 0 0 4px rgba(122,184,61,0.1);
} .pj-accordion {
display: flex;
flex-direction: column;
gap: 0;
} .pj-item {
border-bottom: 1px solid var(--border);
}
.pj-item:first-child {
border-top: 1px solid var(--border);
}
.pj-item.hidden { display: none !important; } .pj-item-header {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
padding: 20px 8px;
background: none;
border: none;
cursor: pointer;
font-family: var(--font);
text-align: left;
transition: var(--transition);
}
.pj-item-header:hover {
background: var(--light-bg);
}
.pj-item.open .pj-item-header {
background: var(--light-bg);
}
.pj-item-left {
display: flex;
align-items: center;
gap: 16px;
flex: 1;
min-width: 0;
}
.pj-item-num {
flex-shrink: 0;
width: 36px;
height: 36px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 10px;
font-size: 0.8rem;
font-weight: 800;
color: var(--primary);
background: var(--light-bg);
transition: var(--transition);
}
.pj-item.open .pj-item-num,
.pj-item-header:hover .pj-item-num {
background: var(--gradient-blue);
color: var(--white);
}
.pj-item-title {
font-size: 1rem;
font-weight: 600;
color: var(--primary-dark);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.pj-item-badge {
flex-shrink: 0;
padding: 3px 10px;
border-radius: 50px;
font-size: 0.7rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.3px;
background: var(--light-bg-green);
color: var(--accent-dark);
}
.pj-item-right {
display: flex;
align-items: center;
gap: 16px;
flex-shrink: 0;
}
.pj-item-district {
font-size: 0.85rem;
color: var(--text-light);
font-weight: 500;
}
.pj-item-chevron {
width: 32px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
background: var(--light-bg);
color: var(--text-light);
font-size: 0.75rem;
transition: var(--transition);
}
.pj-item.open .pj-item-chevron {
background: var(--primary-dark);
color: var(--white);
transform: rotate(180deg);
} .pj-item-body {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.pj-item.open .pj-item-body {
max-height: 400px;
}
.pj-item-body-inner {
padding: 20px 10px 10px 10px;
}
.pj-detail-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 16px;
margin-bottom: 16px;
}
.pj-detail--wide {
grid-column: 1 / -1;
}
.pj-detail-label {
display: block;
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
color: var(--text-light);
margin-bottom: 4px;
}
.pj-detail-label i {
margin-right: 4px;
font-size: 0.7rem;
}
.pj-detail-value {
display: block;
font-size: 0.95rem;
font-weight: 500;
color: var(--primary-dark);
line-height: 1.5;
}
.pj-detail-map-link {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 18px;
border-radius: 50px;
border: 1px solid var(--border);
font-size: 0.82rem;
font-weight: 600;
color: var(--primary);
transition: var(--transition);
}
.pj-detail-map-link:hover {
background: var(--primary);
color: var(--white);
border-color: var(--primary);
} .pj-empty {
text-align: center;
padding: 80px 20px;
}
.pj-empty > i {
font-size: 3rem;
color: var(--border);
margin-bottom: 20px;
}
.pj-empty h3 {
font-size: 1.4rem;
margin-bottom: 10px;
color: var(--primary-dark);
}
.pj-empty p {
color: var(--text-light);
margin-bottom: 24px;
} .pj-cta {
padding: 60px 0;
background: var(--gradient-hero);
overflow: hidden;
position: relative;
}
.pj-cta::before {
content: '';
position: absolute;
width: 400px; height: 400px;
border-radius: 50%;
background: rgba(122,184,61,0.06);
top: -120px; right: -100px;
}
.pj-cta-inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 40px;
position: relative;
z-index: 2;
flex-wrap: wrap;
}
.pj-cta-left h2 {
font-size: 2rem;
color: var(--white);
margin-bottom: 8px;
}
.pj-cta-left p {
color: rgba(255,255,255,0.6);
font-size: 1.05rem;
}
.pj-cta-right {
display: flex;
gap: 16px;
flex-wrap: wrap;
} .error-section {
padding: 80px 0 100px;
background: var(--white);
}
.error-content {
max-width: 640px;
margin: 0 auto;
text-align: center;
}
.error-code {
font-size: 8rem;
font-weight: 900;
line-height: 1;
background: var(--gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
opacity: 0.12;
margin-bottom: -30px;
position: relative;
z-index: 0;
}
.error-icon {
position: relative;
z-index: 1;
width: 80px;
height: 80px;
margin: 0 auto 28px;
background: var(--light-bg);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
color: var(--primary);
}
.error-content h2 {
font-size: 1.8rem;
color: var(--primary-dark);
margin-bottom: 14px;
}
.error-content > p {
font-size: 1.05rem;
color: var(--text-light);
line-height: 1.8;
margin-bottom: 36px;
}
.error-actions {
display: flex;
gap: 16px;
justify-content: center;
flex-wrap: wrap;
margin-bottom: 60px;
}
.error-links h3 {
font-size: 1rem;
color: var(--text-light);
font-weight: 600;
margin-bottom: 20px;
}
.error-links-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 16px;
}
.error-link {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
padding: 24px 16px;
border: 1px solid var(--border);
border-radius: var(--radius);
transition: var(--transition);
color: var(--text);
font-weight: 600;
font-size: 0.9rem;
}
.error-link i {
font-size: 1.4rem;
color: var(--primary);
transition: var(--transition);
}
.error-link:hover {
border-color: transparent;
box-shadow: var(--shadow-hover);
transform: translateY(-4px);
color: var(--primary);
}
.error-link:hover i {
color: var(--accent);
}
section.page-hero-404 {
padding-top: 60px;
} .pricing-section {
padding: 60px 0 80px;
background: var(--white);
} .pricing-notice {
display: flex;
align-items: flex-start;
gap: 16px;
padding: 20px 28px;
background: var(--light-bg);
border-left: 4px solid var(--primary);
border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
margin-bottom: 48px;
font-size: 0.95rem;
color: var(--text);
line-height: 1.7;
}
.pricing-notice > i {
color: var(--primary);
font-size: 1.2rem;
margin-top: 3px;
flex-shrink: 0;
}
.pricing-notice strong {
color: var(--primary-dark);
} .pricing-group {
margin-bottom: 48px;
}
.pricing-group:last-of-type {
margin-bottom: 0;
}
.pricing-group-header {
display: flex;
align-items: center;
gap: 16px;
margin-bottom: 20px;
flex-wrap: wrap;
}
.pricing-group-num {
flex-shrink: 0;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 12px;
font-size: 0.85rem;
font-weight: 800;
color: var(--white);
background: var(--gradient-blue);
}
.pricing-group:nth-child(even) .pricing-group-num {
background: var(--gradient-blue);
}
.pricing-group-title {
font-size: 1.35rem;
color: var(--primary-dark);
margin: 0;
}
.pricing-group-desc {
width: 100%;
font-size: 0.9rem;
color: var(--text-light);
padding-left: 56px;
margin-top: -4px;
} .pricing-table {
border: 1px solid var(--border);
border-radius: var(--radius);
overflow: hidden;
}
.pricing-row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
padding: 20px 28px;
border-bottom: 1px solid var(--border);
transition: var(--transition);
}
.pricing-row:last-child {
border-bottom: none;
}
.pricing-row:hover {
background: var(--light-bg);
}
.pricing-row-info {
flex: 1;
min-width: 0;
}
.pricing-row-title {
font-size: 1rem;
font-weight: 600;
color: var(--primary-dark);
margin-bottom: 2px;
line-height: 1.4;
}
.pricing-row-note {
display: block;
font-size: 0.82rem;
color: var(--text-light);
margin-top: 4px;
line-height: 1.5;
}
.pricing-row-price {
flex-shrink: 0;
text-align: right;
display: flex;
align-items: baseline;
gap: 6px;
flex-wrap: wrap;
justify-content: flex-end;
}
.pricing-value {
font-size: 1.25rem;
font-weight: 800;
color: var(--primary-dark);
white-space: nowrap;
}
.pricing-unit {
font-size: 0.85rem;
color: var(--text-light);
font-weight: 500;
}
.pricing-old {
font-size: 0.9rem;
color: var(--text-light);
text-decoration: line-through;
font-weight: 500;
margin-right: 4px;
} .pricing-cta {
margin-top: 48px;
}
.pricing-cta-inner {
display: flex;
align-items: center;
gap: 24px;
padding: 32px 36px;
background: var(--light-bg);
border: 1px solid var(--border);
border-radius: var(--radius);
flex-wrap: wrap;
}
.pricing-cta-icon {
width: 56px;
height: 56px;
flex-shrink: 0;
background: var(--gradient);
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.3rem;
color: var(--white);
}
.pricing-cta-text {
flex: 1;
min-width: 200px;
}
.pricing-cta-text h3 {
font-size: 1.15rem;
color: var(--primary-dark);
margin-bottom: 4px;
}
.pricing-cta-text p {
font-size: 0.9rem;
color: var(--text-light);
}
.pricing-cta-actions {
display: flex;
gap: 12px;
flex-shrink: 0;
flex-wrap: wrap;
} .seo-section {
padding: 20px 0 30px;
background: var(--light-bg);
}
.seo-content {
margin: 0 auto;
}
.seo-content h2 {
font-size: 1.6rem;
color: var(--primary-dark);
margin-bottom: 16px;
margin-top: 36px;
}
.seo-content h2:first-child {
margin-top: 0;
}
.seo-content h3 {
font-size: 1.25rem;
color: var(--primary-dark);
margin-bottom: 12px;
margin-top: 28px;
}
.seo-content p {
font-size: 1rem;
color: var(--text);
line-height: 1.85;
margin-bottom: 16px;
}
.seo-content ul,
.seo-content ol {
margin: 0 0 20px 24px;
list-style: disc;
}
.seo-content ol { list-style: decimal; }
.seo-content li {
font-size: 0.97rem;
color: var(--text);
line-height: 1.8;
margin-bottom: 6px;
}
.seo-content a {
color: var(--primary);
border-bottom: 1px solid rgba(53,128,192,0.3);
transition: var(--transition);
}
.seo-content a:hover {
color: var(--accent);
border-color: var(--accent);
}
.seo-content blockquote {
margin: 24px 0;
padding: 20px 28px;
border-left: 4px solid var(--accent);
background: var(--white);
border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
font-style: italic;
color: var(--text);
}
.seo-content img {
border-radius: var(--radius-sm);
margin: 20px 0;
}
.seo-content table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
}
.seo-content table th,
.seo-content table td {
padding: 12px 16px;
border: 1px solid var(--border);
text-align: left;
font-size: 0.93rem;
}
.seo-content table th {
background: var(--light-bg);
font-weight: 700;
color: var(--primary-dark);
} .svc-catalog {
padding: 40px 0 60px;
background: var(--white);
}
.svc-category {
margin-bottom: 56px;
}
.svc-category:last-child { margin-bottom: 0; }
.svc-category-header {
display: flex;
align-items: flex-start;
gap: 16px;
margin-bottom: 28px;
padding-bottom: 20px;
border-bottom: 1px solid var(--border);
}
.svc-category-num {
flex-shrink: 0;
width: 44px; height: 44px;
display: flex; align-items: center; justify-content: center;
border-radius: 12px;
font-size: 0.9rem; font-weight: 800;
color: var(--white);
background: var(--gradient-blue);
}
.svc-category:nth-child(even) .svc-category-num {
background: var(--gradient-blue);
}
.svc-category-title {
font-size: 1.4rem;
color: var(--primary-dark);
padding: 7px 0px 0px 0px;
}
.svc-category-desc {
font-size: 0.9rem;
color: var(--text-light);
} .svc-subcategory {
margin-bottom: 28px;
}
.svc-subcategory-title {
font-size: 1.05rem;
color: var(--text);
margin-bottom: 16px;
display: flex;
align-items: center;
gap: 10px;
}
.svc-subcategory-title i {
color: var(--accent);
font-size: 0.7rem;
} .svc-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
} .svc-card {
display: flex;
flex-direction: column;
padding: 10px 20px;
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--radius);
transition: var(--transition);
text-decoration: none;
color: inherit;
position: relative;
overflow: hidden;
}
.svc-card:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-hover);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card-top {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 18px;
}
.svc-card-icon {
width: 48px; height: 48px;
border-radius: 14px;
display: flex; align-items: center; justify-content: center;
font-size: 1.2rem;
background: var(--light-bg);
color: var(--accent);
transition: var(--transition);
}
.svc-card:hover .svc-card-icon {
background: var(--gradient-green);
color: var(--white);
}
.svc-card:nth-child(even) .svc-card-icon {
background: var(--light-bg-green);
color: var(--accent);
}
.svc-card:nth-child(even):hover .svc-card-icon {
background: var(--gradient-green);
color: var(--white);
}
.svc-card-arrow {
width: 40px; height: 40px;
display: flex; align-items: center; justify-content: center;
border-radius: 50%;
background: var(--light-bg);
color: var(--text-light);
font-size: 0.75rem;
transition: var(--transition);
opacity: 0;
transform: translateX(-8px);
}
.svc-card:hover .svc-card-arrow {
opacity: 1;
transform: translateX(0);
background: var(--primary-dark);
color: var(--white);
}
.svc-card-title {
font-size: 1.02rem;
font-weight: 600;
color: var(--primary-dark);
margin-bottom: 8px;
line-height: 1.4;
flex-grow: 1;
}
.svc-card-excerpt {
font-size: 0.87rem;
color: var(--text-light);
line-height: 1.6;
margin-bottom: 14px;
}
.svc-card-meta {
display: flex;
gap: 16px;
flex-wrap: wrap;
margin-top: auto;
padding-top: 10px;
border-top: 1px solid var(--border);
}
.svc-card-price,
.svc-card-duration {
display: flex;
align-items: center;
gap: 6px;
font-size: 0.82rem;
font-weight: 600;
}
.svc-card-price { color: var(--accent-dark); }
.svc-card-price i { color: var(--accent); }
.svc-card-duration { color: var(--text-light); }
.svc-card-duration i { color: var(--primary-light); } .svc-single {
padding: 60px 0 80px;
background: var(--white);
}
.svc-single-grid {
display: grid;
grid-template-columns: 1fr 340px;
gap: 48px;
align-items: start;
} .svc-badges {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 16px;
margin-bottom: 40px;
}
.svc-badge {
display: flex;
align-items: flex-start;
gap: 14px;
padding: 20px;
border-radius: var(--radius-sm);
border: 1px solid var(--border);
}
.svc-badge > i {
font-size: 1.3rem;
margin-top: 2px;
flex-shrink: 0;
}
.svc-badge--price { background: var(--light-bg-green); border-color: rgba(122,184,61,0.15); }
.svc-badge--price > i { color: var(--accent); }
.svc-badge--time { background: var(--light-bg); border-color: rgba(53,128,192,0.12); }
.svc-badge--time > i { color: var(--primary); }
.svc-badge--result { background: var(--light-bg-green);; border-color: var(--accent); }
.svc-badge--result > i { color: var(--accent); }
.svc-badge-label {
display: block;
font-size: 0.72rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
color: var(--text-light);
margin-bottom: 3px;
}
.svc-badge-value {
display: block;
font-size: 0.97rem;
font-weight: 700;
color: var(--primary-dark);
line-height: 1.4;
} .svc-features {
margin-bottom: 40px;
}
.svc-features h2 {
font-size: 1.3rem;
color: var(--primary-dark);
margin-bottom: 20px;
}
.svc-features-list {
display: flex;
flex-direction: column;
gap: 12px;
list-style: none;
margin: 0;
padding: 0;
}
.svc-features-list li {
display: flex;
align-items: flex-start;
gap: 12px;
font-size: 0.97rem;
color: var(--text);
line-height: 1.6;
}
.svc-features-list li i {
color: var(--accent);
margin-top: 5px;
font-size: 0.8rem;
flex-shrink: 0;
} .svc-editor-content {
margin-top: 32px;
padding-top: 32px;
border-top: 1px solid var(--border);
} .svc-sidebar {
position: sticky;
top: 100px;
display: flex;
flex-direction: column;
gap: 24px;
}
.svc-sidebar-cta {
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 32px 24px;
text-align: center;
box-shadow: var(--shadow-card);
}
.svc-sidebar-cta-icon {
width: 64px; height: 64px;
margin: 0 auto 16px;
background: var(--gradient);
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
font-size: 1.4rem;
color: var(--white);
}
.svc-sidebar-cta h3 {
font-size: 1.2rem;
color: var(--primary-dark);
margin-bottom: 12px;
}
.svc-sidebar-price {
font-size: 1.5rem;
font-weight: 800;
color: var(--accent-dark);
margin-bottom: 4px;
}
.svc-sidebar-price-note {
font-size: 0.82rem;
color: var(--text-light);
margin-bottom: 20px;
}
.svc-sidebar-note {
font-size: 0.8rem;
color: var(--text-light);
margin-top: 12px;
} .svc-sidebar-related {
background: var(--light-bg);
border-radius: var(--radius);
padding: 24px;
}
.svc-sidebar-related h4 {
font-size: 0.95rem;
color: var(--primary-dark);
margin-bottom: 16px;
}
.svc-related-item {
display: flex;
align-items: center;
gap: 12px;
padding: 12px 0;
border-bottom: 1px solid var(--border);
font-size: 0.9rem;
font-weight: 500;
color: var(--text);
transition: var(--transition);
}
.svc-related-item:last-child { border-bottom: none; }
.svc-related-item > i:first-child {
color: var(--primary);
width: 18px;
flex-shrink: 0;
}
.svc-related-item span { flex: 1; }
.svc-related-arrow {
color: var(--text-light);
font-size: 0.7rem;
transition: var(--transition);
}
.svc-related-item:hover {
color: var(--primary);
padding-left: 6px;
}
.svc-related-item:hover .svc-related-arrow {
color: var(--accent);
} .modal-overlay {
position: fixed;
inset: 0;
z-index: 2000;
display: flex;
align-items: center;
justify-content: center;
padding: 20px; background: rgba(27, 58, 92, 0.3);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px); opacity: 0;
visibility: hidden;
transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-overlay.active {
opacity: 1;
visibility: visible;
} .modal-card {
background: var(--white);
border-radius: 20px;
padding: 44px 40px 36px;
width: 100%;
max-width: 440px;
position: relative;
box-shadow: 0 24px 80px rgba(27, 58, 92, 0.25);
transform: translateY(30px) scale(0.95);
transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal-overlay.active .modal-card {
transform: translateY(0) scale(1);
} .modal-close {
position: absolute;
top: 16px;
right: 16px;
width: 40px;
height: 40px;
border-radius: 50%;
border: none;
background: var(--light-bg);
color: var(--text-light);
font-size: 1.1rem;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: var(--transition);
}
.modal-close:hover {
background: #fde8e8;
color: #c53030;
} .modal-header {
text-align: center;
margin-bottom: 28px;
}
.modal-icon {
width: 64px;
height: 64px;
margin: 0 auto 16px;
background: var(--gradient);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.4rem;
color: var(--white);
}
.modal-header h3 {
font-size: 1.4rem;
color: var(--primary-dark);
margin-bottom: 6px;
}
.modal-header p {
font-size: 0.92rem;
color: var(--text-light);
} .modal-form-group {
margin-bottom: 14px;
}
.modal-form-group input,
.modal-form-group textarea {
width: 100%;
padding: 14px 18px;
border: 2px solid var(--border);
border-radius: var(--radius-sm);
font-size: 0.95rem;
font-family: var(--font);
transition: var(--transition);
outline: none;
background: var(--white);
color: var(--text);
}
.modal-form-group input::placeholder,
.modal-form-group textarea::placeholder {
color: var(--text-light);
}
.modal-form-group input:focus,
.modal-form-group textarea:focus {
border-color: var(--accent);
box-shadow: 0 0 0 4px rgba(122, 184, 61, 0.12);
}
.modal-form-group textarea {
resize: vertical;
min-height: 80px;
}
.modal-submit {
width: 100%;
justify-content: center;
padding: 16px;
font-size: 1.05rem;
margin-top: 4px;
} .modal-footer {
text-align: center;
margin-top: 16px;
font-size: 0.78rem;
color: var(--text-light);
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
}
.modal-footer i {
color: var(--accent);
font-size: 0.85rem;
} .modal-card .form-success {
margin-top: 0;
}
.privacy-updated {
padding: 20px 0px;
} .form-consent {
display: flex;
align-items: flex-start;
gap: 10px;
cursor: pointer;
font-size: 0.82rem;
color: var(--text-light);
line-height: 1.5;
}
.form-consent input[type="checkbox"] {
width: 18px;
height: 18px;
flex-shrink: 0;
margin-top: 1px;
accent-color: var(--accent);
cursor: pointer;
}
.form-consent a {
color: var(--primary);
border-bottom: 1px solid rgba(53,128,192,0.3);
transition: var(--transition);
}
.form-consent a:hover {
color: var(--accent);
border-color: var(--accent);
} .hero-form .form-consent {
color: rgba(255,255,255,0.5);
}
.hero-form .form-consent a {
color: rgba(255,255,255,0.7);
border-color: rgba(255,255,255,0.2);
}
.hero-form .form-consent a:hover {
color: var(--accent-light);
}
.ct-form .form-group {
padding-bottom: 20px;
} .svc-cat-tabs {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
margin-bottom: 40px;
}
.svc-cat-card {
display: flex;
align-items: center;
gap: 16px;
padding: 20px 24px;
background: var(--white);
border: 2px solid var(--border);
border-radius: var(--radius);
cursor: pointer;
transition: var(--transition);
font-family: var(--font);
text-align: left;
}
.svc-cat-card:hover {
border-color: rgba(53, 128, 192, 0.25);
box-shadow: 0 4px 20px rgba(27, 58, 92, 0.08);
}
.svc-cat-card.active {
border-color: var(--primary);
background: var(--light-bg);
box-shadow: 0 4px 24px rgba(53, 128, 192, 0.12);
}
.svc-cat-card-icon {
width: 48px;
height: 48px;
flex-shrink: 0;
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.15rem;
background: var(--light-bg);
color: var(--primary);
transition: var(--transition);
}
.svc-cat-card.active .svc-cat-card-icon {
background: var(--gradient-blue);
color: var(--white);
}
.svc-cat-card:nth-child(2) .svc-cat-card-icon {
background: var(--light-bg-green);
color: var(--accent);
}
.svc-cat-card:nth-child(2).active .svc-cat-card-icon {
background: var(--gradient-green);
color: var(--white);
}
.svc-cat-card:nth-child(3) .svc-cat-card-icon {
background: #eef0f8;
color: #5b6abf;
}
.svc-cat-card:nth-child(3).active .svc-cat-card-icon {
background: linear-gradient(135deg, #5b6abf, #7b8ad9);
color: var(--white);
}
.svc-cat-card-info {
flex: 1;
min-width: 0;
}
.svc-cat-card-name {
display: block;
font-size: 1rem;
font-weight: 700;
color: var(--primary-dark);
line-height: 1.3;
margin-bottom: 3px;
}
.svc-cat-card-count {
display: block;
font-size: 0.78rem;
color: var(--text-light);
font-weight: 500;
}
.svc-cat-card-arrow {
flex-shrink: 0;
font-size: 0.75rem;
color: var(--text-light);
transition: var(--transition);
}
.svc-cat-card.active .svc-cat-card-arrow {
color: var(--primary);
transform: rotate(90deg);
}
.svc-cat-card:hover .svc-cat-card-arrow {
color: var(--primary);
} .svc-panel {
display: none;
opacity: 0;
transform: translateY(12px);
}
.svc-panel.active {
display: block;
opacity: 1;
transform: translateY(0);
transition: opacity 0.35s ease, transform 0.35s ease;
} .services-more {
text-align: center;
margin-top: 36px;
} @media (max-width: 1024px) {
.hero h1 { font-size: 2.5rem; }
.hero-grid { grid-template-columns: 1fr; gap: 40px; }
.hero-visual { display: none; }
.services-grid { grid-template-columns: repeat(2, 1fr); }
.why-grid { grid-template-columns: repeat(2, 1fr); }
.stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
.cta-grid { grid-template-columns: 1fr; }
.footer-grid { grid-template-columns: 1fr 1fr; }
.section-title h2 { font-size: 2rem; } .steps-layout { grid-template-columns: 1fr; gap: 32px; }
.steps-result { position: static; } .svc-cat-tabs { grid-template-columns: 1fr; }
.svc-grid { grid-template-columns: repeat(2, 1fr); } .ct-grid { grid-template-columns: 1fr; } .svc-single-grid { grid-template-columns: 1fr; gap: 24px; }
.svc-sidebar { position: static; } .svc-grid { grid-template-columns: repeat(2, 1fr); } .pricing-cta-inner { flex-direction: column; text-align: center; }
.pricing-cta-actions { justify-content: center; } .pj-toolbar { flex-direction: column; align-items: flex-start; }
.pj-detail-grid { grid-template-columns: 1fr; }
.pj-cta-inner { flex-direction: column; text-align: center; }
.pj-cta-right { justify-content: center; } .error-links-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
.main-nav { display: none; }
.header-contacts .header-cta { display: none; }
.mobile-toggle { display: flex; }
.contacts-hero { padding: 40px 0 20px; }
.breadcrumbs { flex-wrap: wrap; font-size: 0.8rem; gap: 6px; }
.pricing-section { padding: 40px 0 40px; }
.hero { min-height: auto; padding: 80px 0 20px; }
.hero h1 { font-size: 2rem; }
.hero-stats { gap: 24px; }
.hero-stat .number { font-size: 1.7rem; }
.hero-btns { flex-direction: column; }
.hero-btns .btn { text-align: center; justify-content: center; }
.services { padding: 30px 0; }
.services-grid { grid-template-columns: 1fr; }
.why-grid { grid-template-columns: 1fr; }
.stats-grid { grid-template-columns: 1fr 1fr; }
.stat-number { font-size: 2.2rem; }
.stats { padding: 40px 0; }
.steps { padding: 40px 0; }
.ct-section { padding: 30px 0; }
.ct-form-section { padding: 30px 0 30px; }
.pj-cta { padding: 30px 0; }
.svc-single { padding: 30px 0 30px; }
.footer-grid { grid-template-columns: 1fr; }
.footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
.cta-form-wrap { padding: 28px 20px; margin-bottom: 40px; }
.section-title h2 { font-size: 1.7rem; }
.container { padding: 0 16px; } .steps-type { flex-direction: column; align-items: center; }
.steps-type-btn { width: 100%; justify-content: center; }
.step-item { gap: 14px; }
.step-marker { width: 40px; }
.step-marker-num { width: 40px; height: 40px; font-size: 0.95rem; }
.step-card { padding: 18px 20px; }
.steps-well-btn { font-size: 0.82rem; padding: 8px 16px; } .svc-cat-card { padding: 16px 18px; gap: 12px; }
.svc-cat-card-icon { width: 40px; height: 40px; font-size: 1rem; }
.svc-cat-card-name { font-size: 0.85rem; }
.svc-grid { grid-template-columns: 1fr; }
.svc-cat-card { padding: 16px 18px; gap: 12px; }
.svc-cat-card-icon { width: 40px; height: 40px; font-size: 1rem; }
.svc-cat-card-name { font-size: 0.85rem; } .contacts-hero h1 { font-size: 2rem; } .ct-form-grid { grid-template-columns: 1fr; }
.ct-form-card { padding: 28px 20px; }
.ct-form-top h2 { font-size: 1.7rem; }
.ct-form-bottom { flex-direction: column; }
.ct-form-bottom .btn { width: 100%; justify-content: center; } .ct-map-wrap { height: 350px; } .svc-grid { grid-template-columns: 1fr; }
.svc-category-header { flex-direction: column; gap: 12px; } .svc-badges { grid-template-columns: 1fr; } .pricing-row { flex-direction: column; align-items: flex-start; gap: 8px; }
.pricing-row-price { text-align: left; }
.pricing-cta-inner { padding: 24px 20px; } .pj-item-right { display: none; }
.pj-item-title { white-space: normal; }
.pj-map-container { height: 300px; }
.pj-cta-left h2 { font-size: 1.5rem; } .modal-card { padding: 32px 24px 28px; }
.modal-overlay { padding: 16px; } .error-code { font-size: 5rem; }
.error-links-grid { grid-template-columns: 1fr 1fr; }
.cta {padding: 0px 0;}
.cta-info h2 {font-size: 1.8rem;}
}
@media (max-width: 480px) {
.hero h1 { font-size: 1.65rem; }
.hero-stats { flex-wrap: wrap; gap: 20px; }
.stats-grid { grid-template-columns: 1fr; }
.header-phone span { display: none; }
.logo-text { font-size: 1.2rem; } .step-card-head h4 { font-size: 0.92rem; }
.step-card ul li { font-size: 0.82rem; }
.steps-result-card { padding: 24px 20px; } .ct-phone { font-size: 1.35rem; }
.ct-phone--secondary { font-size: 1.2rem; }
.contacts-hero h1 { font-size: 1.65rem; } .error-links-grid { grid-template-columns: 1fr; }
.error-code { font-size: 4rem; } .pj-cta-right { flex-direction: column; width: 100%; }
.pj-cta-right .btn { width: 100%; justify-content: center; }
}