/* Hero Section */
.hero-v2 {
    padding: 180px 0 100px;
    background: radial-gradient(circle at 50% -20%, rgba(197, 249, 73, 0.15), transparent 70%), #fff;
    text-align: center;
    overflow: hidden;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 23, 42, 0.05);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 30px;
}

.hero-badge span {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--primary-color);
}

.hero-v2 h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(40px, 8vw, 84px);
    line-height: 1;
    letter-spacing: -3px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 30px;
}

.hero-v2 h1 span {
    color: var(--primary-color);
    -webkit-text-stroke: 1px #0f172a;
}

.hero-v2 p {
    font-size: clamp(18px, 2vw, 22px);
    color: #64748b;
    max-width: 750px;
    margin: 0 auto 50px;
    line-height: 1.6;
    font-weight: 600;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: #0f172a;
    color: #fff;
    padding: 22px 45px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-5px) scale(1.05);
    background: #000;
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.3);
}

.btn-hero-secondary {
    background: #fff;
    color: #0f172a;
    padding: 22px 45px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
    border: 2px solid #e2e8f0;
}

.btn-hero-secondary:hover {
    border-color: #0f172a;
    background: #f8fafc;
}

/* Ticker */
.ticker-v2 {
    padding: 40px 0;
    background: #fff;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: tickerMove 40s linear infinite;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
    color: #cbd5e1;
    transition: 0.3s;
}

.ticker-item:hover {
    color: #94a3b8;
}

@keyframes tickerMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header .tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(197, 249, 73, 0.1);
    color: #0f172a;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -2px;
    color: #0f172a;
}

.section-header p {
    color: #64748b;
    font-size: 18px;
    max-width: 600px;
    margin: 15px auto 0;
}

/* Tools Section */
.tools-v2 {
    padding: 100px 0;
    background: #f8fafc;
}

.tool-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.tool-card-v2 {
    background: #fff;
    border-radius: 32px;
    padding: 30px;
    border: 1px solid #f1f5f9;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tool-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

.tool-icon-v2 {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    overflow: hidden;
}

.tool-icon-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tool-card-v2 h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.tool-card-v2 p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 25px;
}

.tool-link-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    text-decoration: none;
    color: #0f172a;
    font-weight: 700;
}

.tool-link-v2 i {
    transition: 0.3s;
}

.tool-card-v2:hover .tool-link-v2 i {
    transform: translateX(5px);
    color: var(--primary-color);
}

/* How it Works */
.how-v2 {
    padding: 100px 0;
    background: #fff;
}

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

.how-item {
    text-align: center;
    position: relative;
}

.how-item::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50px;
    right: -20px;
    font-size: 24px;
    color: #e2e8f0;
}

.how-item:last-child::after {
    display: none;
}

.how-step {
    width: 100px;
    height: 100px;
    background: #0f172a;
    color: #fff;
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    margin: 0 auto 30px;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.2);
}

.how-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.how-item p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
    padding: 0 20px;
}

/* Bento Features */
.bento-v2 {
    padding: 100px 0;
    background: #f8fafc;
}

.bento-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 30px;
}

.bento-card {
    background: #fff;
    border-radius: 40px;
    padding: 40px;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.4s;
}

.bento-card:hover {
    transform: scale(1.02);
    border-color: var(--primary-color);
}

.bento-card.dark {
    background: #0f172a;
    color: #fff;
    grid-column: span 2;
}

.bento-card.dark p {
    color: #94a3b8;
}

.bento-card i {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.bento-card h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
}

.bento-card p {
    font-size: 16px;
    color: #64748b;
}

/* Pricing Section */
.pricing-v2-section {
    padding: 100px 0;
    background: #fff;
}

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

.price-card-v2 {
    background: #fff;
    border-radius: 40px;
    padding: 50px;
    border: 1px solid #f1f5f9;
    position: relative;
    transition: 0.4s;
}

.price-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.07);
}

.price-card-v2.featured {
    background: #0f172a;
    color: #fff;
    border: none;
}

.price-card-v2.featured .price-header h3 {
    color: #fff;
}

.price-card-v2.featured .price-header p {
    color: #94a3b8;
}

.price-card-v2.featured .price-features li {
    color: #e2e8f0;
}

.price-header h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
}

.price-header p {
    color: #64748b;
    font-size: 15px;
    margin-bottom: 30px;
}

.price-amount {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 40px;
    display: flex;
    align-items: baseline;
}

.price-amount span {
    font-size: 20px;
    color: #94a3b8;
    font-weight: 700;
    margin-left: 10px;
}

.price-features {
    list-style: none;
    margin-bottom: 40px;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 16px;
}

.price-features i {
    color: var(--primary-color);
    font-size: 20px;
}

.btn-price {
    display: block;
    width: 100%;
    padding: 22px;
    text-align: center;
    background: var(--primary-color);
    color: #0f172a;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 800;
    font-size: 18px;
    transition: 0.3s;
}

.btn-price:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(197, 249, 73, 0.3);
    background: #fff;
}

.price-card-v2.featured .btn-price:hover {
    background: #fff;
    color: #0f172a;
}

/* FAQ Section */
.faq-v2 {
    padding: 100px 0;
    background: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8fafc;
    border-radius: 24px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    transition: 0.3s;
}

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

.faq-answer {
    padding: 0 30px 30px;
    color: #64748b;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

/* CTA Section */
.cta-v2 {
    padding: 100px 0;
    background: #0f172a;
    color: #fff;
    text-align: center;
    border-radius: 60px;
    margin: 0 20px 100px;
    position: relative;
    overflow: hidden;
}

.cta-v2 h2 {
    font-size: clamp(32px, 5vw, 64px);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    margin-bottom: 30px;
}

.cta-v2 p {
    font-size: 20px;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 50px;
}

@media (max-width: 991px) {

    .how-grid,
    .bento-grid-v2 {
        grid-template-columns: 1fr;
    }

    .bento-card.dark {
        grid-column: span 1;
    }

    .how-item::after {
        display: none;
    }

    .hero-v2 {
        padding-top: 140px;
    }
}

/* --- Refactoring Additions --- */
.view-all-container {
    text-align: center;
    margin-top: 60px;
}

.btn-cta-start {
    background: var(--primary-color) !important;
    color: #0f172a !important;
}

.btn-cta-support {
    background: transparent !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.currency-switcher-form {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--card-bg);
    padding: 6px 15px;
    border-radius: 100px;
    border: 1px solid var(--border-color);
}

.currency-label {
    font-size: 12px;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
}

.currency-select {
    border: none;
    font-weight: 800;
    cursor: pointer;
    outline: none;
    background: transparent;
    color: var(--text-main);
}

/* Pricing Page Specifics */
.pricing-header-container {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 15px;
    color: var(--text-main);
}

.pricing-highlight {
    position: relative;
    z-index: 1;
}

.pricing-highlight-underline {
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--primary-color);
    z-index: -1;
    opacity: 0.5;
    border-radius: 4px;
}

.pricing-subtitle {
    color: #64748b;
    font-size: 18px;
    font-weight: 600;
    max-width: 600px;
    margin: 0 auto;
}

/* Single Tools Search */
.single-tool-search-container {
    max-width: 600px;
    margin: 0 auto 50px;
}

.search-wrapper {
    position: relative;
}

.search-icon {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.search-input {
    width: 100%;
    padding: 22px 30px 22px 60px;
    border-radius: 25px;
    border: 1px solid #e2e8f0;
    background: white;
    font-weight: 700;
    font-size: 16px;
    outline: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: 0.3s;
}

.search-input:focus {
    border-color: var(--primary-color);
}