:root {
    --bg: #fff5f6;
    --bg-2: #fffafb;
    --card: #ffffff;
    --text: #18181b;
    --muted: #6b7280;
    --line: #f0d4d7;
    --soft-red: #fff0f1;
    --primary: #ed1b24;
    --primary-2: #b80012;
    --primary-3: #ff4b55;
    --accent: #ffcc00;
    --success: #137a4b;
    --danger: #b42318;
    --warning: #9a6700;
    --shadow: 0 24px 60px rgba(237, 27, 36, 0.14);
    --shadow-soft: 0 14px 34px rgba(24, 24, 27, 0.07);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(237, 27, 36, 0.18), transparent 34%),
        radial-gradient(circle at top right, rgba(184, 0, 18, 0.12), transparent 28%),
        linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 45%, #ffffff 100%);
    color: var(--text);
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(237, 27, 36, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(237, 27, 36, 0.045) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 70%);
}

.topbar {
    width: min(1180px, calc(100% - 32px));
    margin: 22px auto 0;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(237, 27, 36, 0.16);
    border-radius: 26px;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    backdrop-filter: blur(14px);
    position: relative;
    overflow: hidden;
}

.topbar::after {
    content: '';
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 999px;
    background: rgba(237, 27, 36, 0.08);
    right: -70px;
    top: -86px;
}

.brand-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.brand-logo-box {
    width: 74px;
    height: 66px;
    border-radius: 19px;
    background: #ffffff;
    border: 1px solid rgba(237, 27, 36, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 14px 28px rgba(237, 27, 36, 0.16);
    flex: 0 0 auto;
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.brand-text h1 {
    margin: 0;
    font-size: 23px;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--primary-2);
}

.brand-text p {
    margin: 5px 0 0;
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
}

.brand-text small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}

.top-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.top-links a,
.btn {
    text-decoration: none;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
    padding: 12px 17px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 12px 26px rgba(237, 27, 36, 0.22);
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.top-links a:hover,
.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(237, 27, 36, 0.28);
}

.top-links a:nth-child(2),
.btn-secondary {
    background: #fff2f3;
    color: var(--primary-2);
    border: 1px solid rgba(237, 27, 36, 0.22);
    box-shadow: none;
}

.btn-danger {
    background: var(--danger);
}

.btn-light {
    background: #fff;
    color: var(--primary-2);
    border: 1px solid var(--line);
    box-shadow: none;
}

.page {
    width: min(1180px, 100%);
    margin: 26px auto;
    padding: 0 18px 32px;
    position: relative;
}

.hero-card,
.card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(237, 27, 36, 0.14);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.hero-card {
    padding: 32px;
    margin-bottom: 22px;
    overflow: hidden;
    position: relative;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(255, 240, 241, 0.97)),
        radial-gradient(circle at 92% 18%, rgba(237, 27, 36, 0.17), transparent 28%);
}

.hero-card::before {
    content: '';
    position: absolute;
    width: 9px;
    top: 26px;
    bottom: 26px;
    left: 0;
    border-radius: 0 999px 999px 0;
    background: linear-gradient(180deg, var(--primary), var(--primary-2));
}

.hero-card::after {
    content: '';
    position: absolute;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(237, 27, 36, 0.09);
    right: -82px;
    top: -92px;
}

.hero-card h2 {
    margin: 0 0 10px;
    font-size: clamp(25px, 4vw, 36px);
    letter-spacing: -0.05em;
    color: var(--primary-2);
    position: relative;
    z-index: 1;
}

