/* Reset and Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #2d3748;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: #ff5722;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-account {
    padding: 8px 20px;
    border: 2px solid #ff5722;
    background: transparent;
    color: #ff5722;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-account:hover {
    background: #ff5722;
    color: white;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2d3748;
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-icon {
    color: #2d3748;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 6px;
    text-decoration: none;
}

.nav-icon:hover {
    color: #ff5722;
    background: rgba(255, 87, 34, 0.1);
}

/* Dropdown Menu */
.nav-item.dropdown {
    position: relative;
}

.nav-link svg {
    transition: transform 0.3s ease;
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    /* pointer-events: none; */
    min-width: 250px;
    z-index: 1000;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.nav-item.dropdown:hover .nav-link svg {
    transform: rotate(180deg);
}

.dropdown-content {
    display: flex;
    flex-direction: column;
    padding: 15px 0;
}

.dropdown-content a {
    display: block;
    padding: 12px 25px;
    color: #718096;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown-content a:hover {
    color: #ff5722;
    background: #f7fafc;
    border-left-color: #ff5722;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        gap: 0;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-actions {
        display: none;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        box-shadow: none;
        min-width: auto;
        margin-top: 0;
        padding-left: 20px;
        display: none;
    }

    .nav-item.dropdown.open .dropdown-menu {
        display: block;
    }

    .nav-link {
        padding: 15px 0;
        border-bottom: 1px solid #e2e8f0;
    }

    .dropdown-content a {
        padding: 12px 20px;
    }
}

/* Mobile Menu Toggle Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2E2F41 0%, #5C5EAB 100%);
    min-height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    max-width: 700px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.hero-list {
    list-style: none;
    margin-bottom: 35px;
}

.hero-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.hero-list svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    stroke: #FF6B2C;
}

.hero-cta-group {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.hero-cta {
    background: #FF6B2C;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.hero-cta:hover {
    background: #e55a1f;
    transform: translateY(-2px);
}

.hero-cta svg {
    width: 20px;
    height: 20px;
}

.hero-cta-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-cta-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

.hero-note {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

/* Section Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2E2F41;
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #fff;
    text-align: center;
    max-width: 700px;
    margin: -30px auto 50px;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #f9f9f9;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.pricing-card.featured {
    border: 2px solid #5C5EAB;
    position: relative;
}

.pricing-card-header {
    margin-bottom: 25px;
}

.pricing-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2E2F41;
    margin-bottom: 15px;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #2E2F41;
    line-height: 1;
}

.pricing-amount.purple {
    color: #5C5EAB;
}

.pricing-period {
    font-size: 0.9rem;
    color: #666;
}

.pricing-note {
    font-size: 0.85rem;
    color: #888;
    margin-top: 10px;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 8px;
}

.pricing-features {
    list-style: none;
    flex: 1;
    margin-bottom: 25px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #555;
}

.pricing-features svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: #FF6B2C;
}

.pricing-features svg.purple {
    stroke: #5C5EAB;
}

.pricing-btn {
    width: 100%;
    padding: 14px;
    background: #2E2F41;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.pricing-btn:hover {
    background: #1a1a2e;
}

.pricing-btn.purple {
    background: #5C5EAB;
}

.pricing-btn.purple:hover {
    background: #4a4c8a;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #2E2F41 0%, #5C5EAB 100%);
}

.how-it-works .section-title {
    color: white;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.how-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.step-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: #FF6B2C;
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
}

.cta-btn {
    background: white;
    color: #FF6B2C;
    border: none;
    padding: 16px 35px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-btn svg {
    width: 20px;
    height: 20px;
}

/* What is Trademark Section */
.what-is-trademark {
    padding: 80px 0;
}

.trademark-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.trademark-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2E2F41;
    margin-bottom: 30px;
}

.trademark-content ul {
    list-style: none;
}

.trademark-content li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.trademark-content svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    stroke: #FF6B2C;
}

.trademark-illustration {
    display: flex;
    justify-content: center;
}

.trademark-illustration svg {
    max-width: 100%;
    height: auto;
}

/* Why Essential Section */
.why-essential {
    padding: 80px 0;
    background: #f9f9f9;
}

.why-essential-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-essential-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.why-essential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.why-essential-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fff4e6 0%, #fff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-essential-icon svg {
    width: 30px;
    height: 30px;
    stroke: #FF6B2C;
}

.why-essential-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2E2F41;
    margin-bottom: 10px;
}

.why-essential-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Why Search Section */
.why-search {
    padding: 80px 0;
}

.search-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.search-illustration {
    display: flex;
    justify-content: center;
}

.search-illustration svg {
    max-width: 100%;
    height: auto;
}

.search-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2E2F41;
    margin-bottom: 20px;
}

.search-intro {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.search-feature {
    display: flex;
    gap: 15px;
}

.search-feature-icon {
    width: 50px;
    height: 50px;
    background: #fff4e6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: #FF6B2C;
}

.search-feature-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2E2F41;
    margin-bottom: 8px;
}

.search-feature-text p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Testimonial Section */
.testimonial {
    padding: 80px 0;
    background: #f9f9f9;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.testimonial-quote {
    margin-bottom: 25px;
}

.testimonial-quote svg {
    width: 50px;
    height: 50px;
    fill: #FF6B2C;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    color: #2E2F41;
}

.testimonial-image {
    border-radius: 15px;
    overflow: hidden;
}

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

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

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

.faq-icon {
    width: 30px;
    height: 30px;
    background: #5C5EAB;
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.faq-text {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: #2E2F41;
}

.faq-arrow {
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-arrow svg {
    width: 20px;
    height: 20px;
    stroke: #666;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 25px 20px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
}

/* SEO Section */
.seo-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.seo-content {
    max-width: 900px;
    margin: 0 auto;
}

.seo-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.seo-content p:last-child {
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: #2E2F41;
    color: #a0aec0;
    padding: 60px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    color: #a0aec0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.footer-contact-item:hover {
    color: white;
}

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

.footer-column-title {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-list a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-link-list a:hover {
    color: white;
}

.footer-bottom {
    background: #1a202c;
    padding: 30px 20px;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-disclaimer {
    color: #718096;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.footer-disclaimer a {
    color: #FF6B2C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-disclaimer a:hover {
    color: #ff8c42;
}

.footer-social {
    display: flex;
    gap: 15px;
}

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

.social-icon:hover {
    background: #FF6B2C;
    color: white;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-essential-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .trademark-grid,
    .search-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonial-image {
        order: -1;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .hero-cta,
    .hero-cta-outline {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    .why-essential-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-disclaimer {
        text-align: center;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .trademark-content h2,
    .search-content h2 {
        font-size: 1.8rem;
    }

    .testimonial-grid {
        padding: 30px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .faq-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-container {
        padding: 40px 15px;
    }

    .section-container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .pricing {
        padding: 50px 0;
    }

    .pricing-card {
        padding: 25px 20px;
    }

    .pricing-amount {
        font-size: 2.5rem;
    }

    .how-it-works,
    .what-is-trademark,
    .why-essential,
    .why-search,
    .testimonial,
    .faq {
        padding: 50px 0;
    }

    .cta-section {
        padding: 40px 0;
    }

    .cta-title {
        font-size: 1.3rem;
    }

    .testimonial-grid {
        padding: 25px;
    }

    .testimonial-quote svg {
        width: 40px;
        height: 40px;
    }

    .footer-bottom-container {
        padding: 0;
    }
}
