* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

.hero-page {
    background: #000;
}

.site-content {
    min-height: 100vh;
}

.hero-section {
    background: #000;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-image-container {
    height: 100%;
    min-height: 120vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #1a0033 0%, #000 100%);
}

.space-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sun-image {
    width: 60%;
    max-width: 400px;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.stars-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 50%, white, transparent);
    background-size: 200% 200%;
    animation: stars 20s linear infinite;
}

@keyframes stars {
    from { background-position: 0 0; }
    to { background-position: -200% -200%; }
}

.hero-content {
    padding: 60px 40px;
    position: relative;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: url('luna.png') no-repeat center;
    background-size: contain;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
    display: none;
    animation: rotate-luna 60s linear infinite;
}

@keyframes rotate-luna {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent);
    background-size: 200% 200%;
    animation: stars 20s linear infinite;
    z-index: 0;
    pointer-events: none;
    display: none;
}

.content-wrapper {
    max-width: 600px;
}

.subtitle {
    font-family: 'Play', sans-serif;
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #e3bcff;
    margin-bottom: 20px;
    font-weight: 400;
}

.main-title {
    font-family: 'Alumni Sans', sans-serif;
    font-size: 72px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.title-word {
    display: block;
}

.hero-description {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 7px;
    color: #ccc;
}

.hero-price {
    font-family: 'Alumni Sans', sans-serif;
    font-size: 72px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: 2px;
    color: #e3bcff;
}

.cta-section {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: #e3bcff;
    color: #000;
    padding: 15px 35px;
    border-radius: 0;
    text-decoration: none;
    font-family: 'Play', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid #e3bcff;
}

.btn-primary-custom:hover {
    background: transparent;
    color: #e3bcff;
}

.btn-secondary-custom {
    background: transparent;
    color: #fff;
    padding: 15px 35px;
    border-radius: 0;
    text-decoration: none;
    font-family: 'Play', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid #fff;
}

.btn-secondary-custom:hover {
    background: #fff;
    color: #000;
}

.info-section {
    background: #000;
    border-top: 1.5px solid #fff;
}

.section-title {
    font-family: 'Alumni Sans', sans-serif;
    font-size: 48px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.natal-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.natal-intro-text {
    font-size: 19px;
    line-height: 1.8;
    color: #ccc;
}

.natal-blocks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.natal-block {
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.natal-block:hover {
    background: rgba(227, 188, 255, 0.05);
    border-color: rgba(227, 188, 255, 0.3);
    transform: translateY(-5px);
}

.natal-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.natal-block-title {
    font-family: 'Play', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: #e3bcff;
}

.natal-block-text {
    font-size: 16px;
    line-height: 1.7;
    color: #ccc;
    margin: 0;
}

.pricing-section {
    background: #000;
    padding: 80px 0;
    border-top: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
}

.pricing-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    background: rgba(227, 188, 255, 0.1);
    border: 2px solid #e3bcff;
}

.pricing-title {
    font-family: 'Alumni Sans', sans-serif;
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.price-amount {
    font-family: 'Alumni Sans', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: #e3bcff;
    margin: 20px 0;
}

.pricing-detail {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ccc;
}

.btn-order {
    background: #e3bcff;
    color: #000;
    padding: 18px 45px;
    border-radius: 0;
    text-decoration: none;
    font-family: 'Play', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid #e3bcff;
    font-size: 18px;
}

.btn-order:hover {
    background: transparent;
    color: #e3bcff;
}

.footer-section {
    background: #000;
    border-top: 1.5px solid rgba(227, 188, 255, 0.3);
    padding: 50px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(227, 188, 255, 0.5), transparent);
}

.footer-form-title,
.footer-info-title {
    font-family: 'Alumni Sans', sans-serif;
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: #e3bcff;
    position: relative;
    display: inline-block;
}

.footer-form-title::after,
.footer-info-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #e3bcff, transparent);
}

.footer-contact-form {
    max-width: 100%;
}

.footer-vertical-divider {
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(227, 188, 255, 0.3), transparent);
}

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(227, 188, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #e3bcff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
    z-index: 0;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: #e3bcff;
    transition: transform 0.3s ease;
}

.social-link:hover {
    border-color: #e3bcff;
    transform: translateY(-5px);
}

.social-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.social-link img {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
    transition: filter 0.3s;
}

.social-link:hover img {
    filter: brightness(1.2);
}

.footer-contacts {
    margin-top: 30px;
}

.footer-text {
    font-size: 16px;
    color: #ccc;
    margin: 0;
}

.footer-support-title {
    font-size: 15px;
    color: #e3bcff;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-label {
    color: rgba(227, 188, 255, 0.7);
    font-size: 14px;
    margin-right: 5px;
}

