@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;600&family=Dancing+Script:wght@700&family=Orbitron:wght@400;700;900&display=swap');

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

body {
    font-family: 'Crimson Text', serif;
    background: linear-gradient(135deg, #0a0a2e 0%, #16213e 25%, #1a1a3a 50%, #2d1b69 75%, #0f0f23 100%);
    min-height: 100vh;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.star {
    position: absolute;
    background: white;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: twinkle 4s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
}

.header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out;
}

.title {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b9d, #c44569, #f8b500, #ff9ff3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 107, 157, 0.5);
    line-height: 1.1;
}

.subtitle {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
    color: #e8d5ff;
    opacity: 0.9;
    font-weight: 400;
    padding: 0 10px;
}

.form-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: clamp(25px, 5vw, 50px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 159, 243, 0.1), transparent);
    pointer-events: none;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.section-title {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(2rem, 6vw, 2.5rem);
    color: #ff9ff3;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 20px rgba(255, 159, 243, 0.5);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: clamp(20px, 4vw, 30px);
    margin-bottom: 40px;
}

.form-group {
    position: relative;
    transition: transform 0.3s ease;
}


.form-label {
    display: block;
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: 600;
    color: #e8d5ff;
    margin-bottom: 15px;
    opacity: 0.9;
}

.form-input, .form-select {
    width: 100%;
    padding: clamp(15px, 3vw, 18px) clamp(20px, 4vw, 25px);
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: #ffffff;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    font-family: 'Crimson Text', serif;
    backdrop-filter: blur(10px);
    position: relative;
}

.form-input:focus, .form-select:focus {
    outline: none;
    border-color: #ff9ff3;
    box-shadow: 0 0 20px rgba(255, 159, 243, 0.3);
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.02);
}

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

.form-select option {
    background: #1a1a3a;
    color: #ffffff;
    padding: 10px;
}

.calculate-btn {
    display: block;
    width: 100%;
    max-width: clamp(400px, 80vw, 400px);
    margin: 40px auto 0;
    padding: clamp(15px, 4vw, 20px) clamp(30px, 6vw, 40px);
    background: linear-gradient(135deg, #ff6b9d, #c44569, #f8b500);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    font-weight: 600;
    font-family: 'Crimson Text', serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
    touch-action: manipulation;
    position: relative;
    overflow: hidden;
}

.calculate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.calculate-btn:hover::before {
    left: 100%;
}

.calculate-btn:hover,
.calculate-btn:active {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.6);
}

.result-section {
    display: none;
    margin-top: 60px;
}

.result-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: clamp(25px, 5vw, 40px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(255, 107, 157, 0.2);
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b9d, #c44569, #f8b500, #ff9ff3);
    opacity: 0.7;
}

.main-result {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(196, 69, 105, 0.1));
    border: 1px solid rgba(255, 107, 157, 0.2);
    text-align: center;
}

.result-title {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(2.2rem, 6vw, 3rem);
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(255, 159, 243, 0.5);
    background: linear-gradient(45deg, #ff6b9d, #ff9ff3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.score-meter {
    position: relative;
    width: clamp(200px, 50vw, 300px);
    height: clamp(200px, 50vw, 300px);
    margin: 40px auto;
}

.meter-bg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #ff6b9d 0deg, #c44569 120deg, #f8b500 240deg, #ff9ff3 360deg);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.meter-inner {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.score-number {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 700;
    color: #ff9ff3;
    text-shadow: 0 0 20px rgba(255, 159, 243, 0.5);
}

.score-label {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: #e8d5ff;
    opacity: 0.8;
    margin-top: 10px;
}

.primary-insight {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 159, 243, 0.2);
}

.insight-text {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    line-height: 1.6;
    color: #e8d5ff;
    font-style: italic;
}

.card-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #ff9ff3;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 0 15px rgba(255, 159, 243, 0.3);
}

/* Compatibility Card Styles */
.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.compatibility-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.compatibility-item:hover {
    background: rgba(255, 159, 243, 0.1);
    border-color: rgba(255, 159, 243, 0.3);
    transform: translateY(-2px);
}

.compatibility-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.compatibility-content {
    flex: 1;
}

.compatibility-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff9ff3;
    margin-bottom: 8px;
}

.compatibility-score {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #f8b500;
    margin-bottom: 10px;
}

