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

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #1a1a2e;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Floating Navigation Bar */
.floating-bar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 80px;
    padding: 12px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    border: 1px solid rgba(255, 77, 109, 0.2);
}

.logo-small {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-small i {
    font-size: 1.8rem;
}

.logo-small span {
    background: linear-gradient(135deg, #ff4d6d, #ff758f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid #ff4d6d;
    color: #ff4d6d;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-right: 12px;
}

.btn-outline-light:hover {
    background: #ff4d6d;
    color: white;
    transform: translateY(-2px);
}

.btn-primary-small {
    background: linear-gradient(135deg, #ff4d6d, #ff758f);
    border: none;
    color: white;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 77, 109, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg-shape {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 77, 109, 0.08), transparent);
    border-radius: 50%;
    z-index: 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 77, 109, 0.12);
    padding: 8px 20px;
    border-radius: 40px;
    color: #ff4d6d;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #ff4d6d, #ff758f, #ffb3c6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-sub {
    font-size: 1.2rem;
    color: #4a4a5a;
    margin-bottom: 32px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 48px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff4d6d, #ff758f);
    border: none;
    color: white;
    padding: 14px 32px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 77, 109, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid #ff4d6d;
    color: #ff4d6d;
    padding: 14px 32px;
    border-radius: 60px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline:hover {
    background: #ff4d6d;
    color: white;
    transform: translateY(-3px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ff4d6d;
}

.stat span:last-child {
    color: #6c6c7a;
    font-size: 0.9rem;
}

/* Phone Mockup */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    height: 580px;
    background: #1a1a2e;
    border-radius: 40px;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: 5px solid #2a2a3e;
}

.mockup-inner {
    padding: 20px;
    height: 100%;
    background: linear-gradient(145deg, #fff5f7, white);
}

.mockup-header {
    text-align: center;
    font-weight: 700;
    color: #ff4d6d;
    margin-bottom: 20px;
}

.match-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.match-card img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.chat-bubble {
    background: #ff4d6d;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-top: 12px;
    text-align: center;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 10px 18px;
    border-radius: 40px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    font-size: 0.85rem;
    font-weight: 500;
}

.card-1 {
    top: 10%;
    left: -20px;
    color: #ff4d6d;
}

.card-2 {
    bottom: 20%;
    right: -30px;
    background: #28a745;
    color: white;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #fef8f9;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 77, 109, 0.1);
    padding: 6px 18px;
    border-radius: 40px;
    color: #ff4d6d;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    color: #6c6c7a;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: white;
    padding: 32px 24px;
    border-radius: 32px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(255, 77, 109, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(255, 77, 109, 0.12);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff4d6d20, #ff758f20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: #ff4d6d;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    color: #6c6c7a;
    line-height: 1.5;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: white;
}

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

.testimonial-card {
    background: #fef8f9;
    padding: 32px;
    border-radius: 32px;
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: #ff4d6d;
    opacity: 0.3;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #2a2a3a;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

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

.cta-container h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

.cta-container p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 32px;
}

.trust-badge {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.trust-badge i {
    margin-right: 8px;
}

/* Footer */
footer {
    background: #0f0f17;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    margin: 12px 0 8px;
}

.footer-brand p {
    color: #a0a0b0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-links h4 {
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: #a0a0b0;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ff4d6d;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2a2a3a;
    color: #a0a0b0;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 48px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s ease;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #aaa;
}

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

/* Responsive */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
    .floating-bar {
        width: 95%;
        padding: 10px 18px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 16px;
    }
    .features-grid, .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* ── Floating Nav: single-line, scrollable, never wraps ── */
    .floating-bar {
        top: 10px;
        width: 94%;
        padding: 9px 14px;
        border-radius: 50px;
        gap: 0;
        flex-wrap: nowrap;
        min-width: 0;
    }

    .logo-small {
        font-size: 1.05rem;
        flex-shrink: 0;
        white-space: nowrap;
        gap: 5px;
    }

    .logo-small i {
        font-size: 1.2rem;
    }

    /* Button wrapper: horizontal scroll, hidden scrollbar, single line */
    .floating-bar > div:last-child {
        display: flex;
        align-items: center;
        gap: 6px;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        flex-shrink: 1;
        min-width: 0;
        padding-right: 2px;
    }

    .floating-bar > div:last-child::-webkit-scrollbar {
        display: none;
    }

    .btn-outline-light {
        padding: 6px 13px;
        font-size: 0.78rem;
        margin-right: 0;
        white-space: nowrap;
        flex-shrink: 0;
        border-width: 1.5px;
    }

    .btn-primary-small {
        padding: 6px 13px;
        font-size: 0.78rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* ── Hero ── */
    .hero {
        padding: 95px 0 50px;
    }

    .hero h1 {
        font-size: 1.9rem;
        line-height: 1.18;
    }

    .hero-badge {
        font-size: 0.78rem;
        padding: 6px 14px;
    }

    .hero-sub {
        font-size: 0.92rem;
        line-height: 1.55;
        padding: 0 4px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 12px 20px;
        justify-content: center;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    /* Hide floating cards & phone on tiny screens to avoid overflow */
    .floating-card {
        display: none;
    }

    .hero-image {
        display: flex;
        justify-content: center;
        margin-top: 24px;
    }

    .phone-mockup {
        width: 200px;
        height: 340px;
    }

    /* ── Features ── */
    .section-header h2 {
        font-size: 1.6rem;
    }

    .feature-card {
        padding: 20px;
    }

    /* ── Testimonials ── */
    .testimonial-card {
        padding: 20px;
    }

    /* ── CTA ── */
    .cta-section {
        padding: 60px 16px;
    }

    .cta-container h2 {
        font-size: 1.7rem;
        line-height: 1.2;
    }

    .cta-container p {
        font-size: 0.92rem;
    }

    /* ── Footer ── */
    .footer-content {
        gap: 24px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 380px) {
    .hero h1 {
        font-size: 1.65rem;
    }

    .floating-bar {
        padding: 8px 10px;
    }

    .logo-small span {
        display: none; /* ultra-small: icon only */
    }

    .btn-outline-light,
    .btn-primary-small {
        padding: 6px 10px;
        font-size: 0.73rem;
    }
}
/* Enhanced Modal for Footer Links */
.footer-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
}

.footer-modal .modal-content {
    background: white;
    border-radius: 32px;
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideUp 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Mobile full width */
@media (max-width: 600px) {
    .footer-modal .modal-content {
        width: 95%;
        max-height: 90vh;
        border-radius: 24px;
    }
}

.footer-modal .modal-header {
    position: sticky;
    top: 0;
    background: white;
    padding: 20px 24px;
    border-bottom: 2px solid #ffe2ec;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.footer-modal .modal-header h2 {
    font-size: 1.5rem;
    margin: 0;
    background: linear-gradient(135deg, #ff4d6d, #ff758f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-modal .close-footer-modal {
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
    line-height: 1;
}

.footer-modal .close-footer-modal:hover {
    color: #ff4d6d;
}

.footer-modal .modal-body {
    padding: 24px;
}

/* FAQ Accordion Styles */
.faq-item {
    margin-bottom: 16px;
    border: 1px solid #ffe2ec;
    border-radius: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 16px 20px;
    background: #fef8f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #ffe2ec;
}

.faq-question i {
    color: #ff4d6d;
    transition: transform 0.2s;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: white;
    color: #4a4a5a;
    line-height: 1.6;
}

.faq-answer.active {
    padding: 16px 20px;
    max-height: 300px;
}

/* Rule Cards */
.rule-card {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #fef8f9;
    border-radius: 20px;
    margin-bottom: 16px;
}

.rule-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 77, 109, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rule-icon i {
    font-size: 1.4rem;
    color: #ff4d6d;
}

.rule-content h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.rule-content p {
    color: #6c6c7a;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Contact Form */
.contact-form-group {
    margin-bottom: 20px;
}

.contact-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #ffe2ec;
    border-radius: 60px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
}

.contact-form-group textarea {
    border-radius: 24px;
    resize: vertical;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    border-color: #ff4d6d;
}

.contact-submit-btn {
    background: linear-gradient(135deg, #ff4d6d, #ff758f);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 60px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    transition: transform 0.2s;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
}

/* How It Works Steps */
.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff4d6d, #ff758f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.step-content p {
    color: #6c6c7a;
    line-height: 1.5;
}

/* Safety Tips Grid */
.safety-tip {
    background: #fef8f9;
    padding: 16px;
    border-radius: 20px;
    margin-bottom: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.safety-tip i {
    color: #ff4d6d;
    font-size: 1.2rem;
    margin-top: 2px;
}

.safety-tip span {
    flex: 1;
    line-height: 1.5;
}

/* Legal Content Styling */
.legal-section {
    margin-bottom: 24px;
}

.legal-section h3 {
    color: #ff4d6d;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.legal-section p {
    color: #4a4a5a;
    line-height: 1.6;
    margin-bottom: 12px;
}

.legal-section ul {
    padding-left: 20px;
    color: #4a4a5a;
    margin-bottom: 12px;
}

.legal-section li {
    margin-bottom: 6px;
}

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