:root {
    --gradient-start: #5a60f1;
    --gradient-mid: #8a6df6;
    --gradient-end: #f284ff;
    --card-bg: #ffffff;
    --muted-text: #495057;
    --surface-muted: #f8f9fa;
    --border-radius: 18px;
    --shadow-lg: 0 18px 40px rgba(45, 55, 72, 0.18);
}

* {
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 45%, var(--gradient-end) 100%);
    background-size: 200% 200%;
    animation: gradientFlow 18s ease infinite;
    min-height: 100vh;
    margin: 0;
    padding: clamp(16px, 3vw, 32px) clamp(16px, 4vw, 48px) clamp(32px, 5vw, 72px);
    color: #1f2933;
    font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    position: relative;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(12px, 3vw, 24px);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
}

.brand-wordmark,
.accent-script {
    font-family: 'Great Vibes', cursive;
    letter-spacing: 0.08em;
    font-weight: 400;
}

.brand-wordmark {
    color: var(--gradient-start);
    font-size: clamp(1.8rem, 5vw, 2.4rem);
    text-align: center;
    margin: 0;
}

.floating-elements {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.floating-elements span {
    position: absolute;
    font-size: clamp(24px, 6vw, 56px);
    opacity: 0.15;
    animation: floatDrift linear infinite;
    filter: drop-shadow(0 12px 16px rgba(17, 24, 39, 0.18));
}

.floating-elements span:nth-child(1) {
    top: 12%;
    left: 6%;
    animation-duration: 22s;
    animation-delay: -4s;
}

.floating-elements span:nth-child(2) {
    top: 68%;
    left: 18%;
    animation-duration: 18s;
    animation-delay: -10s;
}

.floating-elements span:nth-child(3) {
    top: 28%;
    right: 12%;
    animation-duration: 26s;
    animation-delay: -6s;
}

.floating-elements span:nth-child(4) {
    bottom: 12%;
    right: 22%;
    animation-duration: 20s;
    animation-delay: -14s;
}

.floating-elements span:nth-child(5) {
    top: 52%;
    left: 50%;
    transform: translateX(-50%);
    animation-duration: 24s;
    animation-delay: -2s;
}

.floating-elements span:nth-child(6) {
    top: 8%;
    right: 4%;
    animation-duration: 30s;
    animation-delay: -16s;
}

@keyframes floatDrift {
    0% {
        transform: translateY(0) translateX(0) scale(1) rotate(0deg);
    }
    50% {
        transform: translateY(-40px) translateX(24px) scale(1.08) rotate(6deg);
    }
    100% {
        transform: translateY(0) translateX(-12px) scale(1) rotate(-4deg);
    }
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.brand-logo {
    max-height: 64px;
    width: auto;
}

.container {
    width: min(100%, 860px);
    background: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: clamp(20px, 3.2vw, 40px);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 4vw, 40px);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.container::before {
    content: '';
    position: absolute;
    inset: 18% 12% 12% 45%;
    background: url('kahvefalim_logo.jpg') center/240px no-repeat;
    opacity: 0.05;
    filter: grayscale(1) contrast(1.2);
    pointer-events: none;
    transform: rotate(-6deg);
    z-index: 0;
}

.container::after {
    content: '';
    position: absolute;
    top: -28%;
    right: -18%;
    width: clamp(280px, 40vw, 420px);
    height: clamp(280px, 40vw, 420px);
    background: radial-gradient(circle at center, rgba(242, 132, 255, 0.6) 0%, rgba(90, 96, 241, 0.1) 48%, rgba(90, 96, 241, 0));
    mix-blend-mode: screen;
    opacity: 0.65;
    pointer-events: none;
    -webkit-mask-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    mask-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    z-index: 0;
}

.language-select-group {
    display: grid;
    gap: 8px;
    padding: clamp(12px, 2.8vw, 20px) clamp(14px, 3vw, 22px);
    margin-bottom: clamp(8px, 2.6vw, 18px);
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.18);
    border-radius: 16px;
    box-shadow: 0 14px 28px rgba(67, 56, 202, 0.12);
}

.language-select-group label {
    font-weight: 600;
    color: #1b1f3b;
    letter-spacing: 0.3px;
}

.language-select-group select {
    border-radius: 12px;
    padding: 12px 16px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: #ffffff;
    font-weight: 600;
    color: #25313b;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.language-select-group select:focus {
    outline: 3px solid rgba(138, 109, 246, 0.25);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.16);
}