.compatibility-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #e8d5ff;
    opacity: 0.9;
}

/* Astrology Card Styles */
.astrology-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: start;
}

.zodiac-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 150px;
}

.zodiac-symbol {
    font-size: 4rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #ff6b9d, #ff9ff3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.zodiac-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff9ff3;
    margin-bottom: 5px;
}

.zodiac-element, .zodiac-ruling {
    font-size: 0.9rem;
    color: #e8d5ff;
    opacity: 0.8;
    margin-bottom: 3px;
}

.astrology-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.astrology-section {
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border-left: 3px solid #ff9ff3;
}

.astrology-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff9ff3;
    margin-bottom: 10px;
}

.astrology-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #e8d5ff;
    opacity: 0.9;
}

/* Karma Card Styles */
.karma-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: start;
}

.karma-wheel {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 150px;
}

.karma-center {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 159, 243, 0.2), rgba(196, 69, 105, 0.1));
    border: 2px solid rgba(255, 159, 243, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(255, 159, 243, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(255, 159, 243, 0.5); }
}

.karma-symbol {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.karma-level {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff9ff3;
    text-align: center;
}

.karma-insights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.karma-section {
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border-left: 3px solid #f8b500;
}

.karma-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f8b500;
    margin-bottom: 10px;
}

.karma-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #e8d5ff;
    opacity: 0.9;
}

/* Future Card Styles */
.future-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.timeline-marker {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b9d, #ff9ff3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(255, 159, 243, 0.4);
}

.timeline-content {
    flex: 1;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff9ff3;
    margin-bottom: 10px;
}

.timeline-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #e8d5ff;
    opacity: 0.9;
}

.guidance-box {
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 159, 243, 0.1), rgba(248, 181, 0, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(255, 159, 243, 0.2);
    text-align: center;
}

.guidance-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff9ff3;
    margin-bottom: 15px;
}

.guidance-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e8d5ff;
    font-style: italic;
}

/* Action Section */
.action-section {
    margin-top: 40px;
    text-align: center;
}

.action-buttons {
    display: flex;
    gap: clamp(15px, 3vw, 20px);
    justify-content: center;
    flex-wrap: wrap;
}

.action-btn {
    padding: clamp(12px, 3vw, 15px) clamp(20px, 4vw, 30px);
    border: 2px solid rgba(255, 159, 243, 0.3);
    border-radius: 25px;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    font-family: 'Crimson Text', serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    touch-action: manipulation;
    min-width: 140px;
    justify-content: center;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.action-btn.primary {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    border-color: transparent;
}

.action-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ff9ff3;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.action-btn:hover::before {
    left: 100%;
}

.action-btn:hover,
.action-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.action-btn.primary:hover {
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.4);
}

.action-btn.secondary:hover {
    background: rgba(255, 159, 243, 0.2);
    border-color: #ff9ff3;
}

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

/* Enhanced mobile responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    
    .header {
        margin-bottom: 40px;
    }
    
    .form-card, .result-card {
        border-radius: 20px;
        margin: 0 5px 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .calculate-btn {
        margin-top: 30px;
        padding: 18px 30px;
    }
    
    .compatibility-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .astrology-content,
    .karma-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .action-btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px 10px;
    }
    
    .title {
        margin-bottom: 15px;
    }
    
    .form-card, .result-card {
        padding: 20px 15px;
        border-radius: 15px;
        margin: 0 0 15px;
    }
    
    .section-title, .card-title {
        margin-bottom: 25px;
    }
    
    .form-input, .form-select {
        padding: 12px 18px;
        border-radius: 10px;
    }
    
    .calculate-btn {
        padding: 15px 25px;
        border-radius: 30px;
        font-size: 1.1rem;
    }
    
    .score-meter {
        margin: 25px auto;
    }
    
    .compatibility-item,
    .astrology-section,
    .karma-section,
    .timeline-content {
        padding: 15px 12px;
        border-radius: 10px;
    }
    
    .action-btn {
        padding: 12px 20px;
        border-radius: 20px;
        font-size: 1rem;
    }
    
    .zodiac-symbol {
        font-size: 3rem;
    }
    
    .karma-center {
        width: 100px;
        height: 100px;
    }
    
    .karma-symbol {
        font-size: 2rem;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 10px 8px;
    }
    
    .form-card, .result-card {
        padding: 15px 12px;
    }
    
    .form-input, .form-select {
        padding: 10px 15px;
    }
    
    .calculate-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .compatibility-item,
    .astrology-section,
    .karma-section,
    .timeline-content {
        padding: 12px 10px;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .calculate-btn:hover,
    .action-btn:hover,
    .result-card:hover,
    .compatibility-item:hover {
        transform: none;
    }
    
    .calculate-btn:active,
    .action-btn:active {
        transform: scale(0.98);
    }
    
    .result-card:active {
        transform: scale(0.99);
    }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .container {
        padding: 15px 20px;
    }
    
    .header {
        margin-bottom: 30px;
    }
    
    .score-meter {
        width: clamp(150px, 25vw, 250px);
        height: clamp(150px, 25vw, 250px);
    }
    
    .form-card, .result-card {
        padding: 25px 20px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .form-input, .form-select {
        border-width: 3px;
    }
    
    .action-btn {
        border-width: 3px;
    }
    
    .result-card {
        border-width: 2px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .star,
    .meter-bg,
    .karma-center {
        animation: none;
    }
    
    .form-card::before,
    .action-btn::before {
        display: none;
    }
    
    * {
        transition-duration: 0.1s !important;
    }
}


/* SEO Content Styles */
.seo-content-section {
    margin-top: 20px;
    padding: 40px 0;
}

