/* Desktop CSS for GFX Repair */
:root {
    /* Primary Palette - Subtle and Professional */
    --primary-black: #1C1C1E;
    --soft-black: #333333;
    --medium-grey: #666666;
    --light-grey: #999999;
    --border-grey: #e0e0e0;
    --background-white: #FDFDFB;
    --off-white: #fafafa;
    --eggshell: #f9f7f4;
    
    /* Accent Colors - Minimal but Purposeful */
    --cobalt-blue: #0047AB;
    --accent-green: #2d5016;
    --accent-red: #8b0000;
    --highlight-yellow: #fff9e6;
    
    /* Spacing System - Tighter */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 64px;
    --space-xxl: 96px;
}

/* Grid Pattern Background - Subtle Technical Reference */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

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

body {
    font-family: 'Inter', 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: var(--primary-black);
    background-color: var(--eggshell);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navigation Bar */
.navbar-custom {
    background-color: rgba(253, 253, 251, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-grey);
    padding: var(--space-md) 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-custom.navbar-compact {
    padding: var(--space-sm) 0;
    background-color: rgba(253, 253, 251, 0.95);
}

.navbar-compact .brand-logo {
    font-size: 20px;
}

.navbar-compact .btn-nav {
    padding: 8px 20px;
    font-size: 13px;
}

.navbar-compact .btn-primary-action,
.navbar-compact .btn-current-page {
    padding: 7px 20px;
}

.navbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--primary-black);
    text-decoration: none;
}

.nav-actions {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.btn-nav {
    padding: 10px 24px;
    border: none;
    background: transparent;
    color: var(--primary-black);
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-nav:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary-black);
}

.btn-nav-disabled {
    opacity: 0.4;
    color: var(--light-grey) !important;
    cursor: default;
    display: inline-block;
    vertical-align: middle;
}

.btn-nav-disabled:hover {
    background: transparent !important;
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Invisible bridge to prevent dropdown from closing when moving mouse */
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 8px; /* Matches margin-top of dropdown */
    background: transparent;
    display: none;
}

.nav-dropdown:hover::before {
    display: block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--background-white);
    min-width: 240px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-grey);
    border-radius: 2px;
    z-index: 1000;
    overflow: hidden;
}

.dropdown-content a {
    color: var(--primary-black);
    padding: 14px 20px;
    text-decoration: none;
    display: block;
    font-size: 13px;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--border-grey);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: var(--off-white);
    color: var(--cobalt-blue);
    padding-left: 24px;
}

.nav-dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary-action {
    background: var(--cobalt-blue);
    color: white;
    border: 2px solid var(--cobalt-blue);
    padding: 9px 24px; /* Adjusted for border */
}

.btn-primary-action:hover {
    background: #003380;
    border-color: #003380;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 71, 171, 0.3);
}

/* Current Page Indicator */
.btn-current-page {
    background: linear-gradient(135deg, rgba(0, 71, 171, 0.15), rgba(0, 86, 211, 0.1));
    border: 2px solid rgba(0, 71, 171, 0.3);
    color: var(--cobalt-blue);
    font-weight: 500;
    padding: 9px 24px; /* Adjusted for border */
}

.btn-current-page:hover {
    background: linear-gradient(135deg, rgba(0, 71, 171, 0.2), rgba(0, 86, 211, 0.15));
    border-color: rgba(0, 71, 171, 0.4);
    color: var(--cobalt-blue);
    transform: translateY(-1px);
}

/* Hero Island - Sharper edges */
.hero-island {
    margin-top: 100px;
    margin-bottom: var(--space-xl);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--soft-black) 100%);
    border-radius: 2px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-black);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    overflow: hidden;
}

.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: var(--space-xl);
    max-width: 900px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: var(--space-md);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: var(--space-lg);
    opacity: 0.9;
}

.hero-badge {
    display: inline-block;
    background: var(--cobalt-blue);
    color: white;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: var(--space-md);
    /* No animation - static badge */
}