.header {
    text-align: center;
    display: grid;
    gap: 12px;
}

.header h1 {
    font-size: clamp(1.75rem, 4.5vw, 2.6rem);
    margin: 0;
    color: #1b1f3b;
}

.header p {
    margin: 0;
    color: var(--muted-text);
    font-size: clamp(1rem, 2.6vw, 1.1rem);
}

main {
    display: grid;
    gap: clamp(24px, 4vw, 40px);
}

main section {
    margin: 0;
    display: grid;
    gap: 16px;
}

.intro-section h2 {
    font-size: clamp(1.4rem, 3.6vw, 2.05rem);
    color: #2d3748;
    margin-bottom: 4px;
}

.intro-section p {
    margin: 0;
    color: var(--muted-text);
    line-height: 1.6;
}

.intro-subtext {
    margin: 0;
    color: #384052;
    line-height: 1.6;
    font-weight: 500;
}

.visual-highlights {
    display: grid;
    gap: 16px;
    margin-top: 12px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.highlight-card {
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(90, 96, 241, 0.12), rgba(242, 132, 255, 0.08));
    border: 1px solid rgba(99, 102, 241, 0.18);
    box-shadow: 0 12px 26px rgba(79, 70, 229, 0.12);
    position: relative;
    overflow: hidden;
}

.highlight-card::after {
    content: '';
    position: absolute;
    inset: auto -40% -40% auto;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at center, rgba(242, 132, 255, 0.3), rgba(242, 132, 255, 0));
    transform: rotate(18deg);
    pointer-events: none;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    background: rgba(99, 102, 241, 0.12);
    color: var(--gradient-start);
    box-shadow: inset 0 0 0 1px rgba(99, 102, 241, 0.2);
}

.highlight-text {
    margin: 0;
    color: #2d3650;
    line-height: 1.55;
    font-weight: 500;
}

.cta-callout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 8px 0 0;
    padding: clamp(16px, 3vw, 22px) clamp(18px, 3.5vw, 28px);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(90, 96, 241, 0.16), rgba(242, 132, 255, 0.12));
    border: 1px solid rgba(99, 102, 241, 0.25);
    box-shadow: 0 14px 30px rgba(79, 70, 229, 0.16);
}

.cta-callout p {
    margin: 0;
    color: #25325a;
    font-weight: 600;
    line-height: 1.5;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(90, 96, 241, 0.95), rgba(242, 132, 255, 0.85));
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 16px 28px rgba(90, 96, 241, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button::after {
    content: '›';
    font-size: 1.2rem;
    line-height: 1;
}

.cta-button:hover,
.cta-button:focus {
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(79, 70, 229, 0.32);
}

.benefits-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #3c4048;
    line-height: 1.55;
}

.benefit-icon {
    color: var(--gradient-start);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1;
}

.quote {
    font-style: italic;
    color: #5f6c7b;
    text-align: center;
    margin: 0;
    padding: clamp(16px, 3vw, 22px);
    background: var(--surface-muted);
    border-radius: 14px;
    border-left: 4px solid var(--gradient-start);
    line-height: 1.6;
    opacity: 1;
    position: relative;
    overflow: hidden;
    font-family: 'Playfair Display', 'Times New Roman', serif;
}

.quote-text {
    display: inline-block;
    opacity: 0;
    will-change: transform, opacity;
}

.style-description {
    margin-top: 6px;
    color: #495057;
}

.experience-counter {
    margin-top: 6px;
    color: #6c757d;
}

.quote-anim-fade {
    animation: quoteFadeIn 0.8s ease forwards;
}

.quote-anim-slide {
    animation: quoteSlideIn 0.85s ease forwards;
}

.quote-anim-zoom {
    animation: quoteZoomIn 0.9s ease forwards;
}

.quote-anim-tilt {
    animation: quoteTiltIn 0.9s ease forwards;
}