.footer-link-email {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link-email::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #e3bcff;
    transition: width 0.3s ease;
}

.footer-link-email:hover {
    color: #e3bcff;
}

.footer-link-email:hover::after {
    width: 100%;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(227, 188, 255, 0.3), transparent);
    margin: 50px 0 30px;
}

.footer-bottom {
    padding-top: 10px;
}

.footer-links {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.footer-link-bottom {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link-bottom::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #e3bcff;
    transition: width 0.3s ease;
}

.footer-link-bottom:hover {
    color: #e3bcff;
}

.footer-link-bottom:hover::after {
    width: 100%;
}

.footer-separator-bottom {
    color: rgba(227, 188, 255, 0.3);
    font-size: 14px;
}

.footer-copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    letter-spacing: 0.5px;
}

.order-page {
    background: #000;
}

.order-header {
    text-align: center;
    padding: 30px 0;
    border-bottom: 1.5px solid #fff;
    margin-bottom: 40px;
}

.order-main-title {
    font-family: 'Alumni Sans', sans-serif;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0;
}

.progress-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding: 0 50px;
    position: relative;
}

.progress-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50px;
    right: 50px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%);
    z-index: 0;
}

.progress-line {
    position: absolute;
    top: 50%;
    left: 50px;
    height: 3px;
    background: #fff;
    transform: translateY(-50%);
    transition: width 0.5s ease;
    z-index: 0;
}

