:root {
    --primary: #1a2634;
    --secondary: #2d4a5e;
    --accent: #c9a227;
    --accent-hover: #dbb42f;
    --light: #f8f9fa;
    --dark: #0d1117;
    --text: #333;
    --text-light: #6c757d;
    --white: #ffffff;
    --border: #dee2e6;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
    --radius: 6px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--accent);
    color: var(--dark);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn-dark {
    background: var(--primary);
    color: var(--white);
}

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

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 38, 52, 0.97);
    backdrop-filter: blur(10px);
    padding: 0;
    transition: var(--transition);
}

header.scrolled {
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}

.logo svg {
    width: 42px;
    height: 42px;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-desktop a {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    font-weight: 500;
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-desktop a:hover {
    color: var(--white);
}

.nav-desktop a:hover::after {
    width: 100%;
}

.nav-cta {
    margin-left: 20px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 30px 20px;
    flex-direction: column;
    gap: 20px;
    box-shadow: var(--shadow-lg);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    color: var(--white);
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.split-section {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

.split-content {
    max-width: 560px;
}

.hero {
    padding-top: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(201,162,39,0.1)" stroke-width="0.5"/><circle cx="50" cy="50" r="30" fill="none" stroke="rgba(201,162,39,0.1)" stroke-width="0.5"/><circle cx="50" cy="50" r="20" fill="none" stroke="rgba(201,162,39,0.1)" stroke-width="0.5"/></svg>') center/cover;
    opacity: 0.6;
}

.hero .split-left {
    color: var(--white);
    position: relative;
    z-index: 2;
}

.hero .split-right {
    background: rgba(0,0,0,0.2);
    position: relative;
}

.hero-visual {
    width: 100%;
    max-width: 480px;
    position: relative;
}

.hero-visual svg {
    width: 100%;
    height: auto;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--light);
}

.section-dark {
    background: var(--primary);
    color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-dark .section-header h2 {
    color: var(--white);
}

.section-header p {
    font-size: 17px;
    color: var(--text-light);
}

.section-dark .section-header p {
    color: rgba(255,255,255,0.8);
}

.split-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.split-block:last-child {
    margin-bottom: 0;
}

.split-block.reverse {
    flex-direction: row-reverse;
}

.split-block-content {
    flex: 1;
}

.split-block-visual {
    flex: 1;
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
}

.split-block-visual svg {
    width: 100%;
    max-width: 320px;
    height: auto;
}

.split-block h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

.split-block p {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 16px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
}

.feature-list li svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 2px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 1 1 340px;
    max-width: 400px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--primary);
}

.service-card p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 20px;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 24px;
}

.service-price .amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
}

.service-price .period {
    font-size: 14px;
    color: var(--text-light);
}

.trust-section {
    background: linear-gradient(to right, var(--primary) 50%, var(--light) 50%);
}

.trust-grid {
    display: flex;
}

.trust-left {
    flex: 1;
    padding: 80px 60px 80px 0;
    color: var(--white);
}

.trust-right {
    flex: 1;
    padding: 80px 0 80px 60px;
}

.trust-left h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
}

.trust-left p {
    opacity: 0.9;
    margin-bottom: 40px;
}

.trust-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-stat {
    flex: 1 1 120px;
}

.trust-stat .number {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.trust-stat .label {
    font-size: 14px;
    opacity: 0.8;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
}

.testimonial-card + .testimonial-card {
    margin-top: 24px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text);
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
}

.testimonial-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
}

.testimonial-info span {
    font-size: 13px;
    color: var(--text-light);
}

.process-section {
    position: relative;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.process-step {
    display: flex;
    gap: 30px;
    padding: 30px 0;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.process-content {
    flex: 1;
    padding-top: 12px;
}

.process-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}

.process-content p {
    color: var(--text-light);
    font-size: 15px;
}

.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    padding: 100px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(201,162,39,0.1);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta-section .btn {
    position: relative;
}

footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    padding: 80px 0 0;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    flex: 2 1 300px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.8;
    max-width: 320px;
}

.footer-links {
    flex: 1 1 180px;
}

.footer-links h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-contact {
    flex: 1 1 240px;
}

.footer-contact h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    opacity: 0.7;
}

.footer-legal a:hover {
    opacity: 1;
}

.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 14px;
}

.breadcrumb a {
    opacity: 0.7;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    opacity: 0.5;
}

.content-section {
    padding: 80px 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin: 40px 0 20px;
}

.content-wrapper h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    margin: 32px 0 16px;
}

.content-wrapper p {
    margin-bottom: 16px;
    color: var(--text);
}

.content-wrapper ul {
    margin: 16px 0 24px 24px;
    list-style: disc;
}

.content-wrapper li {
    margin-bottom: 8px;
    color: var(--text);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.team-card {
    flex: 1 1 280px;
    max-width: 320px;
    text-align: center;
}

.team-avatar {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar svg {
    width: 60px;
    height: 60px;
    color: var(--white);
}

.team-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.team-card .role {
    font-size: 14px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 14px;
}

.team-card p {
    font-size: 14px;
    color: var(--text-light);
}

.contact-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-form-wrap {
    flex: 1;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--light);
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.contact-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.contact-card p {
    font-size: 14px;
    color: var(--text-light);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
}

.map-section {
    height: 400px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: var(--text-light);
}

.map-placeholder svg {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.services-hero-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 60px;
}

.services-hero-content {
    flex: 1;
}

.services-hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-detailed-item {
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-detailed-item.reverse {
    flex-direction: row-reverse;
}

.service-detailed-content {
    flex: 1;
}

.service-detailed-visual {
    flex: 1;
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detailed-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.service-detailed-content p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.service-detailed-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 24px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
}

.cookie-banner.active {
    display: block;
}

.cookie-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-accept {
    background: var(--accent);
    color: var(--dark);
}

.cookie-accept:hover {
    background: var(--accent-hover);
}

.cookie-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-reject:hover {
    border-color: var(--white);
}

.sticky-cta {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sticky-cta a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--dark);
    padding: 16px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-lg);
}

.sticky-cta a:hover {
    background: var(--accent-hover);
    transform: scale(1.05);
}

.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 40px 20px;
}

.thanks-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
    max-width: 560px;
    box-shadow: var(--shadow-lg);
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    color: var(--white);
}

.thanks-card h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.thanks-card p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.thanks-service {
    background: var(--light);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 32px;
}

.thanks-service span {
    font-size: 14px;
    color: var(--text-light);
}

.thanks-service strong {
    display: block;
    font-size: 18px;
    color: var(--primary);
    margin-top: 6px;
}

@media (min-width: 769px) {
    .split-section {
        flex-direction: row;
    }
}

@media (max-width: 992px) {
    .trust-section {
        background: var(--primary);
    }

    .trust-grid {
        flex-direction: column;
    }

    .trust-left,
    .trust-right {
        padding: 60px 20px;
    }

    .split-block,
    .split-block.reverse,
    .service-detailed-item,
    .service-detailed-item.reverse {
        flex-direction: column;
    }

    .contact-grid {
        flex-direction: column;
    }

    .services-hero-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .split-left,
    .split-right {
        padding: 60px 20px;
    }

    .section {
        padding: 60px 0;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .footer-grid {
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .process-timeline::before {
        left: 20px;
    }

    .process-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .contact-form-wrap {
        padding: 24px;
    }

    .thanks-card {
        padding: 40px 24px;
    }
}