@keyframes quoteFadeIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes quoteSlideIn {
    from {
        opacity: 0;
        transform: translateX(-16px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes quoteZoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes quoteTiltIn {
    from {
        opacity: 0;
        transform: rotateX(15deg);
    }
    to {
        opacity: 1;
        transform: rotateX(0deg);
    }
}

.form-steps {
    display: grid;
    gap: clamp(18px, 3vw, 26px);
}

.step {
    display: grid;
    gap: 14px;
    padding: clamp(18px, 3vw, 24px);
    background: rgba(255, 255, 255, 0.94);
    border-radius: 18px;
    border: 1px solid rgba(99, 102, 241, 0.18);
    box-shadow: 0 10px 24px rgba(79, 70, 229, 0.1);
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    inset: -24% auto auto -24%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.14), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.step::after {
    content: '';
    position: absolute;
    inset: auto -40% -32% auto;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at center, rgba(242, 132, 255, 0.18), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.step-content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(90, 96, 241, 0.9), rgba(242, 132, 255, 0.7));
    color: white;
    border-radius: 50%;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.step .form-label {
    font-weight: 600;
    color: #25313b;
    margin-bottom: 6px;
}

.step .form-control,
.step .form-select {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(102, 126, 234, 0.25);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
    background-color: rgba(255, 255, 255, 0.9);
}

.phone-input-wrapper {
    display: grid;
    grid-template-columns: minmax(148px, 0.9fr) minmax(0, 1fr);
    gap: 10px;
}

.phone-input-wrapper .form-select {
    display: flex;
    align-items: center;
    font-weight: 500;
    padding-right: 32px;
}

.phone-input-wrapper .form-control {
    min-width: 0;
}

.phone-number-field {
    position: relative;
}

.phone-number-field .form-control {
    padding-left: 78px;
    transition: padding 0.2s ease;
}

.phone-dial-code {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(102, 126, 234, 0.12);
    color: #5a60f1;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.4px;
    pointer-events: none;
    white-space: nowrap;
}

.phone-dial-code.phone-dial-code--empty {
    background: rgba(148, 163, 184, 0.12);
    color: #64748b;
}

@media (max-width: 576px) {
    .phone-input-wrapper {
        grid-template-columns: 1fr;
    }

    .phone-number-field .form-control {
        padding-left: 72px;
    }
}

.step .form-control:focus,
.step .form-select:focus {
    border-color: rgba(90, 96, 241, 0.55);
    box-shadow: 0 0 0 4px rgba(90, 96, 241, 0.18);
}

.step .form-control.is-invalid,
.step .form-select.is-invalid,
.was-validated .step .form-control:invalid,
.was-validated .step .form-select:invalid {
    border-color: rgba(242, 132, 255, 0.65);
    box-shadow: 0 0 0 3px rgba(242, 132, 255, 0.2);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border: none;
    width: 100%;
    padding: 14px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.4px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover,
.btn-primary:focus {
    box-shadow: 0 12px 24px rgba(102, 126, 234, 0.35);
    transform: translateY(-1px);
}

.btn-primary:focus-visible {
    outline: 3px solid rgba(102, 126, 234, 0.45);
    outline-offset: 2px;
}

#reportResult {
    display: none;
    margin-top: 24px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 24px;
    padding: clamp(24px, 4vw, 36px);
    box-shadow: var(--shadow-lg);
    text-align: left;
    position: relative;
    overflow: hidden;
}

#reportResult::before,
#reportResult::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.35;
    pointer-events: none;
}

#reportResult::before {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at center, rgba(90, 96, 241, 0.45), transparent 70%);
    top: -70px;
    right: -40px;
}

#reportResult::after {
    width: 140px;
    height: 140px;
    background: radial-gradient(circle at center, rgba(242, 132, 255, 0.4), transparent 70%);
    bottom: -60px;
    left: -30px;
}

#reportResult .report-status {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    margin-bottom: clamp(18px, 3vw, 28px);
    position: relative;
    z-index: 1;
}

#reportResult .status-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(90, 96, 241, 0.92), rgba(242, 132, 255, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    box-shadow: 0 16px 32px rgba(91, 99, 243, 0.35);
}

#reportResult .status-text h3 {
    margin: 0;
    font-size: clamp(1.3rem, 2.6vw, 1.6rem);
    color: #1f2937;
}