.hero-card p {
    margin: 0;
    color: var(--muted);
    max-width: 760px;
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

.card {
    padding: 25px;
    margin-bottom: 20px;
}

.section-title {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.step-no {
    min-width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(237, 27, 36, 0.2);
}

.section-title h3 {
    margin: 0;
    font-size: 22px;
    color: var(--text);
}

.section-title p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group.full {
    grid-column: 1 / -1;
}

label {
    font-weight: 800;
    font-size: 14px;
}

.required {
    color: var(--primary);
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--text);
    padding: 13px 14px;
    border-radius: 14px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(237, 27, 36, 0.11);
    background: #fffdfd;
}

textarea {
    min-height: 112px;
    resize: vertical;
}

.help {
    color: var(--muted);
    font-size: 13px;
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 20px;
}

.alert {
    padding: 16px 17px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: #fff;
    margin-bottom: 18px;
    box-shadow: var(--shadow-soft);
}

.alert.success {
    background: #ecfdf3;
    border-color: #a6f4c5;
    color: #05603a;
}

.alert.danger {
    background: #fff1f3;
    border-color: #fecdd6;
    color: #912018;
}

.alert.warning {
    background: #fffaeb;
    border-color: #fedf89;
    color: #93370d;
}

.link-box {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.link-box input {
    font-weight: 800;
    color: var(--primary-2);
    background: #fffafa;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.check-card {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    background: #fff;
    min-height: 60px;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.check-card:hover {
    transform: translateY(-1px);
    border-color: rgba(237, 27, 36, 0.45);
    box-shadow: 0 12px 24px rgba(237, 27, 36, 0.09);
}

.check-card input {
    width: auto;
    accent-color: var(--primary);
}

.rating-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
}

.rating-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 860px;
}

.rating-table th,
.rating-table td {
    border-bottom: 1px solid var(--line);
    padding: 14px 12px;
    text-align: center;
    vertical-align: middle;
}

.rating-table th {
    background: linear-gradient(180deg, #fff5f6, #fffafa);
    font-size: 13px;
    color: #5b2026;
}

.rating-table td:first-child,
.rating-table th:first-child {
    text-align: left;
    width: 34%;
    font-weight: 800;
}

.rating-table tr:last-child td {
    border-bottom: none;
}

.rating-table input[type='radio'] {
    width: 19px;
    height: 19px;
    accent-color: var(--primary);
}

.rating-radio {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.rating-radio span {
    display: none;
}

.nps-row {
    display: grid;
    grid-template-columns: repeat(11, minmax(38px, 1fr));
    gap: 8px;
}

.nps-option {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 11px 6px;
    text-align: center;
    cursor: pointer;
    background: #fff;
    font-weight: 900;
    color: var(--primary-2);
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.nps-option:hover {
    transform: translateY(-1px);
    border-color: rgba(237, 27, 36, 0.45);
}

.nps-option input {
    width: auto;
    display: none;
}

.nps-option:has(input:checked),
.check-card:has(input:checked) {
    border-color: var(--primary);
    background: linear-gradient(135deg, #fff1f2, #ffffff);
    color: var(--primary-2);
    box-shadow: 0 12px 28px rgba(237, 27, 36, 0.12);
}

.table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
}

.table th,
.table td {
    padding: 13px 12px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    font-size: 14px;
}

.table th {
    background: #fff5f6;
    color: #682028;
}

.table tr:hover td {
    background: #fffafa;
}

.badge {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 12px;
    text-transform: capitalize;
}

.badge-success {
    background: #dcfae6;
    color: var(--success);
}

.badge-warning {
    background: #fef0c7;
    color: var(--warning);
}

.badge-danger {
    background: #fee4e2;
    color: var(--danger);
}

.info-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.info-item {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px;
    background: linear-gradient(180deg, #ffffff, #fffafa);
}

.info-item span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 5px;
}

.info-item strong {
    font-size: 15px;
    word-break: break-word;
}

.footer {
    text-align: center;
    color: var(--muted);
    padding: 0 0 24px;
    font-size: 13px;
}

.client-topbar {
    justify-content: center;
}

.client-topbar .brand-wrap {
    width: 100%;
    justify-content: center;
    text-align: left;
}

.summary-card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.summary-box {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 19px;
    background: linear-gradient(180deg, #ffffff, #fff7f8);
}

.summary-box span,
.summary-box small {
    display: block;
    color: var(--muted);
    font-size: 13px;
}

.summary-box strong {
    display: block;
    font-size: 32px;
    margin: 6px 0 12px;
    color: var(--primary-2);
}

.progress-bar {
    height: 13px;
    border-radius: 999px;
    background: #ffe5e8;
    border: 1px solid #ffd1d6;
    overflow: hidden;
}

.progress-bar span {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--primary-2));
}

.rating-result-list {
    display: grid;
    gap: 12px;
}

.rating-result-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 15px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
    gap: 16px;
    align-items: center;
    background: #fff;
}

.rating-result-card strong,
.rating-result-card span {
    display: block;
}

.rating-result-card span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
}

.rating-bar-wrap {
    display: grid;
    grid-template-columns: minmax(120px, 1fr) 54px;
    gap: 10px;
    align-items: center;
}

.rating-bar-wrap b {
    color: var(--primary-2);
    text-align: right;
}

.table-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.table-actions .btn {
    padding: 9px 12px;
}

@media (max-width: 900px) {
    .topbar {
        flex-direction: column;
        align-items: stretch;
    }

    .top-links {
        width: 100%;
    }

    .top-links a {
        flex: 1;
    }

    .grid,
    .service-grid,
    .info-list,
    .summary-card {
        grid-template-columns: 1fr;
    }

    .nps-row {
        grid-template-columns: repeat(6, minmax(38px, 1fr));
    }

    .rating-result-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    body {
        background: #fffafa;
    }

    .topbar {
        width: calc(100% - 20px);
        margin: 10px auto 0;
        border-radius: 20px;
        padding: 14px;
    }

    .brand-wrap,
    .client-topbar .brand-wrap {
        align-items: center;
        justify-content: flex-start;
        gap: 11px;
        text-align: left;
    }

    .brand-logo-box {
        width: 58px;
        height: 54px;
        border-radius: 16px;
    }

    .brand-text h1 {
        font-size: 18px;
    }

    .brand-text p {
        font-size: 12px;
    }

    .brand-text small {
        font-size: 11px;
    }

    .page {
        padding: 0 10px 24px;
        margin-top: 14px;
    }

    .hero-card,
    .card {
        border-radius: 18px;
        padding: 18px;
    }

    .hero-card h2 {
        font-size: 23px;
    }

    .section-title {
        gap: 10px;
    }

    .section-title h3 {
        font-size: 19px;
    }

    .step-no {
        min-width: 39px;
        height: 39px;
        border-radius: 13px;
        font-size: 13px;
    }

    input,
    textarea,
    select,
    .btn,
    .top-links a {
        font-size: 16px;
    }

    .actions,
    .link-box,
    .top-links {
        flex-direction: column;
        align-items: stretch;
    }

    .actions .btn,
    .link-box .btn,
    .top-links a {
        width: 100%;
    }

    .rating-table-wrap {
        overflow: visible;
        border: none;
        background: transparent;
    }

    .rating-table {
        min-width: 0;
        border-collapse: separate;
        border-spacing: 0 12px;
    }

    .rating-table thead {
        display: none;
    }

    .rating-table,
    .rating-table tbody,
    .rating-table tr,
    .rating-table td {
        display: block;
        width: 100%;
    }

    .rating-table tr {
        border: 1px solid var(--line);
        border-radius: 18px;
        background: #fff;
        overflow: hidden;
        box-shadow: 0 9px 22px rgba(237, 27, 36, 0.08);
    }

    .rating-table td {
        border-bottom: 1px solid var(--line);
        padding: 12px;
        text-align: left;
    }

    .rating-table td:first-child {
        width: 100%;
        background: #fff3f4;
        color: var(--primary-2);
    }

    .rating-table td:last-child {
        border-bottom: none;
    }

    .rating-radio {
        width: 100%;
        justify-content: space-between;
    }

    .rating-radio span {
        display: inline;
        font-weight: 800;
        color: #3f3f46;
    }

    .rating-radio input[type='radio'] {
        width: 23px;
        height: 23px;
    }

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

    .rating-bar-wrap {
        grid-template-columns: 1fr 50px;
    }

    .table {
        min-width: 780px;
    }

    .card:has(.table) {
        overflow-x: auto;
    }
}

@media (max-width: 420px) {
    .brand-logo-box {
        width: 50px;
        height: 48px;
    }

    .brand-text h1 {
        font-size: 16px;
    }

    .brand-text small {
        display: none;
    }

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

/* Thank You Page Styles */
.thankyou-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 120px);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, #ffffff 0%, #f9fafb 100%);
    z-index: 1;
}

