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

:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --secondary: #8b5cf6;
    --accent: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #0f172a;
    --gray: #64748b;
    --light-gray: #f1f5f9;
    --white: #ffffff;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 50px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

/* Section Styles */
.section {
    padding: 80px 20px;
}

.section:nth-child(even) {
    background: var(--light-gray);
}

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

.section-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-badge.priority {
    background: var(--danger);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Findings Grid */
.findings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.finding-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.finding-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.finding-card.critical {
    border-left-color: var(--danger);
}

.finding-card.warning {
    border-left-color: var(--warning);
}

.finding-card.info {
    border-left-color: var(--success);
}

.finding-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.finding-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.finding-card p {
    color: var(--gray);
    margin-bottom: 15px;
}

.impact {
    background: var(--light-gray);
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 15px;
}

.impact strong {
    color: var(--dark);
}

/* Google Shopping Comparison */
.shopping-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.comparison-side {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.comparison-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--light-gray);
}

.comparison-title.before {
    color: var(--danger);
}

.comparison-title.after {
    color: var(--success);
}

.search-result-mock {
    background: #f8fafc;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
}

.shopping-results {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.shopping-item {
    display: flex;
    gap: 15px;
    background: var(--white);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    position: relative;
}

.shopping-item.yours {
    border: 2px solid var(--success);
    background: #f0fdf4;
}

.shopping-item.featured {
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.shopping-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: var(--success);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.shopping-image {
    font-size: 48px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: 8px;
}

.shopping-details {
    flex: 1;
}

.shopping-title {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.shopping-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.shopping-store {
    font-size: 14px;
    color: var(--gray);
}

.shopping-location {
    font-size: 12px;
    color: var(--success);
    margin-top: 5px;
}

.missing-notice {
    background: #fee2e2;
    color: var(--danger);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.success-notice {
    background: #dcfce7;
    color: var(--success);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

/* Shopping Benefits */
.shopping-benefits {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.shopping-benefits h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

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

.benefit-card {
    text-align: center;
}

.benefit-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.benefit-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--gray);
}

/* Google Business Profile Section */
.gbp-explainer {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.gbp-visual {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.gbp-side h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.gbp-mock {
    background: #f8fafc;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
}

.gbp-listing {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
}

.gbp-listing.incomplete {
    border: 2px solid var(--danger);
}

.gbp-listing.optimized {
    border: 2px solid var(--success);
    background: #f0fdf4;
}

.gbp-header {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}

.gbp-header h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.gbp-rating {
    font-size: 14px;
    color: var(--warning);
}

.gbp-issues p,
.gbp-features p {
    padding: 8px 0;
    font-size: 14px;
}

.gbp-issues p {
    color: var(--danger);
}

.gbp-features p {
    color: var(--success);
}

.gbp-strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.gbp-strategy-card {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.gbp-strategy-card:hover {
    transform: translateY(-5px);
}

.strategy-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.gbp-strategy-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.gbp-strategy-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.gbp-benefits {
    margin-top: 40px;
}

.gbp-benefits h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.gbp-impact {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
}

.gbp-impact h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

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

.impact-stat {
    text-align: center;
}

.impact-number {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
}

.impact-label {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.impact-stat p {
    font-size: 14px;
    opacity: 0.9;
}

.gbp-locations {
    margin-top: 40px;
}

.gbp-locations h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

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

.location-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
}

.location-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
}

.location-card p {
    margin-bottom: 15px;
}

.location-card ul {
    list-style: none;
}

.location-card li {
    padding: 8px 0 8px 20px;
    position: relative;
    font-size: 14px;
    color: var(--gray);
}

.location-card li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* Schema Section */
.schema-explainer {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.explainer-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.explainer-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 30px;
}

.schema-example {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.example-side h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.code-mock {
    background: #1e293b;
    color: #e2e8f0;
    padding: 20px;
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.8;
}

.code-mock.success {
    background: #064e3b;
    color: #d1fae5;
}

.code-comment {
    color: #94a3b8;
    font-style: italic;
    margin-top: 10px;
}

.schema-benefits-list h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.schema-benefits-list ul {
    list-style: none;
}

.schema-benefits-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    font-size: 16px;
}

.schema-benefits-list li:last-child {
    border-bottom: none;
}

.schema-types {
    margin-top: 40px;
}

.schema-types h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

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

.schema-card {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.schema-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.schema-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.schema-card p {
    font-size: 14px;
    color: var(--gray);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-marker {
    text-align: center;
}

.timeline-number {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 20px;
    border-radius: 15px;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.timeline-content {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark);
}

.task-group {
    margin-bottom: 30px;
}

.task-group:last-child {
    margin-bottom: 0;
}

.task-group h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
}

.task-group ul {
    list-style: none;
    margin-bottom: 15px;
}

.task-group li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: var(--gray);
}

.task-group li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.task-result {
    background: linear-gradient(135deg, #dbeafe, #e0e7ff);
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--primary-dark);
}

/* Competitor Grid */
.competitor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.competitor-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.competitor-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary);
}

.competitor-strengths,
.competitor-weaknesses {
    margin-bottom: 20px;
}

.competitor-strengths h4 {
    color: var(--success);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.competitor-weaknesses h4 {
    color: var(--danger);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.competitor-card ul {
    list-style: none;
    margin-bottom: 15px;
}

.competitor-card li {
    padding: 6px 0 6px 20px;
    position: relative;
    font-size: 14px;
    color: var(--gray);
}

.competitor-strengths li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.competitor-weaknesses li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--danger);
    font-weight: 700;
}

.our-advantage {
    background: var(--light-gray);
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
}

/* Keywords Section */
.keyword-categories {
    display: grid;
    gap: 40px;
}

.keyword-category {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.keyword-category h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.category-desc {
    color: var(--gray);
    margin-bottom: 20px;
}

.keyword-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.keyword-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 8px;
    flex-wrap: wrap;
}

.keyword {
    flex: 1;
    min-width: 200px;
    font-weight: 600;
    color: var(--dark);
}

.search-volume {
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
}

.difficulty {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
}

.difficulty.easy {
    background: #dcfce7;
    color: var(--success);
}

.difficulty.medium {
    background: #fef3c7;
    color: var(--warning);
}

.difficulty.hard {
    background: #fee2e2;
    color: var(--danger);
}

.keyword-summary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
}

.keyword-summary h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.summary-stat {
    text-align: center;
}

.summary-number {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
}

.summary-label {
    font-size: 16px;
    opacity: 0.9;
}

.summary-note {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    font-size: 16px;
    line-height: 1.8;
    backdrop-filter: blur(10px);
}

/* Results Timeline */
.results-timeline {
    display: grid;
    gap: 40px;
}

.result-period {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.period-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--light-gray);
}

.period-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.period-label {
    background: var(--light-gray);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
}

.period-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.metric {
    text-align: center;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
}

.metric-value {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 10px;
}

.metric-label {
    font-size: 14px;
    color: var(--gray);
}

/* ROI Calculator */
.roi-calculator {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: var(--white);
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
}

.roi-calculator h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.roi-breakdown {
    max-width: 600px;
    margin: 0 auto;
}

.roi-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.roi-item.highlight {
    background: rgba(37, 99, 235, 0.2);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid var(--primary);
    margin-top: 20px;
}

.roi-label {
    font-weight: 600;
}

.roi-value {
    font-weight: 700;
    color: var(--accent);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.pricing-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.pricing-card.featured {
    border: 3px solid var(--primary);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--success);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    margin-bottom: 10px;
}

.currency {
    font-size: 32px;
    font-weight: 700;
    color: var(--gray);
}

.price {
    font-size: 64px;
    font-weight: 900;
    color: var(--primary);
}

.period {
    font-size: 20px;
    color: var(--gray);
    margin-left: 5px;
}

.pricing-commitment {
    color: var(--gray);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
}

.pricing-includes h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.pricing-includes ul {
    list-style: none;
}

.pricing-includes li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
}

.pricing-guarantee {
    background: #dcfce7;
    padding: 20px;
    border-radius: 10px;
    margin-top: 25px;
    color: var(--dark);
}

.pricing-breakdown {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 15px;
}

.pricing-breakdown h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

.breakdown-items {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
}

.breakdown-total {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    margin-top: 15px;
    border-top: 3px solid var(--primary);
    font-weight: 700;
    font-size: 18px;
}

.breakdown-savings {
    background: var(--success);
    color: var(--white);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    margin-top: 15px;
}

/* Comparison Table */
.comparison-table {
    margin-top: 40px;
}

.comparison-table h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

table {
    width: 100%;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

thead {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
}

th, td {
    padding: 20px;
    text-align: left;
}

tbody tr {
    border-bottom: 1px solid var(--light-gray);
}

tbody tr:hover {
    background: var(--light-gray);
}

.highlight-row {
    background: #dbeafe !important;
    font-weight: 600;
}

/* Reasons Grid */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.reason-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
}

.reason-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.reason-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.reason-card p {
    color: var(--gray);
}

/* Case Study */
.case-study-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}

.case-study-before,
.case-study-after {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.case-study-before h3 {
    color: var(--danger);
    margin-bottom: 20px;
}

.case-study-after h3 {
    color: var(--success);
    margin-bottom: 20px;
}

.case-study-arrow {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
}

.case-study-content ul {
    list-style: none;
}

.case-study-content li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
}

.case-study-quote {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.case-study-quote blockquote {
    font-size: 20px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.case-study-quote cite {
    font-size: 16px;
    opacity: 0.9;
}

/* Next Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.step-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-card p {
    color: var(--gray);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 60px;
    border-radius: 15px;
    text-align: center;
}

.cta-section h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

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

.btn-primary {
    background: var(--white);
    color: var(--primary);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-note {
    font-size: 14px;
    opacity: 0.8;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
}

.faq-item p {
    color: var(--gray);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 40px 20px;
    text-align: center;
}

.footer-content p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-confidential {
    font-weight: 700;
    color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .findings-grid,
    .shopping-comparison,
    .keyword-categories,
    .pricing-grid,
    .reasons-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
    }
    
    .case-study-content {
        grid-template-columns: 1fr;
    }
    
    .case-study-arrow {
        transform: rotate(90deg);
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}