#reportResult .status-text p {
    margin: 6px 0 0;
    color: var(--muted-text);
    line-height: 1.6;
}

#reportResult .status-text .status-message {
    color: #1f2937;
    font-weight: 600;
}

#reportResult .status-text .status-message:empty {
    display: none;
}

#reportResult .status-text .status-reminder {
    font-weight: 500;
    color: #374151;
}

#reportResult .report-body {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 20px;
    padding: clamp(20px, 3vw, 28px);
    box-shadow: inset 0 0 0 1px rgba(99, 102, 241, 0.08);
}

#reportResult h2 {
    margin-top: 0;
    margin-bottom: 18px;
    color: #2d3748;
    font-size: clamp(1.35rem, 2.6vw, 1.75rem);
}

#reportResult .report-section {
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px dashed rgba(99, 102, 241, 0.28);
}

#reportResult .report-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

#reportResult .report-section h3 {
    margin: 0 0 10px;
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    color: #3c366b;
}

#reportResult .report-section p {
    margin: 0;
    color: var(--muted-text);
    line-height: 1.7;
}

#reportResult .report-section ul {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--muted-text);
    line-height: 1.7;
}

#reportResult .report-section li + li {
    margin-top: 8px;
}

#reportResult .report-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

#reportResult .report-actions .btn {
    flex: 1 1 220px;
    border-radius: 999px;
    font-weight: 600;
}

#reportResult .report-actions .btn-secondary {
    background: rgba(99, 102, 241, 0.1);
    color: #4c1d95;
    border: none;
}

#reportResult .report-actions .btn-secondary:hover,
#reportResult .report-actions .btn-secondary:focus {
    background: rgba(99, 102, 241, 0.18);
    color: #2d1b69;
}

.payment-note {
    margin-top: 16px;
    padding: clamp(14px, 2.8vw, 18px) clamp(16px, 3vw, 22px);
    background: rgba(99, 102, 241, 0.12);
    border-radius: 18px;
    border-left: 4px solid rgba(99, 102, 241, 0.45);
    color: #3a4156;
    font-size: 0.97rem;
    line-height: 1.7;
    box-shadow: 0 12px 24px rgba(76, 81, 191, 0.12);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.payment-status-message {
    margin-top: 12px;
    padding: clamp(12px, 2.5vw, 16px) clamp(14px, 2.8vw, 20px);
    border-radius: 16px;
    font-size: 0.96rem;
    line-height: 1.6;
    font-weight: 500;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
    border-left: 4px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    word-break: break-word;
}

.payment-status-message.payment-status--info {
    background: rgba(59, 130, 246, 0.12);
    color: #1d4ed8;
    border-color: rgba(59, 130, 246, 0.35);
}

.payment-status-message.payment-status--success {
    background: rgba(16, 185, 129, 0.12);
    color: #047857;
    border-color: rgba(16, 185, 129, 0.45);
}

.payment-status-message.payment-status--error {
    background: rgba(239, 68, 68, 0.14);
    color: #b91c1c;
    border-color: rgba(239, 68, 68, 0.45);
}

.full-report-test-note {
    margin-top: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #475569;
}

.full-report-test-note::before {
    content: 'ℹ️';
    margin-right: 6px;
}

.payment-note:focus-within,
.payment-note:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(76, 81, 191, 0.18);
}

.payment-note a {
    color: #4c51bf;
    font-weight: 600;
    text-decoration: none;
}

.payment-note a:hover,
.payment-note a:focus {
    text-decoration: underline;
}

#fullReportContainer {
    display: none;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px dashed rgba(99, 102, 241, 0.24);
}

#fullReportContainer h3 {
    margin: 0 0 14px;
    font-size: clamp(1.05rem, 2.1vw, 1.25rem);
    color: #3c366b;
}

#fullReportContent p {
    margin: 0;
    color: var(--muted-text);
    line-height: 1.75;
}

#fullReportContent p + p {
    margin-top: 12px;
}

#fullReportContent ul,
#fullReportContent ol {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--muted-text);
    line-height: 1.7;
}

#fullReportContent li + li {
    margin-top: 8px;
}


.report-visual {
    margin-top: clamp(20px, 3vw, 28px);
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 2vw, 14px);
}