/* Confetti Canvas */
.confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 99;
}

/* Background Animated Blobs */
.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.45;
    mix-blend-mode: multiply;
    animation: float-blob 16s infinite alternate ease-in-out;
}

.blob-1 {
    width: 350px;
    height: 350px;
    background: rgba(237, 27, 36, 0.12);
    left: -5%;
    top: 10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: rgba(19, 122, 75, 0.08);
    right: -5%;
    bottom: 5%;
    animation-delay: 4s;
}

.blob-3 {
    width: 250px;
    height: 250px;
    background: rgba(255, 204, 0, 0.1);
    left: 35%;
    bottom: 15%;
    animation-delay: 8s;
}

@keyframes float-blob {
    0% {
        transform: translate(0px, 0px) scale(1);
    }
    33% {
        transform: translate(40px, -60px) scale(1.15);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

/* Glassmorphic Thank You Card */
.thankyou-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-top: 6px solid var(--primary); /* Brand red accent top bar */
    border-radius: 32px;
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.05), 
        0 4px 20px rgba(24, 24, 27, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 55px 40px;
    max-width: 520px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 10;
    animation: thankyouCardFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes thankyouCardFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Pulse checkmark halo */
.thankyou-icon-box {
    width: 110px;
    height: 110px;
    margin: 0 auto 28px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkmark-pulse-ring {
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(19, 122, 75, 0.08);
    animation: pulse-checkmark-halo 2.4s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    pointer-events: none;
    z-index: 1;
}

.delay-pulse {
    animation-delay: 0.8s;
}

@keyframes pulse-checkmark-halo {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(1.75); opacity: 0; }
}

.checkmark-svg {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: block;
    stroke-width: 4;
    stroke: var(--success);
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px var(--success);
    animation: fill-checkmark-success .4s ease-in-out .4s forwards, scale-checkmark-success .3s ease-in-out 0s both;
    position: relative;
    z-index: 2;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 4;
    stroke-miterlimit: 10;
    stroke: var(--success);
    fill: none;
    animation: stroke-checkmark-success 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke: #fff;
    animation: stroke-checkmark-success 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke-checkmark-success {
    100% { stroke-dashoffset: 0; }
}

@keyframes scale-checkmark-success {
    0%, 100% { transform: none; }
    50% { transform: scale3d(1.08, 1.08, 1); }
}

@keyframes fill-checkmark-success {
    100% { box-shadow: inset 0px 0px 0px 50px var(--success); }
}

/* Success Badge */
.success-badge-enterprise {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ecfdf3;
    color: #12b76a;
    border: 1px solid #d1fadf;
    border-radius: 99px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #12b76a;
    display: inline-block;
}

.thankyou-card h2 {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin: 0 0 16px;
    background: linear-gradient(135deg, #18181b 0%, #3f3f46 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle-enterprise {
    font-size: 16px;
    font-weight: 600;
    color: #4b5563;
    margin: 0 0 20px;
    line-height: 1.45;
}

.description-enterprise {
    font-size: 15px;
    line-height: 1.75;
    color: #52525b;
    margin: 0 auto 36px;
    max-width: 460px;
}

/* Summary Section */
.summary-section-enterprise {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
    text-align: left;
}

.meta-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(249, 250, 251, 0.7);
    border: 1px solid rgba(229, 231, 235, 0.7);
    border-radius: 18px;
    padding: 16px 20px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.meta-card:hover {
    transform: translateY(-2px);
    background: #ffffff;
    border-color: rgba(237, 27, 36, 0.18);
    box-shadow: 0 10px 24px rgba(24, 24, 27, 0.04);
}

.meta-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #fff0f1;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.meta-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.meta-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--muted);
    letter-spacing: 0.08em;
}

.meta-val {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

/* Centered Pill Button */
.action-wrap-enterprise {
    display: flex;
    justify-content: center;
}

.btn-primary-gradient {
    width: 100%;
    max-width: 320px;
    padding: 15px 36px;
    font-size: 15px;
    border-radius: 99px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(237, 27, 36, 0.24);
    border: none;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(237, 27, 36, 0.36);
    filter: brightness(1.08);
}

.btn-primary-gradient:active {
    transform: translateY(-1px);
}

.thankyou-footer-text {
    font-size: 13px;
    color: var(--muted);
    margin-top: 36px;
    text-align: center;
    letter-spacing: 0.02em;
}

@media (max-width: 640px) {
    .thankyou-container {
        padding: 40px 16px;
    }
    
    .thankyou-card {
        padding: 44px 24px;
    }
    
    .thankyou-card h2 {
        font-size: 28px;
    }
    
    .description-enterprise {
        margin-bottom: 28px;
    }
    
    .meta-card {
        padding: 14px 16px;
    }
    
    .meta-val {
        font-size: 13px;
    }
}

@media print {
    body {
        background: #fff;
    }

    body::before,
    .topbar,
    .footer,
    .actions,
    .btn,
    .top-links {
        display: none !important;
    }

    .page {
        margin: 0;
        max-width: 100%;
        padding: 0;
    }

    .card,
    .hero-card {
        box-shadow: none;
        border-color: #d0d5dd;
        page-break-inside: avoid;
    }
}