/* Completely disable pulse animation */
@keyframes pulse {
    0%, 100% { transform: none !important; }
    50% { transform: none !important; }
}

/* Content Islands - Sharper, less rounded */
.content-island {
    background: var(--background-white);
    border-radius: 2px;
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
    border: 1px solid var(--border-grey);
    position: relative;
    /* Remove default transition to prevent loading animations */
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}

.content-island:hover {
    border-color: var(--primary-black);
    /* Removed hover transform effect */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06); /* Lighter shadow */
}

/* Removed blue dropdown line effect */

.island-title {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 1.4;
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-sm);
}

.island-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: var(--primary-black);
}

/* Process Timeline */
.timeline {
    position: relative;
    padding: var(--space-lg) 0;
}

.timeline-video-popup {
    position: absolute;
    top: 0;
    bottom: 0;
    width: calc(50% - 60px);
    background: transparent;
    border: none;
    border-radius: 2px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* For odd items (1,3) - video appears on right side */
.timeline-item:nth-child(odd) .timeline-video-popup {
    right: 0;
}

.timeline-item:nth-child(odd) .timeline-content:hover ~ .timeline-video-popup,
.timeline-item:nth-child(odd) .timeline-marker:hover ~ .timeline-video-popup,
.timeline-item:nth-child(odd) .timeline-video-popup:hover {
    opacity: 1;
    visibility: visible;
}

/* For even items (2,4) - video appears on left side */
.timeline-item:nth-child(even) .timeline-video-popup {
    left: 0;
}

.timeline-item:nth-child(even) .timeline-content:hover ~ .timeline-video-popup,
.timeline-item:nth-child(even) .timeline-marker:hover ~ .timeline-video-popup,
.timeline-item:nth-child(even) .timeline-video-popup:hover {
    opacity: 1;
    visibility: visible;
}

.timeline-video-popup video {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--border-grey);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-xl);
    position: relative;
    min-height: 200px;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    flex: 1;
    padding: var(--space-md);
    background: var(--background-white);
    border-radius: 2px;
    border: 1px solid var(--border-grey);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.timeline-marker {
    width: 40px;
    height: 40px;
    background: var(--cobalt-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: calc(50% + 40px);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: calc(50% + 40px);
}

/* Trust Section */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.trust-item {
    text-align: center;
    padding: var(--space-md);
}

.trust-metric {
    font-size: 48px;
    font-weight: 700;
    color: var(--cobalt-blue);
    margin-bottom: var(--space-xs);
}

.trust-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--medium-grey);
}

.partner-quote {
    background: #f5f2ed;
    padding: var(--space-md);
    border-left: 3px solid var(--primary-black);
    margin: var(--space-md) 0;
    font-style: italic;
    font-family: 'Inter', 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 14px;
}

.partner-name {
    font-weight: 600;
    margin-top: var(--space-sm);
    font-style: normal;
}

/* FAQ Section */
.faq-item {
    border-bottom: 1px solid var(--border-grey);
    padding: var(--space-md) 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    padding-left: var(--space-sm);
}

.faq-question {
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    margin-top: var(--space-sm);
    color: var(--medium-grey);
    display: none;
}

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

