:root {
    --bg: #f7fbff;
    --bg-soft: #edf6ff;
    --panel: rgba(255, 255, 255, 0.92);
    --panel-strong: rgba(255, 255, 255, 0.98);
    --text: #101828;
    --muted: #344054;
    --line: rgba(80, 120, 200, 0.22);
    --primary: #2563eb;
    --primary-2: #7c3aed;
    --accent: #0891b2;
    --success: #047857;
    --warning: #d97706;
    --shadow: 0 18px 44px rgba(37, 99, 235, 0.14);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --container: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 34%), radial-gradient(circle at top right, rgba(124, 58, 237, 0.10), transparent 32%), linear-gradient(135deg, #f8fbff 0%, #eef6ff 48%, #ffffff 100%);
    color: var(--text);
    font-weight: 600;
}

a {
    color: inherit;
    text-decoration: none;
}

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

p,
li,
span,
label,
input,
textarea,
select {
    color: var(--muted);
    font-weight: 600;
}

h1,
h2,
h3,
h4 {
    color: var(--text);
    font-weight: 900;
}

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(80, 120, 200, 0.18);
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 0;
}

.brand {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--text);
}

    .brand span {
        color: var(--primary);
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

    .nav-links a {
        color: #24324a;
        font-weight: 800;
    }

        .nav-links a:hover {
            color: var(--primary);
        }

.hero,
.register-page {
    position: relative;
    overflow: hidden;
}

.hero {
    padding: 5rem 0 2rem;
}

.register-page {
    padding: 3rem 0 4.5rem;
}

.hero-grid,
.register-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
}

.hero-copy h1,
.register-copy h1 {
    margin: 0.75rem 0 1rem;
    font-size: clamp(2.2rem, 5vw, 4.6rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.hero-copy p,
.register-copy p,
.section-heading p,
.service-card p,
.timeline-step p,
.review-card p,
.info-point p,
.reviews-home-header p,
.slide-content p {
    color: var(--muted);
    line-height: 1.75;
    font-weight: 600;
}

.eyebrow,
.section-tag,
.mini-label {
    display: inline-block;
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
}

.hero-actions,
.hero-points,
.center-space,
.footer-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-actions {
    margin-top: 1.8rem;
}

.hero-points {
    margin-top: 1.3rem;
}

    .hero-points span {
        padding: 0.7rem 1rem;
        border-radius: 999px;
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.85);
        color: #24324a;
        font-size: 0.95rem;
        font-weight: 800;
        box-shadow: 0 10px 24px rgba(37, 99, 235, 0.08);
    }

.glass-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.92));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.hero-card,
.service-card,
.timeline-step,
.review-card,
.info-point,
.register-panel,
.slideshow-shell,
.reviews-home-shell {
    border-radius: var(--radius-xl);
}

.hero-card,
.register-panel,
.reviews-home-shell {
    padding: 1.7rem;
}

.service-card,
.timeline-step,
.review-card,
.info-point {
    padding: 1.5rem;
}

.hero-card h3,
.register-panel h2,
.reviews-home-header h3 {
    margin: 0.25rem 0 0;
    font-size: 1.5rem;
}

.hero-stat-list,
.review-list {
    display: grid;
    gap: 1rem;
}

.hero-stat {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(80, 120, 200, 0.18);
}

    .hero-stat strong,
    .service-card h3,
    .timeline-step h3,
    .info-point h3,
    .review-card strong {
        display: block;
        margin-bottom: 0.3rem;
        font-size: 1.05rem;
        color: var(--text);
    }

    .hero-stat span,
    .review-service {
        color: var(--muted);
        font-weight: 600;
    }

.hero-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    filter: blur(95px);
    opacity: 0.55;
    pointer-events: none;
}

.hero-glow-left {
    left: -100px;
    top: 60px;
    background: rgba(37, 99, 235, 0.20);
}

.hero-glow-right {
    right: -80px;
    top: 140px;
    background: rgba(8, 145, 178, 0.18);
}

.slideshow-section {
    padding: 0.75rem 0 1.25rem;
}

.slideshow-shell {
    padding: 1.2rem;
    overflow: hidden;
}

.slideshow-track {
    position: relative;
    min-height: 430px;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(20px) scale(0.985);
    transition: opacity 0.55s ease, transform 0.55s ease;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.2rem;
    align-items: center;
}

    .slide.is-active {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0) scale(1);
    }

.slide-content {
    padding: 1rem 1rem 1rem 1.2rem;
}

    .slide-content h2 {
        margin: 0.7rem 0 0.9rem;
        font-size: clamp(1.9rem, 4vw, 3.3rem);
        line-height: 1.08;
        letter-spacing: -0.03em;
    }

.slide-media img {
    width: 100%;
    border-radius: 22px;
    border: 1px solid rgba(80, 120, 200, 0.18);
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.16);
}

.slideshow-controls {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 1rem;
}

.slide-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    background: rgba(80, 120, 200, 0.28);
    box-shadow: inset 0 0 0 1px rgba(80, 120, 200, 0.12);
}

    .slide-dot.is-active {
        width: 34px;
        background: linear-gradient(135deg, var(--primary), var(--primary-2));
    }

.section {
    padding: 4.5rem 0;
}

.section-soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(237, 246, 255, 0.88));
    border-top: 1px solid rgba(80, 120, 200, 0.12);
    border-bottom: 1px solid rgba(80, 120, 200, 0.12);
}

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2rem;
}

    .section-heading h2 {
        margin: 0.55rem 0 0.85rem;
        font-size: clamp(1.8rem, 4vw, 3rem);
        line-height: 1.12;
        letter-spacing: -0.03em;
    }

