/* ═══════════════════════════════════════════════
   SURETICS — FEEDBACK PAGE
   Matching White & Blue Liquid Glass Theme
   ═══════════════════════════════════════════════ */

/* ── Design Tokens (matching main site) ── */
:root {
    --blue-700: #004EAA;
    --blue-600: #0062CC;
    --blue-500: #007AFF;
    --blue-400: #3395FF;
    --blue-300: #66B0FF;
    --blue-200: #99CAFF;
    --blue-100: #CCE4FF;
    --blue-50: #E8F3FF;
    --blue-glow: rgba(0, 122, 255, 0.3);
    --blue-glow-soft: rgba(0, 122, 255, 0.1);
    --blue-glow-strong: rgba(0, 122, 255, 0.5);

    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    --glass-bg: rgba(255, 255, 255, 0.55);
    --glass-bg-hover: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.7);
    --glass-border-hover: rgba(0, 122, 255, 0.25);
    --glass-shadow: 0 8px 32px rgba(0, 30, 80, 0.08);
    --glass-shadow-lg: 0 20px 60px rgba(0, 30, 80, 0.12);
    --glass-blur: 24px;
    --glass-blur-heavy: 48px;
    --glass-blur-mega: 80px;

    --green-500: #34C759;
    --red-500: #FF3B30;
    --orange-500: #FF9500;
    --yellow-500: #FFCC00;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --spring: cubic-bezier(0.25, 1, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --t-fast: 0.2s var(--ease-out);
    --t-base: 0.4s var(--spring);
    --t-slow: 0.6s var(--spring);

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --radius-full: 100px;
}

/* ── Reset ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    background: var(--gray-50);
    color: var(--gray-800);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    color: inherit;
}

/* ── LIQUID GLASS ── */
.liquid-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(0, 0, 0, 0.02);
    position: relative;
}

.liquid-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.95) 30%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.95) 70%, transparent 100%);
    pointer-events: none;
    border-radius: inherit;
}

.card-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(0, 122, 255, 0.06), transparent 40%);
    z-index: 0;
}

/* ── AMBIENT BACKGROUND ── */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    background: linear-gradient(165deg, var(--white) 0%, var(--blue-50) 30%, var(--gray-50) 60%, var(--white) 100%);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    will-change: transform;
}

.orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.12) 0%, transparent 70%);
    top: -15%;
    right: -10%;
    animation: orb1 20s ease-in-out infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.08) 0%, transparent 70%);
    bottom: -20%;
    left: -10%;
    animation: orb2 26s ease-in-out infinite;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.06) 0%, transparent 70%);
    top: 50%;
    left: 40%;
    animation: orb3 18s ease-in-out infinite;
}

.orb-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(100, 149, 237, 0.07) 0%, transparent 70%);
    top: 20%;
    right: 25%;
    animation: orb4 22s ease-in-out infinite;
}

.orb-5 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.05) 0%, transparent 70%);
    bottom: 10%;
    right: 40%;
    animation: orb5 24s ease-in-out infinite;
}

@keyframes orb1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-60px, 80px) scale(1.15);
    }

    66% {
        transform: translate(50px, -60px) scale(0.9);
    }
}

@keyframes orb2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(70px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-50px, 70px) scale(0.85);
    }
}

@keyframes orb3 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-80px, 60px);
    }
}

@keyframes orb4 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(60px, -70px);
    }
}

@keyframes orb5 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-40px, -50px);
    }
}

.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* ── FLOATING PARTICLES ── */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--blue-400);
    opacity: 0;
    animation: particleFloat var(--dur, 12s) var(--delay, 0s) ease-in-out infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translate(0, 100vh) scale(0);
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        opacity: 0;
        transform: translate(var(--dx, 40px), -100px) scale(1);
    }
}


/* ── NAVIGATION ── */
.feedback-nav {
    position: fixed;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: min(600px, 92vw);
}

.nav-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: var(--radius-full);
    padding: 8px 16px 8px 12px;
    height: 52px;
    gap: 12px;
    border-color: rgba(0, 30, 80, 0.06);
    box-shadow: 0 8px 40px rgba(0, 30, 80, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.nav-back {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-500);
    padding: 6px 12px 6px 6px;
    border-radius: var(--radius-full);
    transition: all var(--t-fast);
}

.nav-back:hover {
    color: var(--blue-600);
    background: var(--blue-glow-soft);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    object-fit: contain;
}

