@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --text-dark: #ffffff;
    --accent-dark: #00ff9d;
    --primary-light: #ffffff;
    --secondary-light: #f0f0f0;
    --text-light: #0a0a0a;
    --accent-light: #00cc7d;
    --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --hover-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    transition: background-color 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(0, 255, 157, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(0, 255, 255, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
}

body.dark-mode {
    background-color: var(--primary-dark);
    color: var(--text-dark);
}

body.light-mode {
    background-color: var(--primary-light);
    color: var(--text-light);
}

.container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.theme-toggle {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 100;
}

#themeToggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: inherit;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--hover-transition);
    backdrop-filter: blur(8px);
}

#themeToggle:hover {
    transform: scale(1.1) rotate(10deg);
    border-color: var(--accent-dark);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 6rem 0 4rem;
    animation: slideDown 0.8s ease forwards;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%);
    border-radius: 20px;
    margin-top: 2rem;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}

.shape-1 {
    background: var(--accent-dark);
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    background: #5e17eb;
    width: 400px;
    height: 400px;
    top: -150px;
    right: -150px;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    background: #00d9ff;
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: 25%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-20px) translateX(20px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
}

.hero-badge {
    background: var(--accent-dark);
    color: var(--primary-dark);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    position: absolute;
    top: 0;
    right: -50px;
    transform: rotate(15deg);
    box-shadow: 0 4px 8px rgba(0, 255, 157, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 157, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 255, 157, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 157, 0);
    }
}

.hero-cta {
    margin-top: 1rem;
}

.hero-cta-container {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.secondary-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
}

.secondary-button:hover {
    transform: translateY(-3px);
    border-color: var(--accent-dark);
    background: rgba(0, 255, 157, 0.1);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.7;
}

h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.profile-name {
    color: var(--text-dark);
    letter-spacing: 1px;
    background: linear-gradient(to right, #ffffff, var(--accent-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.brace {
    color: var(--accent-dark);
    font-weight: bold;
    transition: transform 0.3s ease;
    text-shadow: 0 0 15px rgba(0, 255, 157, 0.5);
    font-size: 4.5rem;
}

h1:hover .brace:first-child {
    transform: translateX(-10px) scale(1.1);
}

h1:hover .brace:last-child {
    transform: translateX(10px) scale(1.1);
}

.tagline {
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0.9;
    background: linear-gradient(45deg, var(--text-dark), var(--accent-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.intro-text {
    max-width: 600px;
    margin: 0 auto 1rem;
    padding: 0 1rem;
    line-height: 1.7;
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Feature Section Styles */
.feature-section {
    padding: 3rem 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--hover-transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-dark);
}

.feature-card i {
    font-size: 3rem;
    color: var(--accent-dark);
    margin-bottom: 1.5rem;
}

.feature-card p {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-top: 0.8rem;
}

/* Showcase Section Styles */
.showcase-section {
    padding: 4rem 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.showcase-container {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.showcase-item {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.showcase-item.reverse {
    flex-direction: row-reverse;
}

.showcase-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.5s ease;
}

.showcase-image:hover {
    transform: translateY(-10px);
}

.showcase-image img {
    width: 100%;
    height: auto;
    display: block;
}

.showcase-content {
    flex: 1;
}

.showcase-content p {
    margin-top: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Pricing Section Styles */
.pricing-section {
    padding: 4rem 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--hover-transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-dark);
    z-index: 1;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-dark);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
}

.pricing-header {
    margin-bottom: 2rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-dark);
    margin-top: 0.5rem;
}

.price span {
    font-size: 1rem;
    opacity: 0.7;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.pricing-features i {
    color: var(--accent-dark);
    margin-right: 0.8rem;
}

.pricing-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--accent-dark);
    color: var(--primary-dark);
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-dark);
}

.pricing-button:hover {
    transform: translateY(-3px);
    background: transparent;
    color: var(--accent-dark);
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 4rem 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--hover-transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-dark);
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--accent-dark);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    text-align: right;
    font-weight: 600;
    color: var(--accent-dark);
}

/* Get Started Section Styles */
.getstarted-section {
    padding: 4rem 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.7s;
    opacity: 0;
}

.getstarted-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.getstarted-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.getstarted-content p {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.getstarted-steps {
    display: flex;
    justify-content: space-between;
    margin: 3rem 0;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.step-number {
    background: var(--accent-dark);
    color: var(--primary-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

.step-content p {
    margin-bottom: 0;
    opacity: 0.8;
}

.getstarted-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.getstarted-input {
    flex: 1;
    min-width: 250px;
    padding: 0.8rem 1.2rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    backdrop-filter: blur(5px);
}

.getstarted-input:focus {
    outline: none;
    border-color: var(--accent-dark);
}

.getstarted-button {
    padding: 0.8rem 2rem;
    border-radius: 30px;
    border: none;
    background: var(--accent-dark);
    color: var(--primary-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.getstarted-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 255, 157, 0.3);
}

/* CTA Button Styles */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-dark);
    color: var(--primary-dark);
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-dark);
    font-size: 1.1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 255, 157, 0.3);
    background: transparent;
    color: var(--accent-dark);
}