.progress-step {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #000;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Play', sans-serif;
    font-size: 18px;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.progress-step.active {
    background: #e3bcff;
    border-color: #e3bcff;
    color: #000;
    z-index: 2;
}

.progress-step.completed {
    background: #fff;
    border-color: #fff;
    color: #000;
}

.step {
    display: none;
    animation: fadeIn 0.5s;
}

.step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-title {
    font-family: 'Alumni Sans', sans-serif;
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label-custom {
    font-family: 'Play', sans-serif;
    font-size: 15px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
    color: #e3bcff;
}

.form-input-custom {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    transition: all 0.3s;
}

.form-input-custom:focus {
    outline: none;
    border-color: #e3bcff;
    background: rgba(227, 188, 255, 0.05);
}

.form-input-custom::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input-custom.is-invalid {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.1) !important;
}

.check-input.is-invalid {
    outline: 2px solid #ef4444;
}

.form-hint {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.radio-card input[type="radio"] {
    display: none;
}

.radio-card-content {
    display: block;
    padding: 30px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Play', sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
}

.radio-card input[type="radio"]:checked + .radio-card-content {
    background: rgba(227, 188, 255, 0.1);
    border-color: #e3bcff;
    color: #e3bcff;
}

.radio-card-content:hover {
    border-color: #e3bcff;
}

.btn-next {
    background: #e3bcff;
    color: #000;
    padding: 15px 40px;
    border: 2px solid #e3bcff;
    border-radius: 0;
    font-family: 'Play', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    flex: 1;
    font-size: 16px;
}

.btn-next:hover {
    background: transparent;
    color: #e3bcff;
}

.btn-back {
    background: transparent;
    color: #fff;
    padding: 15px 40px;
    border: 2px solid #fff;
    border-radius: 0;
    font-family: 'Play', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    flex: 1;
    font-size: 16px;
    text-decoration: none;
}

.btn-back:hover {
    background: #fff;
    color: #000;
}

.btn-submit {
    background: #e3bcff;
    color: #000;
    padding: 15px 40px;
    border: 2px solid #e3bcff;
    border-radius: 0;
    font-family: 'Play', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    flex: 1;
    font-size: 16px;
}

.btn-submit:hover {
    background: transparent;
    color: #e3bcff;
}

.btn-group-custom {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-direction: row-reverse;
}

.form-check-custom {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.check-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.privacy-link {
    color: #e3bcff;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.confirmation-box {
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 25px;
}

.price-final-box {
    text-align: center;
    padding: 25px;
    background: rgba(227, 188, 255, 0.1);
    border: 1px solid #e3bcff;
    margin-bottom: 25px;
}

.price-final-text {
    margin: 0;
    font-size: 18px;
}

.price-final-amount {
    font-family: 'Alumni Sans', sans-serif;
    font-size: 32px;
    color: #e3bcff;
}

.loader-box {
    text-align: center;
    padding: 30px;
}

.loader-text {
    margin-top: 15px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.photo-preview-box {
    margin-top: 20px;
}

.photo-preview-box img {
    max-width: 300px;
    border: 2px solid #e3bcff;
}

.privacy-page {
    background: #000;
}

.privacy-header {
    text-align: center;
    padding: 30px 0;
    border-bottom: 1.5px solid #fff;
    margin-bottom: 40px;
}

.privacy-main-title {
    font-family: 'Alumni Sans', sans-serif;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.privacy-back {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 30px 20px 0;
    border-top: 1.5px solid rgba(255, 255, 255, 0.2);
}

.back-link {
    color: #e3bcff;
    text-decoration: none;
    font-family: 'Play', sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.back-link:hover {
    color: #fff;
}

.success-page,
.failed-page {
    background: #000;
}

.success-container,
.failed-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
}

.success-icon,
.failed-icon {
    font-size: 120px;
    margin-bottom: 30px;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.success-title,
.failed-title {
    font-family: 'Alumni Sans', sans-serif;
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.order-number-box {
    padding: 25px;
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid #22c55e;
    margin-bottom: 35px;
}

.order-number-text {
    margin: 0;
    font-size: 18px;
}

.order-number-value {
    font-family: 'Alumni Sans', sans-serif;
    font-size: 32px;
    color: #22c55e;
}

.success-info {
    margin-bottom: 35px;
}

.success-item {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #ccc;
}

.failed-info-box {
    padding: 25px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    margin-bottom: 30px;
}

.failed-main-text {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ef4444;
}

.failed-sub-text {
    font-size: 16px;
    margin-bottom: 15px;
    color: #ccc;
}

.failed-reasons {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.failed-reasons li {
    font-size: 16px;
    line-height: 1.8;
    color: #ccc;
}

.retry-box {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.retry-text {
    margin: 0;
    font-size: 16px;
    color: #ccc;
}

.support-box {
    padding: 25px;
    background: rgba(227, 188, 255, 0.1);
    border: 1px solid #e3bcff;
    margin-bottom: 35px;
}

.support-text {
    margin-bottom: 15px;
    font-size: 16px;
    color: #ccc;
}

.btn-support {
    background: #e3bcff;
    color: #000;
    padding: 12px 30px;
    border-radius: 0;
    text-decoration: none;
    font-family: 'Play', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid #e3bcff;
}

.btn-support:hover {
    background: transparent;
    color: #e3bcff;
}

.success-actions,
.failed-actions,
.success-actions-top {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.success-actions-top {
    margin-bottom: 40px;
}

.btn-action-primary {
    background: #e3bcff;
    color: #000;
    padding: 15px 35px;
    border-radius: 0;
    text-decoration: none;
    font-family: 'Play', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid #e3bcff;
    font-size: 16px;
}

.btn-action-primary:hover {
    background: transparent;
    color: #e3bcff;
}

.btn-action-secondary {
    background: transparent;
    color: #fff;
    padding: 15px 35px;
    border-radius: 0;
    text-decoration: none;
    font-family: 'Play', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid #fff;
    font-size: 16px;
}

.btn-action-secondary:hover {
    background: #fff;
    color: #000;
}

.contact-form-box {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(227, 188, 255, 0.2);
    margin-top: 40px;
    margin-bottom: 40px;
}

.contact-form-title {
    font-family: 'Alumni Sans', sans-serif;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 30px;
    color: #e3bcff;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .main-title {
        font-size: 56px;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
    
    .hero-content::before,
    .hero-content::after {
        display: block;
    }
}

@media (max-width: 991px) {
    .footer-form-title,
    .footer-info-title {
        text-align: center;
        font-size: 28px;
    }
    
    .footer-form-title::after,
    .footer-info-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contacts {
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-divider {
        margin: 40px 0 25px;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .price-amount {
        font-size: 48px;
    }
    
    .progress-container {
        padding: 0 20px;
    }
    
    .progress-step {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .btn-group-custom {
        flex-direction: column;
    }
    
    .btn-next,
    .btn-back,
    .btn-submit {
        width: 100%;
        flex: none;
    }
    
    .cta-section {
        flex-direction: column;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        text-align: center;
    }
    
    .success-icon,
    .failed-icon {
        font-size: 80px;
    }
    
    .success-title,
    .failed-title {
        font-size: 32px;
    }
    
    .success-actions,
    .failed-actions,
    .success-actions-top {
        flex-direction: column;
    }
    
    .btn-action-primary,
    .btn-action-secondary {
        width: 100%;
    }
    
    .natal-block {
        text-align: center;
    }
    
    .natal-icon,
    .natal-block-title {
        text-align: center;
    }
    
    .natal-block-text {
        text-align: left;
    }
    
    .footer-social {
        gap: 15px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
    }
    
    .social-link img {
        width: 20px;
        height: 20px;
    }
    
    .contact-form-box {
        padding: 25px 15px;
    }
    
    .contact-form-title {
        font-size: 24px;
    }
}
@media (max-width: 576px) {
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-separator-bottom {
        display: none;
    }
    
    .footer-copyright {
        margin-top: 15px;
    }
}



.failed-actions-top {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .failed-actions-top {
        flex-direction: column;
    }
}

.play-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #fff;
    font-family: 'Play', sans-serif;
    transition: opacity 0.3s;
}

.play-btn:hover { opacity: 0.7; }

.play-btn-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid rgba(227, 188, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #e3bcff;
    flex-shrink: 0;
    padding-left: 3px;
    transition: border-color 0.3s, background 0.3s;
}

.play-btn:hover .play-btn-icon {
    border-color: #e3bcff;
    background: rgba(227, 188, 255, 0.1);
}

.play-btn-text {
    font-size: 15px;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.75);
}

.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}

.video-modal.active { display: flex; }

.video-modal-inner {
    position: relative;
    width: min(360px, 90vw);
    aspect-ratio: 9/16;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(227,188,255,0.2);
}

.video-modal-inner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    background: rgba(0,0,0,0.5);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.video-modal-close:hover { background: rgba(0,0,0,0.8); }
.play-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 28px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: 'Play', sans-serif;
    animation: play-btn-shake 4s ease-in-out infinite;
    transform-origin: left center;
}

.play-btn:hover { opacity: 0.85; animation: none; }

@keyframes play-btn-shake {
    0%, 100% { transform: translateX(0); }
    5% { transform: translateX(-4px); }
    10% { transform: translateX(4px); }
    15% { transform: translateX(-3px); }
    20% { transform: translateX(3px); }
    25% { transform: translateX(0); }
}

.play-btn-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(227,188,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    background: rgba(227,188,255,0.08);
    transition: border-color 0.3s, background 0.3s;
    animation: play-pulse 2s ease-in-out infinite;
}

.play-btn-icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1.5px solid rgba(227,188,255,0.4);
    animation: play-ring 2s ease-in-out infinite;
}

.play-btn-icon::after {
    content: '';
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    border: 1px solid rgba(227,188,255,0.15);
    animation: play-ring 2s ease-in-out infinite 0.35s;
}

@keyframes play-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(227,188,255,0.5); }
    50% { box-shadow: 0 0 16px 4px rgba(227,188,255,0.15); }
}

@keyframes play-ring {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0; transform: scale(1.2); }
}

.play-btn:hover .play-btn-icon {
    border-color: #e3bcff;
    background: rgba(227,188,255,0.15);
    animation: none;
    box-shadow: 0 0 20px rgba(227,188,255,0.2);
}

.play-btn-text {
    font-size: 15px;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.9);
    text-decoration: underline;
    text-decoration-color: rgba(227,188,255,0.4);
    text-underline-offset: 4px;
}

#videoModal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}

#videoModal .vm-inner {
    position: relative;
    width: min(360px, 90vw);
    aspect-ratio: 9/16;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(227,188,255,0.2);
    animation: vm-in 0.3s ease;
}

@keyframes vm-in {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

#videoModal video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#videoModal .vm-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    background: rgba(0,0,0,0.6);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

#videoModal .vm-close:hover { background: rgba(0,0,0,0.9); }

.author-section {
    background: #000;
    border-top: 1.5px solid #fff;
    padding: 80px 0;
}

.author-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.author-photo-wrap {
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
    border-radius: 50%;
}

.author-photo-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    transition: background 0.3s;
}

.author-photo-wrap:hover::after {
    background: rgba(0,0,0,0.45);
}

.author-photo-play {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.author-photo-play svg {
    animation: author-play-pulse 2.5s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.6));
}

@keyframes author-play-pulse {
    0%, 100% { transform: scale(1); opacity: 0.85; }
    50% { transform: scale(1.15); opacity: 1; }
}

.author-photo-play::before {
    content: '';
    position: absolute;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    animation: author-ring 2.5s ease-in-out infinite;
}

.author-photo-play::after {
    content: '';
    position: absolute;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    animation: author-ring 2.5s ease-in-out infinite 0.4s;
}

@keyframes author-ring {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 0; }
}

.author-photo {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(227,188,255,0.5);
    box-shadow: 0 0 40px rgba(227,188,255,0.15);
    display: block;
}

.author-text {
    flex: 1;
    min-width: 0;
}

.author-name {
    font-family: 'Alumni Sans', sans-serif;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.author-roles {
    font-family: 'Play', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e3bcff;
    margin-bottom: 24px;
}

.author-desc {
    font-size: 17px;
    line-height: 1.8;
    color: #ccc;
    width: 100%;
    margin-bottom: 32px;
}

.author-stats {
    display: flex;
    gap: 40px;
}

.author-stat {
    display: flex;
    flex-direction: column;
}

.author-stat-num {
    font-family: 'Alumni Sans', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #e3bcff;
    line-height: 1;
}

.author-stat-label {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
}

@media (max-width: 768px) {
    .author-inner {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .author-photo {
        width: 160px;
        height: 160px;
    }

    .author-stats {
        justify-content: center;
    }
}