.nav-brand-text {
    font-weight: 800;
    font-size: 0.9375rem;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

.brand-highlight {
    color: var(--blue-500);
}

.nav-mail-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    background: var(--blue-500);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    transition: all var(--t-fast);
    box-shadow: 0 2px 12px var(--blue-glow-soft);
}

.nav-mail-btn:hover {
    background: var(--blue-600);
    box-shadow: 0 4px 20px var(--blue-glow);
    transform: scale(1.03);
}


/* ═══════════════════════
   HERO SECTION
   ═══════════════════════ */
.feedback-hero {
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 40px;
    text-align: center;
}

.hero-content {
    max-width: 600px;
}

.hero-icon-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-icon {
    color: var(--blue-500);
    position: relative;
    z-index: 2;
    animation: iconBounce 3s ease-in-out infinite;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid var(--blue-200);
    animation: ringPulse 3s ease-in-out infinite;
}

.icon-ring-1 {
    width: 80px;
    height: 80px;
    opacity: 0.4;
    animation-delay: 0s;
}

.icon-ring-2 {
    width: 100px;
    height: 100px;
    opacity: 0.25;
    animation-delay: 0.3s;
}

.icon-ring-3 {
    width: 120px;
    height: 120px;
    opacity: 0.15;
    animation-delay: 0.6s;
}

@keyframes ringPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: var(--ring-opacity, 0.3);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.1;
    }
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.gradient-text {
    background: linear-gradient(135deg, var(--blue-600), var(--blue-400), var(--blue-500));
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 5s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 300% center;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto;
}


/* ═══════════════════════
   FEEDBACK FORM
   ═══════════════════════ */
.feedback-form-section {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px 48px;
}

.feedback-form {
    border-radius: var(--radius-xl);
    padding: 44px 40px;
    overflow: hidden;
    --glass-bg: rgba(255, 255, 255, 0.65);
    border-color: rgba(0, 122, 255, 0.08);
}

.form-glow {
    position: absolute;
    top: -40%;
    left: -20%;
    width: 140%;
    height: 180%;
    background: radial-gradient(ellipse at 30% 20%, rgba(0, 122, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    animation: glowShift 8s ease-in-out infinite;
}

@keyframes glowShift {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -15px);
    }
}

/* Step Indicator */
.form-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.step-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    background: var(--gray-100);
    color: var(--gray-400);
    border: 2px solid var(--gray-200);
    transition: all 0.5s var(--spring);
    position: relative;
    flex-shrink: 0;
}

.step-dot.active {
    background: var(--blue-500);
    color: var(--white);
    border-color: var(--blue-500);
    box-shadow: 0 4px 16px var(--blue-glow);
    transform: scale(1.1);
}

.step-dot.done {
    background: var(--green-500);
    color: var(--white);
    border-color: var(--green-500);
    box-shadow: 0 4px 16px rgba(52, 199, 89, 0.3);
}

.step-line {
    width: 80px;
    height: 3px;
    background: var(--gray-200);
    border-radius: 2px;
    overflow: hidden;
    flex-shrink: 0;
}

.step-line-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--blue-500), var(--blue-400));
    border-radius: 2px;
    transition: width 0.6s var(--spring);
}

/* Form Steps */
.form-step {
    position: relative;
    z-index: 1;
    animation: stepIn 0.5s var(--spring);
}

.form-step.hidden {
    display: none;
}

@keyframes stepIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.step-number {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--blue-500);
    background: var(--blue-50);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 0.05em;
}

/* Input Fields */
.input-group {
    margin-bottom: 22px;
}

.input-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.required {
    color: var(--red-500);
}

.optional {
    color: var(--gray-400);
    font-weight: 400;
    font-size: 0.75rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all 0.3s var(--spring);
    overflow: hidden;
}

.input-wrapper:focus-within {
    border-color: var(--blue-500);
    box-shadow: 0 0 0 4px var(--blue-glow-soft), 0 4px 16px rgba(0, 30, 80, 0.06);
}

.input-wrapper:focus-within .input-shine {
    opacity: 1;
}

.input-icon {
    padding: 0 0 0 16px;
    color: var(--gray-400);
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.input-wrapper:focus-within .input-icon {
    color: var(--blue-500);
}

.input-wrapper input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 14px 16px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-800);
    font-family: var(--font);
}

.input-wrapper input::placeholder {
    color: var(--gray-400);
}