.seo-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: clamp(25px, 5vw, 40px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.seo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(255, 107, 157, 0.2);
}

.seo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b9d, #c44569, #f8b500, #ff9ff3);
    opacity: 0.7;
}

.seo-title {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: #ff9ff3;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(255, 159, 243, 0.5);
    background: linear-gradient(45deg, #ff6b9d, #ff9ff3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.seo-content {
    color: #e8d5ff;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.7;
}

.seo-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.seo-content strong {
    color: #ff9ff3;
    font-weight: 600;
}

/* Process Steps */
.process-steps {
    margin: 30px 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-item:hover {
    background: rgba(255, 159, 243, 0.1);
    border-color: rgba(255, 159, 243, 0.3);
    transform: translateY(-2px);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b9d, #ff9ff3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(255, 159, 243, 0.4);
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff9ff3;
    margin-bottom: 10px;
}

.step-content p {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-item:hover {
    background: rgba(255, 159, 243, 0.1);
    border-color: rgba(255, 159, 243, 0.3);
    transform: translateY(-2px);
}

.benefit-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.benefit-content {
    flex: 1;
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff9ff3;
    margin-bottom: 8px;
}

.benefit-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* FAQ Styles */
.faq-section {
    margin-top: 10px;
    padding: 0px 0;
}

.faq-container {
    max-width: 100%;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(255, 159, 243, 0.3);
}

.faq-question {
    padding: clamp(15px, 4vw, 25px);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question:hover {
    background: rgba(255, 159, 243, 0.1);
}

.faq-question h3 {
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: 600;
    color: #ff9ff3;
    margin: 0;
    flex: 1;
    padding-right: 20px;
    line-height: 1.4;
}

.faq-icon {
    font-size: 1.5rem;
    color: #ff9ff3;
    font-weight: bold;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 clamp(15px, 4vw, 25px) clamp(15px, 4vw, 25px);
}

.faq-answer p {
    color: #e8d5ff;
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

.faq-answer strong {
    color: #ff9ff3;
    font-weight: 600;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .seo-content-section {
        margin-top: 10px;
        padding: 20px 0;
    }
    
    .seo-card {
        border-radius: 20px;
        margin-bottom: 20px;
    }
    
    .process-steps,
    .benefits-grid {
        margin: 20px 0;
    }
    
    .step-item,
    .benefit-item {
        padding: 15px;
        border-radius: 10px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .faq-item {
        border-radius: 10px;
        margin-bottom: 10px;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .seo-card {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .step-item,
    .benefit-item {
        padding: 12px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 15px 15px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .seo-card,
    .step-item,
    .benefit-item,
    .faq-item {
        border-width: 2px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .seo-card,
    .step-item,
    .benefit-item,
    .faq-item,
    .faq-question,
    .faq-answer,
    .faq-icon {
        transition: none;
    }
    
    .faq-item.active .faq-answer {
        transition: none;
    }
}

