/* SEO Tools Page Specific Styles */
:root {
    --primary-color: #D4A017;
    --secondary-color: #1a1a2e;
    --text-color: #333;
    --bg-light: #000000;
}

/* Hero Section - Split Layout */
.hero-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2d3561 100%);
    padding: 80px 0 100px;
    overflow: hidden;
    color: #fff;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    padding-right: 20px;
}

.hero-headline {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: var(--Unbounded);
}

.hero-headline .highlight {
    color: var(--yellow);
}

.hero-headline .normal {
    color: #fff;
}

.hero-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.8;
    font-family: var(--Unbounded);
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.cta-button {
    background: linear-gradient(135deg, var(--yellow) 0%, #ff9800 100%);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--yellow);
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #ff9800 0%, var(--yellow) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.4);
    color: #fff;
    text-decoration: none;
}

.cta-disclaimer {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.hero-right {
    position: relative;
}

.dashboard-preview {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.3s ease;
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.dashboard-header {
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-content {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    min-height: 300px;
}

.dashboard-header-text {
    font-weight: 600;
    color: #333;
}

.dashboard-header-subtext {
    font-size: 0.9rem;
    color: #999;
}

.dashboard-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.dashboard-stat-box {
    background: #f0f0f0;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.dashboard-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.dashboard-stat-label {
    font-size: 0.85rem;
    color: #666;
}

.metric-box {
    background: linear-gradient(135deg, var(--yellow) 0%, #ff9800 100%);
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: center;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Features Section */
.features-section {
    background: #ffffff;
    padding: 80px 0;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    font-family: var(--Unbounded);
}

.features-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e8e8e8;
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    border-color: var(--yellow);
    box-shadow: 0 12px 40px rgba(212, 160, 23, 0.2);
    transform: translateY(-8px);
    background: linear-gradient(135deg, #ffffff 0%, #fffbf0 100%);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--yellow) 0%, #ff9800 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    font-family: var(--Unbounded);
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Tools Section */
.tools-section {
    background: #000000;
    padding: 80px 0;
}

.category-section {
    margin-bottom: 60px;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(212, 160, 23, 0.3);
    font-family: var(--Unbounded);
}

.tools-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: var(--Unbounded);
}

.section-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Tools section (black background) */
.tools-section .section-header h2 {
    color: #fff;
}

.tools-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

/* Categories section (white background) */
.categories-section .section-header h2 {
    color: #333;
}

.categories-section .section-header p {
    color: #666;
}

/* How It Works section (white background) */
.how-it-works-section .section-header h2 {
    color: #333 !important;
}

.how-it-works-section .section-header p {
    color: #666 !important;
}

/* Comparison section (white background) */
.comparison-section .section-header h2 {
    color: #333;
}

.comparison-section .section-header p {
    color: #666;
}

/* Pricing section (white background) */
.pricing-section .section-header h2 {
    color: #333;
}

.pricing-section .section-header p {
    color: #666;
}

/* Why Love section (white background) */
.why-love-section .section-header h2 {
    color: #333 !important;
}

.why-love-section .section-header p {
    color: #666 !important;
}

/* Benefits section (black background) */
.benefits-section .section-header h2 {
    color: #fff;
}

.benefits-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

/* Featured Tools section (black background) */
.featured-tools-section .section-header h2 {
    color: #fff !important;
    font-size: 2.5rem;
    font-weight: 700;
}

.featured-tools-section .section-header p {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Testimonials section (black background) */
.testimonials-section .section-header h2 {
    color: #fff;
}

.testimonials-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

/* Resources section (black background) */
.resources-section .section-header h2 {
    color: #fff;
}

.resources-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

/* FAQ section (black background) */
.faq-section .section-header h2 {
    color: #fff;
}

.faq-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.tool-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--yellow) 0%, #ff9800 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(212, 160, 23, 0.25);
    text-decoration: none;
    color: inherit;
    border-color: rgba(212, 160, 23, 0.3);
}

.tool-card:hover::before {
    transform: scaleX(1);
}

.tool-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--yellow) 0%, #ff9800 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.tool-card:hover .tool-icon {
    transform: scale(1.1) rotate(5deg);
}

.tool-icon svg {
    width: 35px;
    height: 35px;
    fill: #fff;
}

.tool-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    font-family: var(--Unbounded);
}

.tool-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tool-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.tool-features li {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.tool-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-weight: bold;
}

.tool-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--yellow);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.tool-card:hover .tool-link {
    gap: 12px;
}

.tool-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Why Love Section */
.why-love-section {
    background: #ffffff;
    padding: 80px 0;
}

.why-love-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-love-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.why-love-card {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-love-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(212, 160, 23, 0.15);
}

.why-love-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--yellow) 0%, #ff9800 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-love-icon svg {
    width: 40px;
    height: 40px;
    fill: #fff;
}

.why-love-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    font-family: var(--Unbounded);
}

