* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #0b0b0f;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header with Logo */
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 20px 30px;
}

.logo {
    display: block;
    text-decoration: none;
}

.logo img {
    height: 100px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0 40px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0b0b0f 0%, #1a1a2e 100%);
    z-index: 1;
}

.logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    white-space: nowrap;
    z-index: 2;
    pointer-events: none;
}

.gradient-stroke {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    width: 150%;
    height: 200px;
    background: linear-gradient(90deg, 
        rgba(255, 102, 0, 0.8) 0%, 
        rgba(255, 153, 51, 0.8) 50%, 
        rgba(255, 69, 0, 0.8) 100%);
    filter: blur(40px);
    z-index: 3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    padding: 20px;
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    height: 250px;
    width: auto;
    margin-bottom: 30px;
}

/* Hero decorative side elements */
.hero-decor {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 40px;
    z-index: 2;
    opacity: 0.15;
}

.hero-decor.left {
    left: 5%;
}

.hero-decor.right {
    right: 5%;
}

.hero-decor span {
    font-size: 4rem;
    filter: grayscale(50%);
    transition: all 0.5s ease;
}

.hero-decor.left span:nth-child(1) { transform: rotate(-15deg); }
.hero-decor.left span:nth-child(2) { transform: rotate(10deg) translateX(20px); }
.hero-decor.left span:nth-child(3) { transform: rotate(-5deg); }

.hero-decor.right span:nth-child(1) { transform: rotate(15deg); }
.hero-decor.right span:nth-child(2) { transform: rotate(-10deg) translateX(-20px); }
.hero-decor.right span:nth-child(3) { transform: rotate(5deg); }

@media (max-width: 768px) {
    .hero-decor {
        display: none;
    }
}

.hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, #c7c7d1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 80px rgba(255, 102, 0, 0.5));
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    color: #c7c7d1;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: linear-gradient(135deg, #ff6600 0%, #ff9933 50%, #ff4500 100%);
    color: white;
    border: none;
    padding: 20px 48px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(255, 102, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(255, 102, 0, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

/* Advantages Section */
.advantages {
    background: linear-gradient(180deg, #0b0b0f 0%, #1a1a2e 40%, #1a1a2e 60%, #0b0b0f 100%);
    padding: 100px 0;
    position: relative;
}

.advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: #0b0b0f;
    z-index: 0;
}

.advantages .container {
    position: relative;
    z-index: 1;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    padding: 50px 0;
}

.advantage-item {
    background: rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.15) 0%, rgba(255, 69, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.advantage-item:hover::before {
    opacity: 1;
}

.advantage-item:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 102, 0, 0.4);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.advantage-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.advantage-item p {
    font-size: 1rem;
    color: #e0e0e0;
    line-height: 1.6;
    font-weight: 400;
}

/* Contact Section */
.contact {
    background: #0b0b0f;
    padding: 80px 0;
    position: relative;
}

.contact .section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #fff 0%, #c7c7d1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 30px;
    position: relative;
    padding: 0 20px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 102, 0, 0.5);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.2);
}

