:root {
    --primary: #4E71FF;
    --accent: #8DD8FF;
    --text: #4a4a4a;
    --heading: #2a2a2a;
    --surface: #ffffff;
    --bg: #f6faff;
    --radius-lg: 22px;
    --shadow: 0 18px 40px rgba(0,0,0,0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    overflow-x: hidden;
}

/* SECTION WRAPPER */
.gw-thanks {
    min-height: 100vh;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* DECORATIVE AURAS */
.gw-bg-aura,
.gw-bg-aura2 {
    position: absolute;
    width: 540px;
    height: 540px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .32;
}

.gw-bg-aura {
    background: rgba(78,113,255,0.32);
    top: -120px;
    left: -150px;
}

.gw-bg-aura2 {
    background: rgba(141,216,255,0.28);
    right: -160px;
    bottom: -140px;
}

/* CONTENT WRAPPER */
.gw-thanks-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 800px;
    width: 100%;
    padding: 60px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
    animation: riseIn 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes riseIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* LEFT SIDE */
.gw-thanks-left {
    flex: 1;
}

.gw-logo-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.gw-logo-img {
    width: 46px;
    height: 46px;
    filter: brightness(0);
}

.gw-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading);
}

.gw-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 16px;
}

.gw-sub {
    font-size: 1.15rem;
    color: var(--text);
    line-height: 1.65;
    margin-bottom: 32px;
}

/* BUTTON */
.gw-back-btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 40px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transition: 0.3s ease;
    box-shadow: 0 10px 26px rgba(78,113,255,0.28);
}

.gw-back-btn:hover {
    transform: translateY(-3px);
    opacity: .92;
}

/* RIGHT SIDE ILLUSTRATION */
.gw-thanks-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.gw-illustration-box {
    max-width: 420px;
    width: 100%;
}

.gw-thanks-illustration {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

@media (max-width: 992px) {
    .gw-thanks-inner {
        flex-direction: column;
        text-align: center;
        padding: 50px 40px;
    }

    .gw-thanks-right {
        order: -1;
    }
}

@media (max-width: 768px) {
    .gw-title {
        font-size: 2rem;
    }
    .gw-sub {
        font-size: 1.05rem;
    }
    .gw-illustration-box {
        max-width: 340px;
    }
}