.report-visual-heading {
    margin: 0;
    font-size: clamp(1.05rem, 2.6vw, 1.25rem);
    color: #1f2933;
}

.report-visual-frame {
    border-radius: clamp(16px, 3vw, 20px);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 36px rgba(17, 24, 39, 0.15);
    overflow: hidden;
    padding: clamp(8px, 2vw, 12px);
}

.report-visual-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: clamp(12px, 2.4vw, 16px);
}

.email-status {
    margin-top: clamp(12px, 2vw, 18px);
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--muted-text);
}

.email-status-success {
    color: #13795b;
    font-weight: 600;
}

.email-status-error {
    color: #b42324;
    font-weight: 600;
}

.loader {
    --loader-primary: #6f62eb;
    --loader-secondary: #2fb5a2;
    --loader-highlight: #ff9fd6;
    display: none;
    margin: clamp(14px, 3vw, 24px) auto 0;
    padding: clamp(14px, 3vw, 22px);
    max-width: 420px;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 20px;
    border: 1px solid rgba(111, 98, 235, 0.12);
    box-shadow: 0 18px 36px rgba(17, 24, 39, 0.14);
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.loader-visual {
    display: flex;
    justify-content: center;
    margin-bottom: clamp(6px, 1.6vw, 12px);
}

.meditation-loader {
    --loader-primary: #6f62eb;
    --loader-secondary: #2fb5a2;
    --loader-highlight: #ff9fd6;
    position: relative;
    width: clamp(58px, 14vw, 90px);
    aspect-ratio: 1 / 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    border-radius: 28px;
    padding: 6px;
    background: radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.35) 52%, rgba(255, 255, 255, 0) 80%);
    box-shadow: 0 12px 26px rgba(111, 98, 235, 0.18);
    animation: loaderFloat 3.6s ease-in-out infinite;
}

.meditation-loader__aura {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: rgba(111, 98, 235, 0.65);
    border-right-color: rgba(47, 181, 162, 0.75);
    border-bottom-color: rgba(255, 159, 214, 0.6);
    border-left-color: rgba(111, 98, 235, 0.4);
    animation: loaderSpin 1.6s linear infinite;
    filter: drop-shadow(0 10px 18px rgba(108, 92, 231, 0.12));
}

.meditation-loader__aura::after {
    content: '';
    position: absolute;
    inset: 18%;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.55));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}