.faq-toggle {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* CTA Section - Sharper edges */
.cta-section {
    background: linear-gradient(135deg, var(--cobalt-blue) 0%, #003380 100%);
    color: white;
    text-align: center;
    padding: var(--space-xxl) var(--space-lg);
    border-radius: 2px;
    margin: var(--space-xl) 0;
    border: 1px solid var(--cobalt-blue);
}

.cta-title {
    font-size: 36px;
    margin-bottom: var(--space-md);
}

.cta-button {
    background: white;
    color: var(--cobalt-blue);
    padding: var(--space-sm) var(--space-lg);
    border: 1px solid white;
    border-radius: 2px;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.cta-button-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

/* Footer - Matching stylesheet design */
footer {
    background: var(--eggshell);
    color: var(--medium-grey);
    padding: var(--space-lg) 0;
    margin-top: var(--space-xxl);
    border-top: 1px solid var(--border-grey);
    font-size: 12px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-left {
    flex: 1;
}

.footer-tagline {
    font-size: 12px;
    color: var(--medium-grey);
    margin-top: var(--space-xs);
}

.usa-badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-top: var(--space-sm);
    font-size: 11px;
    color: var(--medium-grey);
}

.footer-links {
    display: flex;
    gap: var(--space-md);
}

.footer-links a {
    color: var(--medium-grey);
    text-decoration: none;
    font-size: 12px;
    transition: all 0.2s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-black);
    transition: width 0.2s ease;
}

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

.footer-links a:hover::after {
    width: 100%;
}

/* Restore blur-in scroll effects - but not on initial load */
.blur-in {
    filter: blur(5px);
    opacity: 0.7;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.blur-in.visible {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0);
}

/* Immediately visible elements (above fold) - no blur effect */
.hero-island,
.hero-content,
.navbar-custom {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}

/* Remove all animations completely */
@keyframes fadeInUp {
    from {
        opacity: 1 !important;
        transform: none !important;
    }
    to {
        opacity: 1 !important;
        transform: none !important;
    }
}

h1 {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
}

h2 {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
}

/* Guides Page Specific Styles */
.guides-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--space-lg);
    margin: var(--space-lg) 0;
}

.guides-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    align-self: start;
}

.sidebar-island {
    padding: var(--space-md) !important;
}

.sidebar-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: var(--space-md);
    border-bottom: 2px solid var(--border-grey);
    padding-bottom: var(--space-sm);
}

.question-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.question-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    text-decoration: none;
    color: var(--soft-black);
    border-radius: 8px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.question-item:hover,
.question-item.active {
    background: var(--off-white);
    border-color: var(--border-grey);
    transform: translateX(4px);
}

.question-item.active {
    background: linear-gradient(135deg, rgba(0, 71, 171, 0.1), rgba(0, 86, 211, 0.05));
    border-color: var(--cobalt-blue);
}

.question-item.active .question-title {
    color: var(--cobalt-blue);
    font-weight: 600;
}

.question-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.question-text {
    flex: 1;
}

.question-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-black);
    margin-bottom: 2px;
}

.question-subtitle {
    font-size: 12px;
    color: var(--medium-grey);
}

.guides-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

/* Guide Content Styling */
.guide-hero-image {
    margin: var(--space-md) 0;
    text-align: center;
}

.image-caption {
    font-size: 14px;
    color: var(--medium-grey);
    margin-top: var(--space-xs);
    font-style: italic;
}

.guide-content {
    font-size: 16px;
    line-height: 1.6;
    color: var(--soft-black);
}

.guide-content p {
    margin-bottom: var(--space-md);
}

.guide-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-black);
    margin: var(--space-md) 0 var(--space-sm) 0;
}

.guide-content ul, .guide-content ol {
    margin: var(--space-sm) 0 var(--space-md) var(--space-md);
}

.guide-content li {
    margin-bottom: var(--space-xs);
}

/* Warning Box */
.guide-warning {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    border-left: 4px solid var(--accent-red);
    padding: var(--space-md);
    margin: var(--space-md) 0;
    border-radius: 8px;
}

.guide-warning h4 {
    color: var(--accent-red);
    margin: 0 0 var(--space-sm) 0;
}

/* Steps Styling */
.guide-steps {
    background: var(--off-white);
    padding: var(--space-md);
    border-radius: 8px;
    margin: var(--space-md) 0;
}

.guide-steps ol {
    margin-left: var(--space-md);
}

.guide-steps li {
    margin-bottom: var(--space-sm);
    padding-left: var(--space-xs);
}

/* Thermal Management Styles */
.thermal-tips {
    margin: var(--space-md) 0;
}

.temp-ranges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    margin: var(--space-sm) 0;
}