.contact-card .contact-icon {
    font-size: 2.5rem;
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.contact-card .contact-text strong {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.contact-card .contact-text span {
    color: #c7c7d1;
    font-size: 1.1rem;
}

.side-images {
    display: none;
}

.side-image {
    width: 120px;
    height: 180px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.2) 0%, rgba(255, 69, 0, 0.15) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.side-image::before {
    content: '👠';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    opacity: 0.3;
}

.side-image.left {
    transform: rotate(-5deg);
}

.side-image.right {
    transform: rotate(5deg);
}

/* Calculator Section */
.calculator {
    background: #0b0b0f;
    padding: 100px 0;
}

.section-subtitle {
    text-align: center;
    color: #c7c7d1;
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.calculator-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.calculator-inputs {
    flex: 1;
    max-width: 400px;
}

.input-group {
    margin-bottom: 30px;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #fff;
}

.input-group input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.input-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6600 0%, #ff4500 100%);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
}

.input-group select {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
}

.input-group select option {
    background: #1a1a2e;
    color: #fff;
}

.range-value {
    display: block;
    margin-top: 10px;
    color: #ff6600;
    font-weight: 600;
}

.calculator-result {
    flex: 1;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 102, 0, 0.3);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
}

.result-label {
    color: #c7c7d1;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.result-amount {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6600 0%, #ff9933 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.result-note {
    color: #888;
    font-size: 0.85rem;
}

/* Comparison Section */
.comparison {
    background: linear-gradient(180deg, #0b0b0f 0%, #1a1a2e 100%);
    padding: 100px 0;
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
}

.comparison-header {
    background: rgba(255, 102, 0, 0.2);
}

.comparison-row {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-row:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-cell {
    padding: 20px 25px;
    display: flex;
    align-items: center;
}

.comparison-cell.feature {
    font-weight: 600;
    color: #fff;
}

.comparison-cell.us {
    color: #ff6600;
    font-weight: 600;
    justify-content: center;
    text-align: center;
}

.comparison-cell.others {
    color: #888;
    justify-content: center;
    text-align: center;
}

.comparison-cell.empty {
    background: transparent;
}

.comparison-header .comparison-cell.us {
    background: rgba(255, 102, 0, 0.3);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials {
    background: #0b0b0f;
    padding: 100px 0;
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
    max-width: 100%;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 350px;
    max-width: 350px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    flex-shrink: 0;
}

.testimonial-avatar {
    font-size: 3rem;
    margin-bottom: 20px;
}

.testimonial-content p {
    color: #e0e0e0;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.testimonial-income {
    color: #ff6600;
    font-weight: 600;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: rgba(255, 102, 0, 0.2);
    border-color: #ff6600;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ff6600;
}

/* Leave Review Button */
.leave-review-btn {
    display: block;
    margin: 40px auto 20px;
    padding: 15px 40px;
    background: linear-gradient(135deg, #ff6600 0%, #ff4500 100%);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.leave-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
}

.reviews-disclaimer {
    text-align: center;
    color: #888;
    font-size: 0.85rem;
    margin-top: 10px;
}

/* Review Modal */
.review-modal,
.review-success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.review-modal.active,
.review-success-modal.active {
    display: flex;
}

.review-modal-content,
.review-success-content {
    background: #1a1a2e;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.modal-close:hover {
    opacity: 1;
}

.review-modal-content h3,
.review-success-content h3 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.5rem;
    text-align: center;
}

.review-modal-content input,
.review-modal-content textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
}

.review-modal-content input::placeholder,
.review-modal-content textarea::placeholder {
    color: #888;
}

.review-modal-content textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-review-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ff6600 0%, #ff4500 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-review-btn:hover {
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.4);
}

/* Success Modal */
.review-success-content {
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.review-success-content p {
    color: #c7c7d1;
    margin-bottom: 25px;
    line-height: 1.6;
}

.close-success-btn {
    padding: 12px 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-success-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* FAQ Section */
.faq {
    background: linear-gradient(180deg, #1a1a2e 0%, #0b0b0f 100%);
    padding: 100px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 102, 0, 0.1);
}

.faq-icon {
    font-size: 1.5rem;
    color: #ff6600;
    transition: transform 0.3s ease;
}

.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;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: #c7c7d1;
    line-height: 1.8;
}

/* Responsive for new sections */
@media (max-width: 768px) {
    .calculator-wrapper {
        flex-direction: column;
    }
    
    .calculator-inputs,
    .calculator-result {
        max-width: 100%;
        width: 100%;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
    
    .comparison-cell {
        padding: 15px 10px;
        font-size: 0.9rem;
    }
    
    .testimonial-card {
        min-width: 280px;
        max-width: 280px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-card {
        width: 100%;
        justify-content: center;
    }
    
    .side-images {
        order: -1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(3rem, 10vw, 5rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.3rem);
    }
    
    .cta-button {
        padding: 16px 36px;
        font-size: 1rem;
    }
    
    .advantages {
        padding: 60px 0;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 30px 0;
    }
    
    .advantage-item {
        padding: 24px;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-info {
        max-width: 100%;
    }
    
    .side-images {
        justify-content: center;
        gap: 20px;
    }
    
    .side-image {
        width: 150px;
        height: 200px;
    }
    
    .section-title {
        font-size: clamp(2rem, 4vw, 2.5rem);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .logo-overlay {
        font-size: 8vw;
    }
    
    .hero {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 4rem);
    }
    
    .advantage-item {
        padding: 20px;
    }
    
    .contact-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        min-width: auto;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.advantage-item {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.advantage-item:nth-child(1) { animation-delay: 0.1s; }
.advantage-item:nth-child(2) { animation-delay: 0.2s; }
.advantage-item:nth-child(3) { animation-delay: 0.3s; }
.advantage-item:nth-child(4) { animation-delay: 0.4s; }
.advantage-item:nth-child(5) { animation-delay: 0.5s; }
.advantage-item:nth-child(6) { animation-delay: 0.6s; }

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Firefox scrollbar - only applies to Firefox */
@supports (scrollbar-width: thin) {
    * {
        scrollbar-width: thin;
        scrollbar-color: #ff6600 #0b0b0f;
    }
}

/* Webkit scrollbar - Chrome, Safari, Edge */
@supports selector(::-webkit-scrollbar) {
    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-track {
        background: #0b0b0f;
    }

    ::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, #ff6600 0%, #ff4500 100%);
        border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(135deg, #ff9933 0%, #ff6600 100%);
    }
}

/* Focus styles for accessibility */
button:focus,
a:focus {
    outline: 2px solid #ff6600;
    outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-background,
    .logo-overlay,
    .gradient-stroke {
        transform: none !important;
    }
}
