Наш менеджер свяжется с вами в течении рабочего дня.
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Спасибо за вашу заявку - Rupal</title>
<style>
.success-page,
.success-page * { box-sizing: border-box; }
.success-page {
font-family: var(--t-text-font, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #f8f4f0 0%, #fff9f5 50%, #ffe8d6 100%);
padding: 20px;
color: #333;
}
.success-page__container {
max-width: 1200px;
width: 100%;
margin: 0 auto;
padding: 0 20px;
}
.success-page__content {
background: white;
border-radius: 24px;
padding: 60px 40px;
text-align: center;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
max-width: 600px;
margin: 0 auto;
}
.success-page__icon {
width: 100px;
height: 100px;
margin: 0 auto 30px;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #10b981 0%, #059669 100%);
border-radius: 50%;
animation: scaleIn 0.6s ease-out;
}
.success-page__checkmark {
width: 60px;
height: 60px;
}
.success-page__checkmark path {
fill: none;
stroke: white;
stroke-width: 3;
stroke-linecap: round;
stroke-linejoin: round;
animation: drawCheckmark 0.6s ease-out 0.3s both;
}
@keyframes scaleIn {
from {
transform: scale(0.5);
opacity: 0;
}
to {
transform: scale(1);
opacity: 1;
}
}
@keyframes drawCheckmark {
from {
stroke-dasharray: 50;
stroke-dashoffset: 50;
opacity: 0;
}
to {
stroke-dasharray: 50;
stroke-dashoffset: 0;
opacity: 1;
}
}
.success-page__title {
font-family: var(--t-headline-font, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
font-size: clamp(28px, 5vw, 44px);
font-weight: 700;
margin: 0 0 16px 0;
color: #1a1a1a;
line-height: 1.2;
}
.success-page__subtitle {
font-size: clamp(16px, 3vw, 20px);
font-weight: 500;
margin: 0 0 24px 0;
color: #666;
line-height: 1.4;
}
.success-page__description {
font-size: 15px;
line-height: 1.6;
color: #888;
margin: 0 0 40px 0;
font-weight: 400;
}
.success-page__timer {
font-size: 14px;
color: #ff7a1f;
font-weight: 600;
margin-bottom: 30px;
font-family: var(--t-headline-font, monospace);
}
.success-page__buttons {
display: flex;
flex-direction: column;
gap: 12px;
margin-bottom: 20px;
}
@media (min-width: 640px) {
.success-page__buttons {
flex-direction: row;
justify-content: center;
gap: 16px;
flex-wrap: wrap;
}
}
.success-page__button-primary,
.success-page__button-secondary {
flex: 1;
min-width: 200px;
padding: 16px 24px;
background: white;
color: #ff7a1f;
border: 2px solid #ff7a1f;
border-radius: 12px;
font-size: 16px;
font-weight: 600;
font-family: var(--t-headline-font, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
display: inline-flex;
align-items: center;
justify-content: center;
}
.success-page__button-primary:hover,
.success-page__button-secondary:hover {
background: #fff5f0;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(255, 122, 31, 0.2);
}
.success-page__button-primary:active,
.success-page__button-secondary:active {
transform: translateY(0);
}
.success-page__divider {
height: 1px;
background: linear-gradient(90deg, transparent, #ddd, transparent);
margin: 30px 0;
}
.success-page__contacts {
font-size: 14px;
color: #999;
margin-top: 20px;
}
.success-page__contacts a {
color: #ff7a1f;
text-decoration: none;
font-weight: 600;
transition: color 0.3s ease;
}
.success-page__contacts a:hover {
color: #ff5a00;
}
@media (max-width: 640px) {
.success-page__content {
padding: 40px 24px;
}
.success-page__icon {
width: 80px;
height: 80px;
margin-bottom: 24px;
}
.success-page__checkmark {
width: 48px;
height: 48px;
}
.success-page__buttons {
gap: 10px;
}
.success-page__button-primary,
.success-page__button-secondary {
min-width: auto;
padding: 14px 16px;
font-size: 15px;
}
}
</style>
</head>
<body>
<div class="success-page">
<div class="success-page__container">
<div class="success-page__content">
<div class="success-page__icon">
<svg class="success-page__checkmark" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg">
<path d="M 15 30 L 25 40 L 45 20"></path>
</svg>
</div>
<h1 class="success-page__title">Спасибо за вашу заявку!</h1>
<h2 class="success-page__subtitle">Заявка успешно отправлена</h2>
<p class="success-page__description">
Наш менеджер свяжется с вами в течении рабочего дня.
</p>
<div class="success-page__timer">
Перенаправление на главную через <span id="timer">10</span> сек...
</div>
<div class="success-page__buttons">
<a href="/" class="success-page__button-primary">Перейти на главную</a>
<a href="tel:+78007777017" class="success-page__button-secondary">Позвонить нам</a>
<a href="mailto:info@rupal.su" class="success-page__button-secondary">Написать нам</a>
</div>
<div class="success-page__divider"></div>
<div class="success-page__contacts">
<p style="margin: 0 0 12px 0;">Связаться с нами:</p>
<p style="margin: 0;">
<strong>Телефон:</strong> <a href="tel:+78007777017">8 (800) 7777-017</a>
</p>
<p style="margin: 8px 0 0 0;">
<strong>Email:</strong> <a href="mailto:info@rupal.su">info@rupal.su</a>
</p>
</div>
</div>
</div>
</div>
<script>
(function() {
const timerElement = document.getElementById('timer');
const rootUrl = document.location.origin;
let seconds = 10;
function updateTimer() {
timerElement.textContent = seconds;
seconds--;
if (seconds < 0) {
window.location.href = rootUrl;
} else {
setTimeout(updateTimer, 1000);
}
}
updateTimer();
})();
</script>
</body>
</html>