.why-love-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* FAQ Section - Modern Design */
.faq-section {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.5), transparent);
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--yellow), #ff9800);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(212, 160, 23, 0.2);
    border-color: rgba(212, 160, 23, 0.3);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item.active {
    border-color: rgba(212, 160, 23, 0.5);
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.faq-item.active::before {
    opacity: 1;
}

.faq-question {
    padding: 28px 32px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
    font-family: var(--Unbounded);
    position: relative;
}

.faq-question span {
    flex: 1;
    line-height: 1.5;
}

.faq-question:hover {
    color: var(--yellow);
}

.faq-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon-wrapper {
    background: linear-gradient(135deg, var(--yellow), #ff9800);
    transform: rotate(180deg);
}

.faq-icon {
    width: 20px;
    height: 20px;
    stroke: var(--yellow);
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    stroke: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.faq-answer.active {
    max-height: 600px;
}

.faq-answer-content {
    padding: 0 32px 28px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    font-family: var(--Unbounded);
    font-size: 1rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.faq-answer.active .faq-answer-content {
    opacity: 1;
    transform: translateY(0);
}

.fadein {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fadein.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Benefits Section */
.benefits-section {
    background: #000000;
    padding: 80px 0;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--yellow);
    box-shadow: 0 12px 40px rgba(212, 160, 23, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--yellow), #ff9800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.benefit-icon svg {
    width: 40px;
    height: 40px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    font-family: var(--Unbounded);
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0;
}

/* Categories Section */
.categories-section {
    background: #ffffff;
    padding: 80px 0;
}

.categories-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.category-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e8e8e8;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--yellow);
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.15);
}

.category-card.active {
    border-color: var(--yellow);
    border-width: 3px;
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.25);
}

.category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--yellow), #ff9800);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.category-icon svg {
    width: 30px;
    height: 30px;
}

.category-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    font-family: var(--Unbounded);
}

.category-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.category-count {
    display: inline-block;
    background: var(--yellow);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Featured Tools Section */
.featured-tools-section {
    background: #000000;
    padding: 80px 0;
}

.featured-tools-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.featured-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.featured-tool-card {
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(212, 160, 23, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: all 0.4s ease;
    display: block;
}

.featured-tool-card:hover {
    transform: translateY(-8px);
    border-color: var(--yellow);
    box-shadow: 0 15px 50px rgba(212, 160, 23, 0.3);
    color: inherit;
    text-decoration: none;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--yellow), #ff9800);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.featured-tool-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--yellow), #ff9800);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.featured-tool-icon svg {
    width: 40px;
    height: 40px;
    fill: #fff;
}

.featured-tool-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    font-family: var(--Unbounded);
}

.featured-tool-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.featured-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.featured-stats span {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* How It Works Section */
.how-it-works-section {
    background: #ffffff;
    padding: 80px 0;
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e8e8e8;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--yellow);
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--yellow), #ff9800);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    font-family: var(--Unbounded);
}

.step-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    background: #000000;
    padding: 80px 0;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--yellow);
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.2);
}

.testimonial-rating {
    color: var(--yellow);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Comparison Section */
.comparison-section {
    background: #ffffff;
    padding: 80px 0;
}

.comparison-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.comparison-table-wrapper {
    margin-top: 50px;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--secondary-color), #2d3561);
    color: #fff;
}

.comparison-table th {
    padding: 20px;
    text-align: left;
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid #e8e8e8;
    color: #333;
}

.comparison-table tbody tr:hover {
    background: #f8f9fa;
}

.comparison-table td:first-child {
    font-weight: 600;
}

/* Resources Section */
.resources-section {
    background: #000000;
    padding: 80px 0;
}

.resources-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.resource-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    border-color: var(--yellow);
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.2);
}

.resource-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--yellow), #ff9800);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 20px;
}

.resource-icon svg {
    width: 30px;
    height: 30px;
}

.resource-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    font-family: var(--Unbounded);
}

.resource-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.resource-link {
    color: var(--yellow);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.resource-link:hover {
    gap: 10px;
    color: #ff9800;
}

/* Pricing Section */
.pricing-section {
    background: #ffffff;
    padding: 80px 0;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.pricing-content {
    text-align: left;
}

.pricing-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    font-family: var(--Unbounded);
}

.pricing-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.pricing-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-content li {
    padding: 10px 0;
    color: #333;
    font-size: 1.1rem;
}

.pricing-content li span {
    color: var(--yellow);
    font-weight: bold;
    margin-right: 10px;
}

.pricing-card-single {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 3px solid var(--yellow);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(212, 160, 23, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--yellow), #ff9800);
    color: #fff;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
}

.pricing-card-single h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    font-family: var(--Unbounded);
}

.pricing-price {
    margin-bottom: 30px;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--yellow);
}

.price-period {
    font-size: 1.2rem;
    color: #666;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    color: #333;
    font-size: 1.1rem;
    border-bottom: 1px solid #e8e8e8;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--yellow), #ff9800);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.4);
    color: #fff;
    text-decoration: none;
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .hero-right {
        order: -1;
    }

    .dashboard-preview {
        transform: none;
    }

    .tools-grid,
    .features-grid,
    .why-love-grid,
    .benefits-grid,
    .categories-grid,
    .testimonials-grid,
    .resources-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .featured-tools-grid {
        grid-template-columns: 1fr;
    }

    .faq-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .faq-question {
        padding: 22px 24px;
        font-size: 1rem;
    }

    .faq-answer-content {
        padding: 0 24px 22px;
        font-size: 0.95rem;
    }

    .comparison-table-wrapper {
        overflow-x: scroll;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-content {
        text-align: center;
    }
}