/* Footer Styles */
.main-footer {
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-brand p {
    margin-top: 0.5rem;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-column h4 {
    margin-bottom: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    text-decoration: none;
    color: inherit;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--accent-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    opacity: 0.7;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: inherit;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--accent-dark);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .container {
        gap: 4rem;
    }
    
    .showcase-item {
        flex-direction: column;
        gap: 2rem;
    }
    
    .showcase-item.reverse {
        flex-direction: column;
    }
    
    .getstarted-steps {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 1rem;
        gap: 3rem;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .testimonials-container {
        flex-direction: column;
        align-items: center;
    }
    
    .hero {
        padding: 4rem 1rem 3rem;
    }
    
    .brace {
        font-size: 3.2rem;
    }
    
    .hero-badge {
        right: -30px;
        font-size: 0.7rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .intro-text {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0.5rem;
        gap: 2.5rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .profile-image {
        width: 100px;
        height: 100px;
    }
    
    .intro-text {
        font-size: 0.9rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        min-width: 100%;
    }
    
    .getstarted-container {
        padding: 2rem 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .hero {
        padding: 3rem 0.5rem 2rem;
    }
    
    .hero-cta-container {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        padding-top: 1.5rem;
        margin-top: 2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

/* Custom Profile CTA */
.custom-profile-cta {
    margin-top: 3rem;
    padding: 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-profile-cta h3 {
    margin-bottom: 1rem;
    font-size: 1.6rem;
    color: var(--accent-dark);
}

.custom-profile-cta p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.custom-order-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--accent-dark);
    color: var(--primary-dark);
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-dark);
    font-size: 1.1rem;
    cursor: pointer;
}

.custom-order-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 255, 157, 0.3);
    background: transparent;
    color: var(--accent-dark);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--secondary-dark);
    margin: 5% auto;
    padding: 2rem;
    width: 90%;
    max-width: 800px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    color: var(--text-dark);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--accent-dark);
}

.modal h2 {
    margin-bottom: 2rem;
    text-align: center;
    color: var(--accent-dark);
    font-size: 2rem;
}

.modal-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.modal-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-indicator {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    font-weight: bold;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.modal-step.active .step-indicator {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--primary-dark);
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.5);
}

.modal-step.completed .step-indicator {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--primary-dark);
}

.step-line {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 10px;
    position: relative;
    top: -20px;
    max-width: 100px;
    z-index: 1;
}

.modal-step span {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.modal-step.active span {
    opacity: 1;
    color: var(--accent-dark);
}

.modal-body {
    position: relative;
}

.modal-step-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.modal-step-content.active {
    display: block;
}

.modal-info {
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.6;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-dark);
    box-shadow: 0 0 10px rgba(0, 255, 157, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Payment Section Styles */
.payment-details {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-details h3 {
    margin-bottom: 1rem;
    color: var(--accent-dark);
}

.xrp-address,
.destination-tag {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    margin: 1rem 0;
}

code {
    font-family: monospace;
    word-break: break-all;
    flex: 1;
}

.copy-btn {
    background: transparent;
    border: none;
    color: var(--text-dark);
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.copy-btn:hover {
    color: var(--accent-dark);
}

.payment-warning {
    display: flex;
    align-items: flex-start;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 68, 68, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 68, 68, 0.3);
}

.payment-warning i {
    color: #ff4444;
    font-size: 1.2rem;
    margin-right: 0.8rem;
    margin-top: 0.2rem;
}

.payment-warning p {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.5;
}

.verification-form {
    margin-bottom: 2rem;
}

.verification-form h3 {
    margin-bottom: 1rem;
    color: var(--accent-dark);
}

#verificationStatus {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

#verificationStatus.success {
    background: rgba(0, 255, 157, 0.1);
    border: 1px solid rgba(0, 255, 157, 0.3);
    color: var(--accent-dark);
}

#verificationStatus.error {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    color: #ff4444;
}

.modal-nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.modal-prev-btn,
.modal-next-btn,
.modal-close-btn {
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.modal-prev-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-dark);
}

.modal-prev-btn:hover {
    border-color: var(--accent-dark);
    color: var(--accent-dark);
}

.modal-next-btn,
.modal-close-btn {
    background: var(--accent-dark);
    border: 2px solid var(--accent-dark);
    color: var(--primary-dark);
}

.modal-next-btn:hover,
.modal-close-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 157, 0.3);
}

/* Confirmation Step Styles */
.confirmation-message {
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    font-size: 4rem;
    color: var(--accent-dark);
    margin-bottom: 1.5rem;
    display: block;
}

.confirmation-message h3 {
    color: var(--accent-dark);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.confirmation-message p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

#confirmationEmail {
    font-weight: bold;
}

#orderReferenceNumber {
    font-family: monospace;
    letter-spacing: 1px;
}

.modal-close-btn {
    margin: 0 auto;
    display: block;
    min-width: 200px;
}

/* Responsive styles for the modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 1.5rem;
        margin: 10% auto;
    }
    
    .modal-steps {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .step-line {
        width: 2px;
        height: 20px;
        transform: rotate(90deg);
        top: -10px;
    }
    
    .modal h2 {
        font-size: 1.7rem;
    }
    
    .modal-nav-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .modal-prev-btn,
    .modal-next-btn,
    .modal-close-btn {
        width: 100%;
    }
}

/* Featured Profiles Section */
.featured-profiles-section {
    padding: 5rem 0;
    text-align: center;
}

.featured-profiles-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.profile-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-dark);
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--accent-dark);
}

.profile-card .profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--accent-dark);
}

.profile-card .profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--accent-dark);
}

.profile-card p {
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .profile-card {
        min-width: 150px;
        padding: 1.5rem;
    }
    
    .profile-card .profile-image {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .profile-card {
        min-width: 130px;
        max-width: 100%;
        padding: 1.2rem;
    }
    
    .profile-card .profile-image {
        width: 80px;
        height: 80px;
    }
    
    .profile-card h3 {
        font-size: 1.2rem;
    }
} 