.input-shine {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue-400), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: shineSlide 2s ease-in-out infinite;
}

@keyframes shineSlide {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.input-error {
    display: none;
    font-size: 0.75rem;
    color: var(--red-500);
    margin-top: 6px;
    font-weight: 500;
    animation: errorShake 0.4s ease;
}

.input-error.visible {
    display: block;
}

@keyframes errorShake {

    0%,
    100% {
        transform: translateX(0);
    }

    20%,
    60% {
        transform: translateX(-6px);
    }

    40%,
    80% {
        transform: translateX(6px);
    }
}

/* Textarea */
.textarea-wrapper {
    position: relative;
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all 0.3s var(--spring);
    overflow: hidden;
}

.textarea-wrapper:focus-within {
    border-color: var(--blue-500);
    box-shadow: 0 0 0 4px var(--blue-glow-soft), 0 4px 16px rgba(0, 30, 80, 0.06);
}

.textarea-wrapper:focus-within .input-shine {
    opacity: 1;
}

.textarea-wrapper textarea {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    padding: 16px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-800);
    font-family: var(--font);
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.textarea-wrapper textarea::placeholder {
    color: var(--gray-400);
}

.char-count {
    padding: 6px 16px 10px;
    font-size: 0.6875rem;
    color: var(--gray-400);
    text-align: right;
}

/* Rating Stars */
.rating-stars {
    display: flex;
    gap: 8px;
    margin-bottom: 4px;
}

.star {
    padding: 4px;
    transition: all 0.3s var(--bounce);
    border-radius: 8px;
}

.star svg {
    fill: var(--gray-200);
    stroke: var(--gray-300);
    stroke-width: 1;
    transition: all 0.3s var(--bounce);
}

.star:hover svg,
.star.hovered svg {
    fill: var(--yellow-500);
    stroke: var(--yellow-500);
    transform: scale(1.2);
    filter: drop-shadow(0 2px 8px rgba(255, 204, 0, 0.4));
}

.star.active svg {
    fill: var(--yellow-500);
    stroke: var(--yellow-500);
    filter: drop-shadow(0 2px 8px rgba(255, 204, 0, 0.4));
}

.star:active {
    transform: scale(0.9);
}

.rating-label {
    font-size: 0.75rem;
    color: var(--gray-400);
    display: block;
    margin-bottom: 4px;
    min-height: 18px;
    transition: color 0.3s ease;
}

/* Category Chips */
.category-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-600);
    background: var(--gray-100);
    border: 1.5px solid var(--gray-200);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: all 0.3s var(--spring);
    white-space: nowrap;
}

.chip:hover {
    background: var(--blue-50);
    border-color: var(--blue-300);
    color: var(--blue-600);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--blue-glow-soft);
}

.chip.selected {
    background: var(--blue-500);
    border-color: var(--blue-500);
    color: var(--white);
    box-shadow: 0 4px 16px var(--blue-glow);
    transform: scale(1.05);
}

/* Step Navigation */
.step-nav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    gap: 12px;
}

.btn-back {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-500);
    padding: 12px 20px;
    border-radius: var(--radius-full);
    transition: all var(--t-fast);
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
}

.btn-back:hover {
    color: var(--gray-800);
    background: var(--gray-200);
    transform: translateX(-2px);
}

.btn-next {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--white);
    background: var(--blue-500);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    transition: all var(--t-base);
    box-shadow: 0 4px 20px var(--blue-glow);
    margin-left: auto;
    position: relative;
    overflow: hidden;
}

.btn-next::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-next:hover {
    background: var(--blue-600);
    box-shadow: 0 8px 30px var(--blue-glow-strong);
    transform: translateY(-2px);
}

.btn-next:hover::after {
    left: 100%;
}

.btn-next:active {
    transform: translateY(0) scale(0.97);
}

/* Submit Button */
.btn-submit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
    padding: 16px 32px;
    border-radius: var(--radius-full);
    transition: all var(--t-base);
    box-shadow: 0 4px 24px var(--blue-glow);
    margin-left: auto;
    position: relative;
    overflow: hidden;
}

.btn-submit::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.btn-submit:hover {
    box-shadow: 0 8px 36px var(--blue-glow-strong);
    transform: translateY(-2px);
}

.btn-submit:hover::after {
    left: 100%;
}

.btn-submit:active {
    transform: translateY(0) scale(0.97);
}