.temp-range {
    padding: var(--space-md);
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.temp-range.good {
    background: #f0fff4;
    border: 1px solid #9ae6b4;
}

.temp-range.warning {
    background: #fffaf0;
    border: 1px solid #fbd38d;
}

.temp-range.danger {
    background: #fff5f5;
    border: 1px solid #fed7d7;
}

.temp-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--medium-grey);
}

.temp-value {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-black);
}

/* Warning Categories */
.warning-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    margin: var(--space-md) 0;
}

.warning-category {
    background: var(--off-white);
    padding: var(--space-md);
    border-radius: 8px;
    border: 1px solid var(--border-grey);
}

.warning-category h4 {
    margin: 0 0 var(--space-sm) 0;
    color: var(--primary-black);
}

.warning-category ul {
    margin: 0;
    padding-left: var(--space-md);
}

/* Action Callout */
.action-callout {
    background: linear-gradient(135deg, var(--cobalt-blue), #0056d3);
    color: white;
    padding: var(--space-md);
    border-radius: 8px;
    margin: var(--space-lg) 0;
}

.action-callout h4 {
    color: white;
    margin: 0 0 var(--space-sm) 0;
}

.action-callout p {
    margin: 0;
    opacity: 0.9;
}

/* Maintenance Schedule */
.maintenance-schedule {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin: var(--space-md) 0;
}

.maintenance-period {
    background: var(--off-white);
    padding: var(--space-md);
    border-radius: 8px;
    border-left: 4px solid var(--cobalt-blue);
}

.maintenance-period h4 {
    margin: 0 0 var(--space-sm) 0;
    color: var(--cobalt-blue);
}

.maintenance-period ul {
    margin: 0;
    padding-left: var(--space-md);
}

/* Troubleshooting Steps */
.troubleshooting-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin: var(--space-md) 0;
}

.troubleshooting-step {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cobalt-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    margin: 0 0 var(--space-sm) 0;
}

.step-content ul {
    margin: 0;
    padding-left: var(--space-md);
}

/* Professional Help Section */
.professional-help {
    background: var(--highlight-yellow);
    border: 1px solid #f6e05e;
    border-left: 4px solid #d69e2e;
    padding: var(--space-md);
    margin: var(--space-lg) 0 0 0;
    border-radius: 8px;
    text-align: center;
}

.professional-help h4 {
    margin: 0 0 var(--space-sm) 0;
    color: var(--primary-black);
}

.professional-help p {
    margin: 0 0 var(--space-md) 0;
}

/* Responsive Design for Guides */
@media (max-width: 1200px) {
    .guides-layout {
        grid-template-columns: 250px 1fr;
        gap: var(--space-md);
    }
}

@media (max-width: 992px) {
    .guides-layout {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .guides-sidebar {
        position: relative;
        top: auto;
        order: -1;
    }
    
    .temp-ranges {
        grid-template-columns: 1fr;
    }
    
    .warning-categories {
        grid-template-columns: 1fr;
    }
}

/* Guides Page Hero Island - Smaller */
.guides-layout ~ * .hero-island,
body:has(.guides-layout) .hero-island {
    margin-top: 80px;
    padding: var(--space-lg) var(--space-lg);
    min-height: auto;
}

body:has(.guides-layout) .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

body:has(.guides-layout) .hero-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

body:has(.guides-layout) .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 0;
}

body:has(.guides-layout) .hero-badge {
    margin-bottom: var(--space-sm);
}

/* Reduce padding on guide islands */
.guides-content .content-island {
    padding: var(--space-md) var(--space-lg);
}

.guides-content .island-title {
    margin-top: 0;
    margin-bottom: var(--space-md);
    padding-top: 0;
}

@media (max-width: 768px) {
    .troubleshooting-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        align-self: center;
    }
    
    body:has(.guides-layout) .hero-title {
        font-size: 2rem;
    }
}

.footer-links a:focus,
.footer-links a:focus-visible,
.footer-links a:active,
.footer-links a:target {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    text-decoration: none !important;
}
