@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0f0f13;
    color: #e0e0e0;
}

.neon-peach {
    color: #FF9BB3;
    text-shadow: 0 0 5px rgba(255, 155, 179, 0.5);
}

.neon-mint {
    color: #8CFFD1;
    text-shadow: 0 0 5px rgba(140, 255, 209, 0.3);
}

.neon-lavender {
    color: #C792FF;
    text-shadow: 0 0 5px rgba(199, 146, 255, 0.3);
}

.neon-peach-bg {
    background-color: rgba(255, 155, 179, 0.1);
    box-shadow: 0 0 15px rgba(255, 155, 179, 0.2);
}

.neon-mint-bg {
    background-color: rgba(140, 255, 209, 0.1);
    box-shadow: 0 0 15px rgba(140, 255, 209, 0.2);
}

.neon-lavender-bg {
    background-color: rgba(199, 146, 255, 0.1);
    box-shadow: 0 0 15px rgba(199, 146, 255, 0.2);
}

.neon-border-peach {
    border: 1px solid #FF9BB3;
    box-shadow: 0 0 10px rgba(255, 155, 179, 0.3);
}

.neon-border-mint {
    border: 1px solid #8CFFD1;
    box-shadow: 0 0 10px rgba(140, 255, 209, 0.3);
}

.neon-border-lavender {
    border: 1px solid #C792FF;
    box-shadow: 0 0 10px rgba(199, 146, 255, 0.3);
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(255, 155, 179, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(255, 155, 179, 0.8);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(255, 155, 179, 0.5);
    }
}

.fade-in {
    animation: fadeIn 1.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.rotate-neon {
    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.service-card:hover {
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 0 25px rgba(140, 255, 209, 0.4);
}

.hover-grow {
    transition: all 0.3s ease;
}

.hover-grow:hover {
    transform: scale(1.05);
}

.glow-text {
    text-shadow: 0 0 8px currentColor;
}

.neon-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.neon-btn:hover {
    box-shadow: 0 0 15px currentColor;
}

.neon-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 60%);
    transform: rotate(30deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(30deg); }
    20% { transform: translateX(100%) rotate(30deg); }
    100% { transform: translateX(100%) rotate(30deg); }
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF9BB3;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.input-glow:focus {
    box-shadow: 0 0 10px rgba(140, 255, 209, 0.5);
    border-color: #8CFFD1;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background-color: rgba(15, 15, 19, 0.8);
    border-radius: 1rem;
    border: 1px solid rgba(255, 155, 179, 0.2);
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FF9BB3;
}

.legal-text {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.back-button {
    display: inline-flex;
    align-items: center;
    margin-bottom: 2rem;
    color: #8CFFD1;
    transition: all 0.3s ease;
}

.back-button:hover {
    transform: translateX(-5px);
    color: #FF9BB3;
}

.highlight {
    background-color: rgba(255, 155, 179, 0.15);
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
}

.step-card {
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #8CFFD1, #C792FF);
}

.benefit-item {
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
}

.analysis-badge {
    animation: pulse 2s infinite;
}

.strategy-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(140, 255, 209, 0.3);
}

.strategy-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #8CFFD1, #C792FF);
}

.timeline-item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(45deg, #8CFFD1, #C792FF);
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 9px;
    top: 20px;
    width: 2px;
    height: calc(100% - 20px);
    background: linear-gradient(to bottom, #8CFFD1, #C792FF);
}

.timeline-item:last-child::after {
    display: none;
}

.checklist-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.checklist-item::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #8CFFD1;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.content-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.content-card:hover {
    transform: translateY(-5px);
}

.content-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #8CFFD1, #C792FF);
}

.content-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
}

.rotate-180 {
    transform: rotate(180deg);
  }


  @media screen and (max-width: 600px) {
    .btndesk{
        display: none;
    }
    .btnmobile{
        display: block;
    }
  }

  @media screen and (min-width: 601px) {
    .btndesk{
        display: block;
    }
    .btnmobile{
        display: none;
    }
  }