.meditation-loader__person {
    position: absolute;
    inset: 22%;
    border-radius: 50%;
    background: linear-gradient(160deg, rgba(111, 98, 235, 0.9), rgba(47, 181, 162, 0.9));
    box-shadow: 0 8px 18px rgba(111, 98, 235, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: loaderPulse 2.2s ease-in-out infinite;
}


.meditation-loader__person::before {
    content: '';
    position: absolute;
    inset: -18%;
    border-radius: 50%;
    border: 1px solid rgba(111, 98, 235, 0.35);
    box-shadow: 0 0 0 1px rgba(47, 181, 162, 0.12);
    animation: loaderRipple 2.2s ease-in-out infinite;
}

.meditation-loader__person::after {
    content: '';
    position: absolute;
    inset: 32%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    filter: blur(1px);
    opacity: 0.9;
}

.meditation-loader__head,
.meditation-loader__body,
.meditation-loader__legs,
.meditation-loader__mat {
    display: none;
}

@keyframes loaderFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

@keyframes loaderSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes loaderPulse {
    0%,
    100% {
        transform: scale(0.94);
        box-shadow: 0 8px 18px rgba(111, 98, 235, 0.15);
    }

    50% {
        transform: scale(1);
        box-shadow: 0 10px 22px rgba(111, 98, 235, 0.22);
    }
}

@keyframes loaderRipple {
    0%,
    100% {
        transform: scale(0.88);
        opacity: 0.45;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.85;
    }
}

.loader-content {
    margin-top: clamp(6px, 1.6vw, 12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(6px, 1.4vw, 10px);
}

.loader-headline {
    margin: 0;
    font-weight: 600;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: #1f2933;
}

.loader-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 320px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.loader-step {
    position: relative;
    padding: 8px 12px 8px 42px;
    font-size: 0.9rem;
    line-height: 1.45;
    color: rgba(31, 41, 51, 0.72);
    border-radius: 14px;
    background: rgba(111, 98, 235, 0.05);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: transform 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}

.loader-step::before {
    content: attr(data-step-index);
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, var(--loader-primary), var(--loader-secondary));
    box-shadow: 0 6px 16px rgba(111, 98, 235, 0.2);
}

.loader-step.is-active {
    color: #1f2933;
    background: rgba(111, 98, 235, 0.12);
    transform: translateX(2px);
}

.loader-step.is-active::before {
    background: linear-gradient(135deg, var(--loader-secondary), var(--loader-highlight));
    box-shadow: 0 10px 24px rgba(111, 98, 235, 0.28);
}

.loader-step.is-complete::before {
    content: '✓';
    font-size: 0.82rem;
}

.loader-step.is-complete {
    color: rgba(31, 41, 51, 0.6);
    background: rgba(111, 98, 235, 0.06);
}

.loader.loader-error {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 20px;
    padding: clamp(14px, 3vw, 22px);
    border: 1px solid rgba(220, 53, 69, 0.25);
    box-shadow: 0 18px 36px rgba(220, 53, 69, 0.18);
    text-align: center;
}

.loader-message {
    margin-top: 16px;
    text-align: center;
    color: var(--muted-text);
}

.loader-message p {
    margin: 0;
}

.loader-message p + p {
    margin-top: 6px;
}

.loader-message-title {
    font-weight: 600;
    color: #b42324;
}

.loader-message-footer {
    font-size: 0.95rem;
}

.loader-contact-link {
    color: var(--gradient-start);
    font-weight: 600;
    text-decoration: underline;
}

@media (min-width: 768px) {
    .loader {
        text-align: center;
    }

    .loader-content {
        align-items: center;
    }
}

.how-it-works {
    background: var(--surface-muted);
    border-radius: 24px;
    padding: clamp(20px, 3.2vw, 32px);
    position: relative;
    overflow: hidden;
}

.how-it-works::before,
.how-it-works::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.25;
    pointer-events: none;
}

.how-it-works::before {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.16), transparent 70%);
    top: -80px;
    right: -40px;
}

.how-it-works::after {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at center, rgba(242, 132, 255, 0.18), transparent 70%);
    bottom: -60px;
    left: -30px;
}

.how-it-works h2 {
    margin-top: 0;
    color: #1f2937;
}

.how-steps {
    display: grid;
    gap: clamp(16px, 3vw, 24px);
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.how-card {
    display: grid;
    gap: 10px;
    padding: clamp(18px, 3vw, 24px);
    background: rgba(255, 255, 255, 0.96);
    border-radius: 16px;
    border: 1px solid rgba(99, 102, 241, 0.16);
    box-shadow: 0 12px 24px rgba(79, 70, 229, 0.12);
    position: relative;
    overflow: hidden;
}

.how-card::before {
    content: '';
    position: absolute;
    top: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(90, 96, 241, 0.2), rgba(242, 132, 255, 0.2));
    opacity: 0.6;
}

.how-card h3 {
    margin: 0;
    color: #1f2a44;
}

.how-card p {
    margin: 0;
    color: var(--muted-text);
    line-height: 1.6;
}

.how-tip {
    font-size: 0.95rem;
    color: #4f46e5;
    font-weight: 500;
}

.how-extras {
    display: grid;
    gap: clamp(16px, 3vw, 24px);
    margin-top: clamp(20px, 4vw, 28px);
}

.how-extra-card {
    display: grid;
    gap: 10px;
    padding: clamp(18px, 3vw, 24px);
    background: rgba(255, 255, 255, 0.96);
    border-radius: 16px;
    border: 1px solid rgba(99, 102, 241, 0.16);
    box-shadow: 0 12px 24px rgba(79, 70, 229, 0.12);
    position: relative;
    overflow: hidden;
}

.how-extra-card::before {
    content: '';
    position: absolute;
    inset: auto -30% -30% auto;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle at center, rgba(242, 132, 255, 0.24), rgba(242, 132, 255, 0));
}

.how-extra-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.how-extra-note {
    margin: 0;
    color: #475569;
    font-style: italic;
}