.btn-submit.loading .btn-submit-text {
    display: none;
}

.btn-submit.loading .btn-submit-arrow {
    display: none;
}

.btn-submit.loading .btn-submit-spinner {
    display: block;
}

.btn-submit-spinner {
    display: none;
    width: 22px;
    height: 22px;
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* ═══════════════════════
   SUCCESS STATE
   ═══════════════════════ */
.form-success {
    text-align: center;
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.form-success.hidden {
    display: none;
}

.form-success:not(.hidden) {
    animation: successReveal 0.8s var(--spring);
}

@keyframes successReveal {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.success-icon-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-check {
    position: relative;
    z-index: 2;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: checkDraw 0.8s 0.3s ease forwards;
}

@keyframes checkDraw {
    to {
        stroke-dashoffset: 0;
    }
}

.success-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(52, 199, 89, 0.2);
    animation: ringExpand 1s var(--spring) forwards;
}

@keyframes ringExpand {
    from {
        width: 40px;
        height: 40px;
        opacity: 1;
        border-color: rgba(52, 199, 89, 0.5);
    }

    to {
        width: 100px;
        height: 100px;
        opacity: 0;
        border-color: rgba(52, 199, 89, 0);
    }
}

.success-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.success-desc {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.7;
    max-width: 400px;
    margin: 0 auto 32px;
}

.success-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-500);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    transition: all var(--t-base);
    box-shadow: 0 4px 20px var(--blue-glow);
}

.btn-primary:hover {
    background: var(--blue-600);
    box-shadow: 0 8px 30px var(--blue-glow-strong);
    transform: translateY(-2px);
}

.btn-secondary {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-600);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    transition: all var(--t-fast);
}

.btn-secondary:hover {
    color: var(--gray-900);
    background: var(--gray-200);
}


/* ═══════════════════════
   CONTACT BAR
   ═══════════════════════ */
.contact-bar {
    padding: 0 24px 80px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    border-radius: var(--radius-lg);
    transition: all var(--t-base);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--glass-shadow-lg);
    border-color: var(--glass-border-hover);
}

.contact-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--blue-50);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--t-base);
}

.contact-card:hover .contact-icon-wrap {
    background: var(--blue-100);
    transform: scale(1.1);
}

.contact-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    margin-bottom: 2px;
}

.contact-value {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--gray-800);
    transition: color 0.2s ease;
}

a.contact-value:hover {
    color: var(--blue-600);
}


/* ═══════════════════════
   MINI FOOTER
   ═══════════════════════ */
.mini-footer {
    padding: 0 24px 32px;
    max-width: 800px;
    margin: 0 auto;
}

.mini-footer-inner {
    border-radius: var(--radius-xl);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.footer-brand {
    font-weight: 800;
    font-size: 0.9375rem;
    color: var(--gray-900);
}

.mini-footer-inner p {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.footer-email {
    font-size: 0.75rem;
    color: var(--blue-500);
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-email:hover {
    color: var(--blue-600);
}


/* ═══════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════ */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-animate="slide-right"] {
    transform: translateX(-40px);
}

[data-animate="slide-left"] {
    transform: translateX(40px);
}

[data-animate="scale-in"] {
    transform: scale(0.9);
}

[data-animate="bounce-in"] {
    transform: scale(0.5);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

[data-animate="bounce-in"].animated {
    animation: bounceIn 0.8s var(--bounce);
}

@keyframes bounceIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* ═══════════════════════
   RESPONSIVE
   ═══════════════════════ */
@media(max-width:768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .feedback-form {
        padding: 32px 24px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
    }

    .mini-footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .step-line {
        width: 40px;
    }
}

@media(max-width:400px) {
    .hero-title {
        font-size: 2rem;
    }

    .nav-pill {
        padding: 8px 10px;
    }

    .feedback-form {
        padding: 28px 16px;
    }

    .category-chips {
        gap: 6px;
    }

    .chip {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .step-nav-row {
        flex-direction: column;
    }

    .step-nav-row .btn-next,
    .step-nav-row .btn-submit {
        width: 100%;
        justify-content: center;
    }

    .step-nav-row .btn-back {
        width: 100%;
        justify-content: center;
    }
}

/* ── Reduced Motion ── */
@media(prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    [data-animate] {
        opacity: 1;
        transform: none;
    }

    html {
        scroll-behavior: auto;
    }
}