.card-grid,
.timeline-grid,
.info-points {
    display: grid;
    gap: 1.3rem;
}

.card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-points {
    margin-top: 1.6rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(8, 145, 178, 0.14));
    border: 1px solid rgba(80, 120, 200, 0.14);
}

.timeline-step span {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(8, 145, 178, 0.12);
    color: var(--accent);
    font-weight: 900;
    margin-bottom: 1rem;
}

.center-space {
    justify-content: center;
    margin-top: 2rem;
}

.reviews-section {
    padding-bottom: 5rem;
}

.reviews-home-shell {
    display: grid;
    gap: 1.4rem;
}

.reviews-home-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.review-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.review-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 251, 255, 0.95));
}

.review-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

    .review-head span {
        color: var(--warning);
        letter-spacing: 0.08em;
        font-weight: 900;
    }

.stack-form {
    display: grid;
    gap: 1rem;
    margin-top: 1.25rem;
}

.form-group {
    display: grid;
    gap: 0.5rem;
}

label {
    font-weight: 800;
    color: #172033;
}

input,
textarea,
select {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(80, 120, 200, 0.24);
    background: rgba(255, 255, 255, 0.98);
    color: #101828;
    font: inherit;
    font-weight: 600;
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

    input::placeholder,
    textarea::placeholder {
        color: #667085;
    }

select {
    appearance: none;
}

    input:focus,
    textarea:focus,
    select:focus {
        border-color: rgba(8, 145, 178, 0.55);
        box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.12);
    }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 52px;
    padding: 0.92rem 1.35rem;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    font: inherit;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    color: #101828;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

    .btn:hover {
        transform: translateY(-1px);
    }

.btn-primary {
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.26);
}

    .btn-primary:hover {
        color: #ffffff !important;
        box-shadow: 0 16px 34px rgba(37, 99, 235, 0.34);
    }

.btn-secondary {
    color: #172033;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(80, 120, 200, 0.20);
}

.btn-small {
    min-height: 42px;
    padding: 0.72rem 1rem;
}

.btn-large {
    min-height: 58px;
    padding-inline: 1.6rem;
}

.btn-full {
    width: 100%;
}

.status-text {
    min-height: 24px;
    margin: 0.2rem 0 0;
    color: var(--success);
    font-weight: 900;
}

.site-footer {
    padding: 1.4rem 0 2.4rem;
    border-top: 1px solid rgba(80, 120, 200, 0.12);
}

.footer-inner {
    justify-content: center;
    color: var(--muted);
    text-align: center;
}

.floating-thanks-banner {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 60;
    background: linear-gradient(135deg, #059669, #0891b2);
    color: #ffffff;
    padding: 1rem 1.2rem;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(8, 145, 178, 0.28);
    transform: translateY(16px);
    opacity: 0;
    transition: all 0.25s ease;
    max-width: 320px;
    font-weight: 900;
}

    .floating-thanks-banner.is-visible {
        transform: translateY(0);
        opacity: 1;
    }

.home-review-form-wrap {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.25rem;
    align-items: start;
    padding: 1.2rem;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 255, 0.92));
    border: 1px solid rgba(80, 120, 200, 0.16);
}

.home-review-copy h3 {
    margin: 0.4rem 0 0.6rem;
    font-size: 1.5rem;
}

.home-review-copy p {
    color: var(--muted);
    line-height: 1.75;
    font-weight: 600;
}

.home-review-form .btn {
    width: 100%;
}

@media (max-width: 1024px) {
    .hero-grid,
    .register-grid,
    .card-grid,
    .timeline-grid,
    .info-points,
    .slide {
        grid-template-columns: 1fr 1fr;
    }

    .timeline-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .review-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 0.75rem 0;
    }

    .nav-links {
        gap: 0.8rem;
    }

    .hero {
        padding-top: 4rem;
    }

    .hero-grid,
    .register-grid,
    .card-grid,
    .timeline-grid,
    .info-points,
    .slide,
    .review-list {
        grid-template-columns: 1fr;
    }

    .slideshow-track {
        min-height: 560px;
    }

    .slide-content {
        padding: 0.5rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .hero-card,
    .register-panel,
    .slideshow-shell,
    .reviews-home-shell {
        padding: 1.1rem;
    }

    .home-review-form-wrap {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
}

@media (max-width: 520px) {
    .container {
        width: min(var(--container), calc(100% - 1rem));
    }

    .btn,
    .btn-large,
    .btn-small {
        width: 100%;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-points {
        gap: 0.7rem;
    }

    .nav {
        justify-content: center;
    }

    .nav-links {
        justify-content: center;
    }

    .slideshow-track {
        min-height: 620px;
    }
}
.required {
    color: #dc2626;
    font-weight: 900;
}

.phone-wrapper {
    display: flex;
    gap: 0.6rem;
    align-items: stretch;
}

    .phone-wrapper select {
        width: 135px;
        min-width: 135px;
        cursor: pointer;
        font-weight: 800;
        color: #101828;
    }

    .phone-wrapper input {
        flex: 1;
    }

.status-text.error {
    color: #dc2626;
}

.status-text.success {
    color: var(--success);
}

@media (max-width: 520px) {
    .phone-wrapper {
        flex-direction: column;
    }

        .phone-wrapper select {
            width: 100%;
            min-width: 100%;
        }
}

.review-slider {
    position: relative;
    min-height: 230px;
    display: block;
}

.review-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(18px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

    .review-slide.is-active {
        opacity: 1;
        transform: translateX(0) scale(1);
        pointer-events: auto;
    }