.privacy-ethics {
    background: rgba(16, 24, 40, 0.04);
    border-radius: 24px;
    padding: clamp(24px, 4vw, 36px);
    display: grid;
    gap: clamp(18px, 3vw, 28px);
    position: relative;
    overflow: hidden;
}

.privacy-ethics::before,
.privacy-ethics::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(79, 70, 229, 0.14), transparent 70%);
    opacity: 0.35;
    pointer-events: none;
}

.privacy-ethics::before {
    width: 260px;
    height: 260px;
    top: -120px;
    right: -80px;
}

.privacy-ethics::after {
    width: 200px;
    height: 200px;
    bottom: -90px;
    left: -60px;
}

.privacy-ethics .section-header {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
}

.privacy-ethics .section-header h2 {
    margin: 0;
    color: #1f2937;
}

.privacy-ethics .section-header p {
    margin: 0;
    color: var(--muted-text);
    line-height: 1.7;
}

.privacy-ethics-content {
    display: grid;
    gap: clamp(18px, 3vw, 24px);
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    position: relative;
    z-index: 1;
}

.privacy-ethics-card {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 18px;
    border: 1px solid rgba(99, 102, 241, 0.18);
    padding: clamp(18px, 3vw, 24px);
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.12);
    display: grid;
    gap: 12px;
}

.privacy-ethics-card h3 {
    margin: 0;
    color: #1d1a4e;
    font-size: clamp(1.05rem, 2.2vw, 1.2rem);
}

.privacy-ethics-card p {
    margin: 0;
    color: var(--muted-text);
    line-height: 1.6;
}

.privacy-ethics-card a {
    color: #4f46e5;
    font-weight: 600;
    text-decoration: underline;
}

.disclaimer-text {
    background: rgba(234, 179, 8, 0.14);
    border: 1px solid rgba(202, 138, 4, 0.32);
    border-radius: 16px;
    padding: clamp(12px, 2.6vw, 18px);
    color: #78350f;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: clamp(16px, 3vw, 20px) 0 0;
}

.disclaimer-text strong {
    font-weight: 600;
}

.support-list {
    margin: 0;
    padding-left: 1.1rem;
    color: #475569;
    line-height: 1.6;
}

.faq-section {
    background: rgba(255, 255, 255, 0.94);
    border-radius: 24px;
    padding: clamp(24px, 4vw, 36px);
    box-shadow: 0 16px 32px rgba(31, 41, 55, 0.15);
}

.faq-section h2 {
    margin-top: 0;
    margin-bottom: clamp(16px, 3vw, 24px);
    color: #1f2937;
}

.faq-grid {
    display: grid;
    gap: clamp(14px, 2.6vw, 20px);
    grid-template-columns: minmax(0, 1fr);
}

.faq-item {
    background: var(--surface-muted);
    border-radius: 18px;
    border: 1px solid rgba(99, 102, 241, 0.15);
    padding: clamp(16px, 3vw, 22px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.08);
    width: 100%;
}

.faq-item summary {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    cursor: pointer;
    color: #25313b;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-toggle {
    margin-left: auto;
    font-size: 18px;
    color: rgba(79, 70, 229, 0.65);
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-toggle {
    transform: rotate(180deg);
}

.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.faq-item p {
    margin: 14px 0 0;
    color: var(--muted-text);
    line-height: 1.7;
}

footer {
    margin-top: clamp(28px, 6vw, 52px);
    background: rgba(248, 249, 255, 0.92);
    border-radius: 24px;
    padding: clamp(26px, 4.6vw, 40px);
    box-shadow: 0 24px 48px rgba(78, 81, 203, 0.18);
    display: flex;
    flex-direction: column;
    gap: clamp(18px, 3vw, 26px);
    color: #364152;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    inset: -60% 40% 32% -30%;
    background: radial-gradient(circle at center, rgba(140, 133, 255, 0.22) 0%, rgba(140, 133, 255, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.footer-content {
    display: grid;
    gap: clamp(18px, 3vw, 30px);
    position: relative;
    z-index: 1;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h3,
.footer-column h4 {
    margin: 0;
    color: #2d1b69;
}

.footer-column h3 {
    font-size: clamp(1.3rem, 2.4vw, 1.6rem);
}

.footer-column h4 {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: #4338ca;
}

.footer-column p {
    margin: 0;
    color: rgba(55, 65, 81, 0.85);
    line-height: 1.8;
}

.footer-badge {
    align-self: flex-start;
    padding: 6px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.18));
    color: #4338ca;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.footer-trust-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.footer-trust-list li {
    position: relative;
    padding-left: 28px;
    color: rgba(55, 65, 81, 0.9);
    line-height: 1.6;
}

.footer-trust-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.32), rgba(236, 72, 153, 0.32));
    display: grid;
    place-items: center;
    font-size: 0.85rem;
    color: #fff;
    box-shadow: 0 6px 12px rgba(99, 102, 241, 0.18);
}

