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

:root {
    --primary-color: #004FBE;
    --primary-dark: #003D99;
    --primary-light: #0066FF;
    --secondary-color: #0059D9;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo i {
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Dropdown Navigation */
.nav-links .dropdown {
    position: relative;
}

.nav-links .dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: var(--shadow-lg);
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    min-width: 200px;
    display: none;
    z-index: 1000;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #004FBE 0%, #0066FF 100%);
    padding: 4rem 0 6rem;
    color: white;
    text-align: center;
}

.hero-content {
    max-width: 960px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 3rem;
}

/* Audit Tool Card */
.audit-tool-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    margin-top: 2rem;
}

.audit-form .input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.url-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.url-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.analyze-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.analyze-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.options-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

/* Loading State */
.loading-state {
    text-align: center;
    padding: 3rem;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-detail {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Results Section */
.results-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.results-header h2 {
    font-size: 2rem;
    font-weight: 700;
}

.secondary-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

/* Score Card */
.score-card {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: center;
}

.score-circle {
    position: relative;
    width: 200px;
    height: 200px;
}

.score-circle svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.score-bg {
    fill: none;
    stroke: var(--bg-light);
    stroke-width: 10;
}

.score-fill {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 565.48;
    stroke-dashoffset: 565.48;
    transition: stroke-dashoffset 1s ease;
}

.score-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.score-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.score-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.score-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.score-details > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.score-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.score-item {
    display: flex;
    flex-direction: column;
}

.score-item-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.score-item-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Results Tabs */
.results-tabs {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-bottom: 2rem;
}

.tabs-header {
    display: flex;
    border-bottom: 2px solid var(--border-color);
    overflow-x: auto;
}

.tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    color: var(--text-light);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: var(--bg-light);
}

.tabs-content {
    padding: 2rem;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.metric-card {
    background: var(--bg-light);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

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

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

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

.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.metric-title {
    font-weight: 600;
    color: var(--text-dark);
}

.metric-status {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.metric-status.pass {
    background: #d1fae5;
    color: #065f46;
}

.metric-status.warning {
    background: #fef3c7;
    color: #92400e;
}

.metric-status.fail {
    background: #fee2e2;
    color: #991b1b;
}

.metric-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.metric-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Recommendations List */
.recommendations-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.recommendation-card {
    background: var(--bg-light);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.recommendation-card.priority-high {
    border-left-color: var(--danger-color);
}

.recommendation-card.priority-medium {
    border-left-color: var(--warning-color);
}

.recommendation-card.priority-low {
    border-left-color: var(--success-color);
}

.recommendation-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 1rem;
}

.recommendation-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    flex: 1;
}

.priority-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.priority-badge.high {
    background: #fee2e2;
    color: #991b1b;
}

.priority-badge.medium {
    background: #fef3c7;
    color: #92400e;
}

.priority-badge.low {
    background: #d1fae5;
    color: #065f46;
}

.recommendation-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.recommendation-action {
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
}

.recommendation-action strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.recommendation-action p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Export Section */
.export-section {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.export-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.export-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.export-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.export-btn.schedule-btn:hover {
    background: #003399;
    border-color: #003399;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 79, 190, 0.3);
}

/* Consultation CTA */
.consultation-cta {
    background: linear-gradient(135deg, #004FBE 0%, #0066FF 100%);
    border-radius: 1rem;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 8px 24px rgba(0, 79, 190, 0.2);
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-icon i {
    font-size: 2.5rem;
    color: white;
}

.cta-text {
    flex: 1;
    min-width: 250px;
}

.cta-text h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.cta-button {
    background: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    background: #f8f9fa;
}

/* Final Results CTA */
.final-results-cta {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    margin-top: 2rem;
    border: 2px solid var(--primary-color);
}

.final-cta-content h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.final-cta-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.cta-buttons-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.primary-cta-btn,
.secondary-cta-btn {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.primary-cta-btn {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 79, 190, 0.3);
}

.primary-cta-btn:hover {
    background: #003399;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 79, 190, 0.4);
}

.secondary-cta-btn {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-cta-btn:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.cta-note {
    font-size: 0.95rem;
    color: var(--success-color);
    font-weight: 500;
    margin: 0;
}

.cta-note i {
    margin: 0 0.25rem;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #004FBE, #0066FF);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-card h3 i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

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

.service-card li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-card li:last-child {
    border-bottom: none;
}

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #004FBE 0%, #0066FF 100%);
    padding: 5rem 0;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1.25rem 3rem;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

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

.cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #004FBE, #0066FF);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.submit-btn {
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.keyword-list li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .score-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .score-circle {
        margin: 0 auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem;
        width: 100%;
    }
    
    .nav-links .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        background: #f8f9fa;
    }
    
    .nav-links .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .audit-form .input-group {
        flex-direction: column;
    }
    
    .options-group {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .tabs-header {
        flex-direction: column;
    }
    
    .tab-btn {
        justify-content: flex-start;
    }
    
    .features-grid,
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .export-buttons {
        flex-direction: column;
    }
    
    .export-btn {
        width: 100%;
        justify-content: center;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons-group {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .consultation-cta {
        padding: 2rem 1.5rem;
    }
    
    .cta-text h3 {
        font-size: 1.5rem;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .final-results-cta {
        padding: 2rem 1.5rem;
    }
    
    .final-cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons-row {
        flex-direction: column;
        width: 100%;
    }
    
    .primary-cta-btn,
    .secondary-cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
    
    .hero-subtitle {
        font-size: 0.95rem !important;
    }
    
    .hero-description {
        font-size: 0.9rem !important;
    }
    
    .audit-tool-card {
        padding: 1.25rem;
    }
    
    .score-card {
        padding: 1.5rem;
    }
    
    .tabs-content {
        padding: 1rem;
    }
    
    /* CTA Card Extra Small Screens */
    .hero-section .cta-card {
        padding: 1.25rem !important;
    }
    
    .hero-section .cta-card h2 {
        font-size: 1.25rem !important;
    }
    
    .hero-section .cta-card p {
        font-size: 0.9rem !important;
    }
    
    .hero-section .cta-card h3 {
        font-size: 1rem !important;
    }
    
    .hero-section .cta-card a {
        font-size: 0.85rem !important;
        padding: 0.75rem 1rem !important;
    }
}

/* Client Stories Section */
.client-stories-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-header .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 1rem;
}

.featured-case-study {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
}

.featured-case-study h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.featured-case-study h3 i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    margin-top: 1.5rem;
}

.trust-badge {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0066FF 100%);
    border-radius: 1rem;
    color: white;
    box-shadow: var(--shadow-lg);
}

.trust-badge h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: white;
}

.trust-badge h4 i {
    color: #10b981;
    margin-right: 0.5rem;
}

.trust-badge p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
}

.trust-badge p strong {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.1rem 0.4rem;
    border-radius: 0.25rem;
}

.trust-badge a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.trust-badge a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.case-study-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.case-location {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #0066FF);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.case-location i {
    margin-right: 0.25rem;
}

.case-study-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.business-type {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.case-description {
    margin-bottom: 2rem;
}

.case-description p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.result-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.result-list li {
    padding: 0.75rem 0;
    color: var(--text-light);
    display: flex;
    align-items: start;
    gap: 0.75rem;
    line-height: 1.6;
}

.result-list li i {
    color: var(--success-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.result-list li a {
    color: var(--primary-color);
    text-decoration: underline;
}

.results-achieved {
    background: var(--bg-light);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.results-achieved h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.results-achieved h4 i {
    color: #f59e0b;
    margin-right: 0.5rem;
}

.metrics-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.metric {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
}

.metric strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.metric span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.strategies-used {
    margin-bottom: 1.5rem;
}

.strategies-used h4 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.strategy-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.strategy-tags .tag {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 0.4rem 0.9rem;
    border-radius: 1.5rem;
    font-size: 0.85rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.strategy-tags .tag:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.strategy-tags .tag a {
    color: inherit;
    text-decoration: none;
}

.case-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.case-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.authority-statement {
    background: linear-gradient(135deg, var(--primary-color), #0066FF);
    border-radius: 1rem;
    padding: 3rem;
    color: white;
    margin-bottom: 3rem;
}

.authority-statement h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.authority-statement h3 i {
    color: #f59e0b;
    margin-right: 0.75rem;
}

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

.authority-point strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.authority-point strong i {
    margin-right: 0.5rem;
    color: #f59e0b;
}

.authority-point p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 0.95rem;
}

.authority-point p strong {
    display: inline;
    font-size: inherit;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.1rem 0.3rem;
    border-radius: 0.25rem;
}

.case-cta {
    text-align: center;
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.case-cta h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.case-cta p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.case-cta p strong {
    color: var(--text-dark);
}

/* Responsive for case studies */
@media (max-width: 768px) {
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-case-study {
        padding: 2rem 1.5rem;
    }
    
    .case-study-card {
        padding: 2rem 1.5rem;
    }
    
    .authority-statement {
        padding: 2rem 1.5rem;
    }
    
    .authority-statement h3 {
        font-size: 1.5rem;
    }
    
    .metrics-row {
        grid-template-columns: 1fr;
    }
    
    .trust-badge {
        padding: 1.5rem;
    }
    
    .trust-badge h4 {
        font-size: 1.1rem;
    }
    
    /* Responsive disclosure banner - stack columns on mobile */
    #results .container > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    
    /* Hero CTA Card Mobile Responsive */
    .hero-section .cta-card {
        padding: 1.5rem !important;
        margin: 1rem 0 !important;
    }
    
    .hero-section .cta-card h2 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
    
    .hero-section .cta-card p {
        font-size: 0.95rem !important;
    }
    
    .hero-section .cta-card h3 {
        font-size: 1.1rem !important;
    }
    
    /* CTA Card Grid - stack on mobile */
    .hero-section .cta-card div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    /* CTA Card Text Elements */
    .hero-section .cta-card div > p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
    
    /* CTA Buttons - stack on mobile */
    .hero-section .cta-card div[style*="display: flex"] {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    
    .hero-section .cta-card a {
        font-size: 0.95rem !important;
        padding: 0.85rem 1.25rem !important;
        width: 100%;
        justify-content: center !important;
    }
    
    .hero-section .cta-card a span {
        font-size: 0.95rem !important;
    }
}