.footer-support-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4c51bf;
    font-weight: 600;
    text-decoration: none;
}

.footer-support-link::after {
    content: '↗';
    font-size: 0.85rem;
}

.footer-support-link:hover,
.footer-support-link:focus {
    text-decoration: underline;
}

footer a {
    color: #4338ca;
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: min(92%, 460px);
    background: rgba(17, 24, 39, 0.92);
    color: #f9fafb;
    padding: 18px 20px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.35);
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
    backdrop-filter: blur(12px);
}

.cookie-banner--hidden {
    display: none;
}

.cookie-banner__message {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(249, 250, 251, 0.95);
}

.cookie-banner__actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-banner__button {
    border: none;
    border-radius: 999px;
    padding: 8px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.cookie-banner__button:focus {
    outline: 2px solid rgba(199, 210, 254, 0.6);
    outline-offset: 2px;
}

.cookie-banner__button--primary {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: #f9fafb;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.35);
}

.cookie-banner__button--primary:hover,
.cookie-banner__button--primary:focus {
    background: linear-gradient(135deg, #4f46e5, #4338ca);
}

.cookie-banner__button--secondary {
    background: transparent;
    color: rgba(249, 250, 251, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.cookie-banner__button--secondary:hover,
.cookie-banner__button--secondary:focus {
    background: rgba(99, 102, 241, 0.12);
    color: #f9fafb;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: rgba(55, 65, 81, 0.8);
    position: relative;
    z-index: 1;
}

.footer-divider {
    opacity: 0.6;
}

@media (min-width: 768px) {
    .benefits-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .benefits-list li:last-child {
        grid-column: span 2;
    }

    .form-text {
        text-align: left;
    }

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

    .footer-content {
        grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr);
        align-items: flex-start;
    }

    .footer-bottom {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .container {
        border-radius: 16px;
    }

    .brand-logo {
        max-height: 56px;
    }

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

    .how-card::before {
        top: 12px;
        right: 16px;
    }

    footer {
        text-align: center;
    }

    .footer-content {
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 6px;
    }
}

@media (min-width: 992px) {
    .how-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    body {
        padding: 0 16px 16px;
    }

    .container {
        padding: 22px;
        gap: 24px;
    }

    .language-switcher {
        justify-content: flex-start;
        width: 100%;
        gap: 8px;
    }

    .language-switcher select {
        width: 100%;
    }

    .step {
        padding: 16px;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.95rem;
    }

    .quote {
        padding: 16px;
    }

    .how-steps {
        grid-template-columns: 1fr;
    }

    .visual-highlights {
        grid-template-columns: 1fr;
    }

    .cta-callout {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .faq-item summary {
        align-items: flex-start;
    }

    .cookie-banner {
        width: calc(100% - 32px);
        left: 16px;
        right: 16px;
        transform: none;
        bottom: 16px;
    }

    .cookie-banner__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner__button {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .header h1 {
        font-size: 1.65rem;
    }

    .header p {
        font-size: 0.98rem;
    }

    .benefits-list li {
        align-items: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    body {
        animation: none;
        background-position: 50% 50%;
    }

    .quote {
        opacity: 1;
    }

    .quote-text {
        opacity: 1;
    }

    .floating-elements span {
        animation: none;
    }

    .quote-anim-fade,
    .quote-anim-slide,
    .quote-anim-zoom,
    .quote-anim-tilt {
        animation: none !important;
    }

    .btn-primary,
    .faq-section summary::after {
        transition: none;
    }
}
