/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Rubik, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background-color: #040d21;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Rubik, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

p {
    font-family: Rubik, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

a {
    font-family: Rubik, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

@font-face {
    font-family: 'Rubik';
    src: url('../fonts/Rubik-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Rubik';
    src: url('../fonts/Rubik-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Rubik';
    src: url('../fonts/Rubik-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Rubik';
    src: url('../fonts/Rubik-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Rubik';
    src: url('../fonts/Rubik-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

/* AI Section Styling */
.nav-link-ai {
    color: #10b981 !important;
    transition: color 0.2s;
}

.nav-link-ai:hover {
    color: #34d399 !important;
}

.nav-link-ai.active {
    color: #10b981 !important;
}

/* AI Section Accent Colors */
.ai-section .nav-section-toggle {
    color: #10b981;
}

.ai-section .nav-item.active {
    color: #10b981 !important;
    background-color: rgba(16, 185, 129, 0.1) !important;
    border-left: 3px solid #10b981 !important;
}

.ai-section .nav-item:hover {
    background-color: rgba(16, 185, 129, 0.05);
}

.ai-section .nav-item {
    color: #cbd5e1;
}

.ai-section .nav-item:hover {
    color: #10b981;
}

.ai-section .nav-block-next {
    background-color: transparent;
    color: #10b981;
}

.ai-section .nav-block-next:hover {
    background-color: transparent;
    color: #34d399;
}

.ai-section .important-note {
    border-left: 4px solid #10b981;
    background-color: rgba(16, 185, 129, 0.1);
}

.ai-section .important-note strong {
    color: #10b981;
}

.ai-section .ai-capabilities,
.ai-section .ai-services,
.ai-section .ai-tools {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.ai-section .ai-capability,
.ai-section .ai-service,
.ai-section .ai-tool {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.2s;
}

.ai-section .ai-capability:hover,
.ai-section .ai-service:hover,
.ai-section .ai-tool:hover {
    border-color: #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.ai-section .ai-capability h3,
.ai-section .ai-service h3,
.ai-section .ai-tool h3 {
    color: #10b981;
    margin-bottom: 1rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    background-color: #1e293b;
    border-bottom: 1px solid #334155;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 32px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #FF7E21;
}

.nav-link.active {
    color: #FF7E21;
    font-weight: 600;
}

.nav-separator {
    width: 1px;
    height: 20px;
    background-color: #475569;
}

.sign-up-btn {
    background-color: #FF7E21;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background-color 0.2s;
}

.sign-up-btn:hover {
    background-color: #ea580c;
}

/* Mobile Navigation Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #cbd5e1;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Sidebar Toggle Button */
.sidebar-toggle {
    display: none;
    background: none;
    border: none;
    color: #cbd5e1;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s;
}

.sidebar-toggle:hover {
    background-color: #334155;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background-color: #1e293b;
    border-left: 1px solid #334155;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-nav-overlay.active .mobile-nav-content {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #334155;
}

.mobile-nav-header h3 {
    color: #f8fafc;
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: #cbd5e1;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s;
}

.mobile-nav-close:hover {
    background-color: #334155;
}

.mobile-nav {
    flex: 1;
    padding: 1.5rem;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.75rem 0;
    display: block;
    transition: color 0.2s;
}

.mobile-nav-link:hover {
    color: #FF7E21;
}

.mobile-nav-link-ai {
    color: #10b981 !important;
}

.mobile-nav-link-ai:hover {
    color: #34d399 !important;
}

.mobile-nav-separator {
    height: 1px;
    background-color: #475569;
    margin: 1rem 0;
}

.mobile-sign-up-btn {
    background-color: #FF7E21;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    display: block;
    text-align: center;
    transition: background-color 0.2s;
}

.mobile-sign-up-btn:hover {
    background-color: #ea580c;
}

/* Sidebar Drawer Styles */
.sidebar-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-drawer.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-drawer-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 320px;
    height: 100%;
    background-color: #1e293b;
    border-right: 1px solid #334155;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.sidebar-drawer.active .sidebar-drawer-content {
    transform: translateX(0);
}

.sidebar-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #334155;
}

.sidebar-drawer-header h3 {
    color: #f8fafc;
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
}

.sidebar-drawer-close {
    background: none;
    border: none;
    color: #cbd5e1;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s;
}

.sidebar-drawer-close:hover {
    background-color: #334155;
}

.sidebar-drawer-nav {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

/* Main Layout */
.main {
    min-height: calc(100vh - 140px);
}

.content-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    padding: 2rem 0;
}

/* Sidebar */
.sidebar {
    background-color: #1e293b;
    border-radius: 0.5rem;
    height: calc(100vh - 120px); /* Account for header and padding */
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Fixed search area at the top */
.search-box {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    background-color: #1e293b;
    border-bottom: 1px solid #334155;
    flex-shrink: 0;
    position: relative;
    z-index: 1001;
}

/* Scrollable navigation area */
.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 0 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Custom scrollbar for sidebar */
.sidebar-nav::-webkit-scrollbar {
    width: 6px;
}

.sidebar-nav::-webkit-scrollbar-track {
    background: #334155;
    border-radius: 3px;
}

.sidebar-nav::-webkit-scrollbar-thumb {
    background: #475569;
    border-radius: 3px;
}

.sidebar-nav::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

.search-input {
    width: 100%;
    padding: 0.75rem;
    background-color: #334155;
    border: 1px solid #475569;
    border-radius: 0.375rem;
    color: #e2e8f0;
    font-size: 0.875rem;
}

.search-input::placeholder {
    color: #94a3b8;
}

.search-input:focus {
    outline: none;
    border-color: #FF7E21;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

/* Algolia Search Styles - Override Default Styles */
.search-box {
    position: relative;
}

/* Override Algolia's default search box styles */
.ais-SearchBox {
    width: 100%;
}

.ais-SearchBox-form {
    position: relative;
    width: 100%;
    background-color: transparent !important;
}

.ais-SearchBox-input {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 0.75rem;
    background-color: #334155 !important;
    border: 1px solid #475569 !important;
    border-radius: 0.375rem;
    color: white !important;
    font-size: 0.875rem;
    font-family: inherit;
}

.ais-SearchBox-input::placeholder {
    color: #94a3b8 !important;
}

.ais-SearchBox-input:focus {
    outline: none;
    border-color: #FF7E21;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

/* Hide Algolia's default buttons */
.ais-SearchBox-submit,
.ais-SearchBox-reset {
    display: none !important;
}

/* Add custom search icon */
.ais-SearchBox-form::after {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.875rem;
    pointer-events: none;
}

/* Search Results - Popover Style */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    margin-top: 0.25rem;
    max-height: 400px;
    overflow-y: auto;
    background-color: #1e293b;
    border: 1px solid #475569;
    border-radius: 0.375rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

/* Hide results by default */
#hits {
    display: none !important;
    position: relative;
}

/* Show results when there's a query */
#hits.has-query {
    display: block !important;
    min-height: 2px !important;
}

/* Style the search results container */
.ais-Hits {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    margin-top: 0.25rem;
    max-height: 400px;
    min-height: 200px;
    overflow-y: auto;
    background-color: #1e293b;
    border: 1px solid #475569;
    border-radius: 0.375rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    display: block !important;
}

/* Ensure the hits list is visible */
.ais-Hits-list {
    display: block !important;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Ensure individual hit items are visible */
.ais-Hits-item {
    display: block !important;
    background-color: #1e293b;
    border-bottom: 1px solid #334155;
}

.ais-Hits-item:last-child {
    border-bottom: none;
}

.ais-Hits-item:hover {
    background-color: #334155;
}

.search-results-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.search-result-item {
    border-bottom: 1px solid #334155;
    background-color: #1e293b;
}

.search-result-item:last-child {
    border-bottom: none;
}

/* Style Algolia's search result items */
.ais-Hits-item {
    background-color: #1e293b !important;
    border-bottom: 1px solid #334155 !important;
}

.ais-Hits-item:last-child {
    border-bottom: none;
}

.ais-Hits-item:hover {
    background-color: #1e293b !important;
}

.search-result-link {
    display: block;
    padding: 1rem;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s;
}

.search-result-link:hover {
    background-color: #334155;
}

.search-result-title {
    color: #FF7E21;
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.search-result-title mark {
    background-color: rgba(245, 158, 11, 0.2);
    color: #FF7E21;
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
}

.search-result-snippet {
    color: #cbd5e1;
    font-size: 0.75rem;
    line-height: 1.5;
    margin: 0 0 0.5rem 0;
}

.search-result-snippet mark {
    background-color: rgba(245, 158, 11, 0.2);
    color: #FF7E21;
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
}

.search-result-body {
    color: #94a3b8;
    font-size: 0.7rem;
    line-height: 1.4;
    margin: 0 0 0.5rem 0;
    font-style: italic;
}

.search-result-body mark {
    background-color: rgba(245, 158, 11, 0.2);
    color: #FF7E21;
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
}

.search-result-url {
    color: #64748b;
    font-size: 0.75rem;
    font-family: monospace;
}

.search-no-results {
    padding: 1rem;
    text-align: center;
    color: #94a3b8;
}

.search-no-results p {
    margin: 0.25rem 0;
    font-size: 0.875rem;
}

.search-no-results strong {
    color: #FF7E21;
}

/* Hide search results when no query */
.search-results:empty {
    display: none;
}

/* Mobile responsive search */
@media (max-width: 768px) {
    .search-results {
        max-height: 300px;
    }
    
    .search-result-link {
        padding: 0.75rem;
    }
    
    .search-result-title {
        font-size: 0.8rem;
    }
    
    .search-result-snippet {
        font-size: 0.7rem;
    }
}

/* Navigation */
.nav-section {
    border-bottom: 1px solid #334155;
    padding-bottom: 0.5rem;
}

.nav-section:last-child {
    border-bottom: none;
}

.nav-section-toggle {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: #FF7E21;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-section-toggle::after {
    content: '▼';
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.nav-section-toggle.open::after {
    transform: rotate(180deg);
}

.nav-section-items {
    list-style: none;
    margin-top: 0.5rem;
    padding-left: 1rem;
}

.nav-item {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.875rem;
    padding: 0.25rem 0;
    transition: color 0.2s;
}

.nav-item:hover {
    color: #FF7E21;
}

.nav-item.active {
    color: #FF7E21 !important;
    font-weight: 600 !important;
    background-color: rgba(245, 158, 11, 0.1) !important;
    border-radius: 0.375rem !important;
    padding: 0.25rem 0.5rem !important;
    margin: 0.125rem -0.5rem !important;
    border-left: 3px solid #FF7E21 !important;
}

/* Content */
.content {
    background-color: #1e293b;
    border-radius: 0.5rem;
    padding: 2rem;
    max-width: 100%;
    overflow-x: auto;
}

.content h1 {
    color: #f8fafc;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.content h2 {
    color: #f8fafc;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

.content h3 {
    color: #f8fafc;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
}

.prose {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.7;
}

.prose p {
    margin-bottom: 1rem;
}

.prose ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.prose li {
    margin-bottom: 0.5rem;
}

.prose a {
    color: #FF7E21;
    text-decoration: none;
}

.prose a:hover {
    text-decoration: underline;
}

.prose strong {
    color: #f8fafc;
    font-weight: 600;
}

/* Image Styling */
.prose img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    border: 2px solid #475569;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin: 1.5rem 0;
    display: block;
}

.prose img:hover {
    border-color: #FF7E21;
    transition: border-color 0.2s ease;
}

/* Code Block Styling */
.prose pre {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
    overflow-x: auto;
    position: relative;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
}

.prose pre code {
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #e2e8f0;
    background: none;
    padding: 0;
    border: none;
    border-radius: 0;
    white-space: pre;
    display: block;
}

.prose code {
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    font-size: 0.875rem;
    background-color: #334155;
    color: #FF7E21;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    border: 1px solid #475569;
}

/* Inline code styling */
.prose p code,
.prose li code {
    font-size: 0.8125rem;
    padding: 0.125rem 0.25rem;
}

/* Code block with syntax highlighting support */
.prose pre[class*="language-"] {
    background-color: #1e293b;
    border: 1px solid #334155;
}

.prose pre[class*="language-"] code {
    color: #e2e8f0;
}

/* Copy button for code blocks (optional enhancement) */
.prose pre {
    position: relative;
}

.prose pre::before {
    content: '';
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 0.75rem;
    height: 0.75rem;
    background-color: #475569;
    border-radius: 50%;
    opacity: 0.6;
}

/* List Styling */
.prose ul,
.prose ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.prose ul {
    list-style-type: disc;
}

.prose ol {
    list-style-type: decimal;
}

.prose li {
    margin-bottom: 0.5rem;
    color: #cbd5e1;
    line-height: 1.6;
}

.prose ul li::marker {
    color: #FF7E21;
}

.prose ol li::marker {
    color: #FF7E21;
    font-weight: 600;
}

/* Table Styling */
.prose table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background-color: #334155;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
    table-layout: auto;
}

.prose thead {
    background-color: #1e293b;
}

.prose th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #f8fafc;
    border-bottom: 1px solid #475569;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.prose td {
    padding: 1rem;
    border-bottom: 1px solid #475569;
    color: #cbd5e1;
    font-size: 0.875rem;
    line-height: 1.5;
    vertical-align: top;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.prose tbody tr:last-child td {
    border-bottom: none;
}

.prose tbody tr:hover {
    background-color: #475569;
    transition: background-color 0.2s ease;
}

.prose table code {
    background-color: #1e293b;
    color: #FF7E21;
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
    font-size: 0.8125rem;
    border: 1px solid #475569;
}

/* Responsive table */
@media (max-width: 768px) {
    .prose table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        border-radius: 0.375rem;
    }
    
    .prose th,
    .prose td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8125rem;
    }
}

/* Table width constraints to prevent excessive stretching */
.prose table {
    max-width: 100%;
    overflow-x: auto;
    table-layout: auto;
    width: 100%;
    box-sizing: border-box;
}

.prose table th,
.prose table td {
    max-width: 300px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    vertical-align: top;
}

/* Navigation Block */
.nav-block {
    background-color: #334155;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: 2rem 0;
}

.nav-block-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-block-links {
    display: flex;
    gap: 1rem;
}

.nav-block-link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.nav-block-link:hover {
    color: #FF7E21;
}

.nav-block-next {
    color: #FF7E21;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
}

.nav-block-next:hover {
    text-decoration: underline;
}

/* Community Section */
.community-section {
    background-color: #334155;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.community-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.community-section h3 {
    color: #f8fafc;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.community-section p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.community-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #FF7E21;
    color: #1e293b;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: background-color 0.2s;
}

.community-btn:hover {
    background-color: #d97706;
}

.external-icon {
    display: inline-flex;
    align-items: center;
    margin-left: 0.5rem;
}

.external-icon svg {
    width: 16px;
    height: 16px;
}

.community-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #1e293b;
    border-radius: 50%;
    margin: 0 auto 1rem auto;
}

.community-icon svg {
    width: 24px;
    height: 24px;
    color: #60a5fa;
}

.nav-block-next {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #60a5fa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-block-next:hover {
    color: #93c5fd;
}

.nav-block-next svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Footer */
.footer {
    background-image: url('https://cdn.getforge.com/docs.getforge.com/1754783355/images/home-footer-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 2rem 0;
    text-align: center;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #FF7E21;
}

.footer-copyright {
    color: #94a3b8;
    font-size: 0.875rem;
}

.beach-link {
    color: #FF7E21;
    text-decoration: none;
}

.beach-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .sidebar {
        position: static;
        order: 2;
        height: auto;
        max-height: 400px;
        overflow: hidden;
    }
    
    .search-box {
        padding: 1rem;
        border-bottom: 1px solid #334155;
    }
    
    .sidebar-nav {
        max-height: 300px;
        overflow-y: auto;
        padding: 0 1rem 1rem 1rem;
    }
    
    .content {
        order: 1;
    }
    
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .sidebar-toggle {
        display: block;
        margin-left: 0.5rem;
    }
    
    .nav {
        display: none;
    }
    
    .nav-list {
        gap: 1rem;
    }
    
    .nav-separator {
        display: none;
    }
    
    .sign-up-btn {
        display: none;
    }
    
    .content h1 {
        font-size: 1.875rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Deployment Options Page */
.deployment-options {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.deployment-option {
    background-color: #334155;
    border-radius: 0.5rem;
    padding: 1.5rem;
    border: 1px solid #475569;
}

.deployment-option h3 {
    color: #FF7E21;
    margin-bottom: 0.75rem;
}

.deployment-option p {
    margin-bottom: 1rem;
    color: #cbd5e1;
}

.deployment-option ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.deployment-option li {
    margin-bottom: 0.5rem;
    color: #cbd5e1;
}

.important-note {
    background-color: #1e293b;
    border-left: 4px solid #FF7E21;
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 0.375rem;
}

.important-note strong {
    color: #FF7E21;
}

.environment-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.environment-type {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.environment-type:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.environment-type h3 {
    color: #3b82f6;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.environment-type p {
    margin-bottom: 1rem;
    color: #cbd5e1;
}

.environment-type ul {
    list-style: none;
    padding: 0;
}

.environment-type li {
    padding: 0.25rem 0;
    color: #94a3b8;
    position: relative;
    padding-left: 1.25rem;
}

.environment-type li::before {
    content: "•";
    color: #3b82f6;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.deployment-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.deployment-method {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.deployment-method:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.deployment-method h3 {
    color: #3b82f6;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.deployment-method h4 {
    color: #e2e8f0;
    margin: 1rem 0 0.5rem 0;
    font-size: 1.1rem;
}

.deployment-method h5 {
    color: #cbd5e1;
    margin: 1rem 0 0.5rem 0;
    font-size: 1rem;
}

.deployment-method p {
    margin-bottom: 1rem;
    color: #cbd5e1;
}

.deployment-method ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.deployment-method li {
    padding: 0.25rem 0;
    color: #94a3b8;
    position: relative;
    padding-left: 1.25rem;
}

.deployment-method li::before {
    content: "•";
    color: #3b82f6;
    position: absolute;
    left: 0;
    font-weight: bold;
}

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

.pros, .cons {
    background-color: #0f172a;
    border-radius: 0.375rem;
    padding: 1rem;
}

.pros h5 {
    color: #10b981;
    margin-bottom: 0.5rem;
}

.cons h5 {
    color: #ef4444;
    margin-bottom: 0.5rem;
}

.pros ul, .cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros li, .cons li {
    padding: 0.25rem 0;
    color: #94a3b8;
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.9rem;
}

.pros li::before {
    content: "✓";
    color: #10b981;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.cons li::before {
    content: "✗";
    color: #ef4444;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.use-cases {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.use-case {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.use-case:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.use-case h3 {
    color: #3b82f6;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.use-case h4 {
    color: #e2e8f0;
    margin: 1rem 0 0.5rem 0;
    font-size: 1.1rem;
}

.use-case p {
    margin-bottom: 1rem;
    color: #cbd5e1;
}

.troubleshooting {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.issue {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.issue:hover {
    border-color: #ef4444;
    transform: translateY(-2px);
}

.issue h3 {
    color: #ef4444;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.issue h4 {
    color: #e2e8f0;
    margin: 1rem 0 0.5rem 0;
    font-size: 1.1rem;
}

.issue p {
    margin-bottom: 1rem;
    color: #cbd5e1;
}

.best-practices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.practice {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.practice:hover {
    border-color: #10b981;
    transform: translateY(-2px);
}

.practice h3 {
    color: #10b981;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.practice p {
    margin-bottom: 1rem;
    color: #cbd5e1;
}

.examples {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.example {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.example:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.example h3 {
    color: #3b82f6;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.example h4 {
    color: #e2e8f0;
    margin: 1rem 0 0.5rem 0;
    font-size: 1.1rem;
}

.example p {
    margin-bottom: 1rem;
    color: #cbd5e1;
}

@media (max-width: 768px) {
    .pros-cons {
        grid-template-columns: 1fr;
    }
    
    .deployment-methods,
    .use-cases,
    .troubleshooting,
    .best-practices,
    .examples {
        grid-template-columns: 1fr;
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.benefit {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.benefit:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.benefit h3 {
    color: #3b82f6;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.benefit p {
    margin-bottom: 1rem;
    color: #cbd5e1;
}

.benefit ul {
    list-style: none;
    padding: 0;
}

.benefit li {
    padding: 0.25rem 0;
    color: #94a3b8;
    position: relative;
    padding-left: 1.25rem;
}

.benefit li::before {
    content: "•";
    color: #3b82f6;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.comparison-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #1e293b;
    border-radius: 0.5rem;
    overflow: hidden;
}

.comparison-table th {
    background-color: #334155;
    color: #e2e8f0;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 1rem;
    border-top: 1px solid #334155;
    color: #cbd5e1;
}

.comparison-table tr:hover {
    background-color: #0f172a;
}

.workspace-structure {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.structure-level {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.structure-level:hover {
    border-color: #10b981;
    transform: translateY(-2px);
}

.structure-level h4 {
    color: #10b981;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.structure-level p {
    margin-bottom: 1rem;
    color: #cbd5e1;
}

.structure-level ul {
    list-style: none;
    padding: 0;
}

.structure-level li {
    padding: 0.25rem 0;
    color: #94a3b8;
    position: relative;
    padding-left: 1.25rem;
}

.structure-level li::before {
    content: "•";
    color: #10b981;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.roles-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.role {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.role:hover {
    border-color: #f59e0b;
    transform: translateY(-2px);
}

.role h3 {
    color: #f59e0b;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.role h4 {
    color: #e2e8f0;
    margin: 1rem 0 0.5rem 0;
    font-size: 1.1rem;
}

.role p {
    margin-bottom: 1rem;
    color: #cbd5e1;
}

.role ul {
    list-style: none;
    padding: 0;
}

.role li {
    padding: 0.25rem 0;
    color: #94a3b8;
    position: relative;
    padding-left: 1.25rem;
}

.role li::before {
    content: "•";
    color: #f59e0b;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.migration-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.step {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.step:hover {
    border-color: #8b5cf6;
    transform: translateY(-2px);
}

.step h4 {
    color: #8b5cf6;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.step p {
    margin-bottom: 1rem;
    color: #cbd5e1;
}

.step ul {
    list-style: none;
    padding: 0;
}

.step li {
    padding: 0.25rem 0;
    color: #94a3b8;
    position: relative;
    padding-left: 1.25rem;
}

.step li::before {
    content: "•";
    color: #8b5cf6;
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 768px) {
    .benefits-grid,
    .workspace-structure,
    .roles-section,
    .migration-steps {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
    }
}

.company-domains-workflow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.workflow-step {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.workflow-step:hover {
    border-color: #06b6d4;
    transform: translateY(-2px);
}

.workflow-step h4 {
    color: #06b6d4;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.workflow-step p {
    margin-bottom: 1rem;
    color: #cbd5e1;
}

.workflow-step ul {
    list-style: none;
    padding: 0;
}

.workflow-step li {
    padding: 0.25rem 0;
    color: #94a3b8;
    position: relative;
    padding-left: 1.25rem;
}

.workflow-step li::before {
    content: "•";
    color: #06b6d4;
    position: absolute;
    left: 0;
    font-weight: bold;
}

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

.feature {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.feature:hover {
    border-color: #10b981;
    transform: translateY(-2px);
}

.feature h4 {
    color: #10b981;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.feature ul {
    list-style: none;
    padding: 0;
}

.feature li {
    padding: 0.25rem 0;
    color: #94a3b8;
    position: relative;
    padding-left: 1.25rem;
}

.feature li::before {
    content: "•";
    color: #10b981;
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 768px) {
    .company-domains-workflow,
    .management-features {
        grid-template-columns: 1fr;
    }
}

.plan-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.plan {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.plan:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.plan h3 {
    color: #3b82f6;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.plan h4 {
    color: #e2e8f0;
    margin: 1rem 0 0.5rem 0;
    font-size: 1.1rem;
}

.plan p {
    margin-bottom: 1rem;
    color: #cbd5e1;
}

.plan ul {
    list-style: none;
    padding: 0;
}

.plan li {
    padding: 0.25rem 0;
    color: #94a3b8;
    position: relative;
    padding-left: 1.25rem;
}

.plan li::before {
    content: "•";
    color: #3b82f6;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.support-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.support-tier {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.support-tier:hover {
    border-color: #10b981;
    transform: translateY(-2px);
}

.support-tier h3 {
    color: #10b981;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.support-tier ul {
    list-style: none;
    padding: 0;
}

.support-tier li {
    padding: 0.25rem 0;
    color: #94a3b8;
    position: relative;
    padding-left: 1.25rem;
}

.support-tier li::before {
    content: "•";
    color: #10b981;
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 768px) {
    .plan-comparison,
    .support-tiers {
        grid-template-columns: 1fr;
    }
}

/* Webhook Form Configuration Styles */
.form-config-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.config-option {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.config-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.config-option h5 {
    color: #3b82f6;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.config-option p {
    color: #cbd5e1;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.config-option ul {
    list-style: none;
    padding: 0;
}

.config-option li {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    padding-left: 1.25rem;
    position: relative;
}

.config-option li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Variable Access Styles */
.variable-access {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.access-option {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.access-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.access-option h5 {
    color: #3b82f6;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
}

.access-option ul {
    list-style: none;
    padding: 0;
}

.access-option li {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    padding-left: 1.25rem;
    position: relative;
}

.access-option li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

/* Testing Methods Styles */
.testing-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.testing-method {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.testing-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.testing-method h4 {
    color: #3b82f6;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.testing-method p {
    color: #cbd5e1;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testing-method ul {
    list-style: none;
    padding: 0;
}

.testing-method li {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    padding-left: 1.25rem;
    position: relative;
}

.testing-method li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Testing Best Practices Styles */
.testing-best-practices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.practice {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.practice:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.practice h4 {
    color: #3b82f6;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
}

.practice ul {
    list-style: none;
    padding: 0;
}

.practice li {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    padding-left: 1.25rem;
    position: relative;
}

.practice li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

/* Template Grid Styles */
.template-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.template-card {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.template-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.template-card h4 {
    color: #3b82f6;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.template-card p {
    color: #cbd5e1;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.template-card pre {
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 6px;
    padding: 1rem;
    margin: 1rem 0;
    overflow-x: auto;
    font-size: 0.875rem;
}

.template-card pre code {
    color: #e2e8f0;
    background: none;
    padding: 0;
}

.template-card strong {
    color: #10b981;
}

/* Mobile Responsiveness for Webhook Sections */
@media (max-width: 768px) {
    .form-config-options,
    .variable-access,
    .testing-methods,
    .testing-best-practices,
    .template-grid {
        grid-template-columns: 1fr;
    }
    
    .config-option,
    .access-option,
    .testing-method,
    .practice,
    .template-card {
        padding: 1rem;
    }
} 

/* Additional Mobile Navigation Styles */
@media (max-width: 768px) {
    /* Ensure proper header layout on mobile */
    .header-content {
        position: relative;
    }
    
    /* Style the mobile buttons */
    .mobile-menu-toggle,
    .sidebar-toggle {
        background: none;
        border: none;
        color: #cbd5e1;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: 0.375rem;
        transition: background-color 0.2s;
    }
    
    .mobile-menu-toggle:hover,
    .sidebar-toggle:hover {
        background-color: #334155;
    }
    
    /* Ensure proper spacing */
    .mobile-menu-toggle {
        margin-right: 0.5rem;
    }
    
    /* Hide desktop navigation on mobile */
    .nav {
        display: none !important;
    }
    
    /* Ensure mobile overlay covers everything */
    .mobile-nav-overlay {
        z-index: 1000;
    }
    
    .sidebar-drawer {
        z-index: 999;
    }
    
    /* Prevent body scroll when overlays are open */
    body.overlay-open {
        overflow: hidden;
    }
}

/* Ensure proper z-index stacking */
.header {
    z-index: 100;
}

.mobile-nav-overlay {
    z-index: 1000;
}

.sidebar-drawer {
    z-index: 999;
}

/* Webhook Types Styles */
.webhook-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.webhook-type {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.2s ease;
}

.webhook-type:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.webhook-type h3 {
    color: #f1f5f9;
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
}

.webhook-type p {
    color: #cbd5e1;
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
}

.webhook-type ul {
    margin: 0 0 1.5rem 0;
}

.webhook-type li {
    color: #cbd5e1;
    margin: 0.5rem 0;
    line-height: 1.5;
}

.webhook-type-link {
    display: inline-flex;
    align-items: center;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.webhook-type-link:hover {
    color: #60a5fa;
}

/* Benefits Grid Styles */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.benefit:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.benefit h4 {
    color: #f1f5f9;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.benefit p {
    color: #cbd5e1;
    margin: 0;
    line-height: 1.5;
}

/* Getting Started Styles */
.getting-started {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.start-option {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.2s ease;
}

.start-option:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.start-option h4 {
    color: #f1f5f9;
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
}

.start-option p {
    color: #cbd5e1;
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    background: #3b82f6;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-1px);
    text-decoration: none;
    color: #ffffff;
}

/* Webhook URL Breakdown Styles */
.webhook-url-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.url-component {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.url-component:hover {
    border-color: #3b82f6;
}

.url-component h5 {
    color: #f1f5f9;
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}

.url-component p {
    color: #cbd5e1;
    margin: 0.5rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.url-component code {
    background: #0f172a;
    color: #3b82f6;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.85rem;
}

/* Slack Integration Styles */
.slack-integration {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.integration-step {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.integration-step:hover {
    border-color: #3b82f6;
}

.integration-step h5 {
    color: #f1f5f9;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.integration-step p {
    color: #cbd5e1;
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.integration-step ul {
    margin: 0;
}

.integration-step li {
    color: #cbd5e1;
    margin: 0.5rem 0;
    line-height: 1.4;
}

/* Security Notes Styles */
.security-notes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.security-note {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.security-note:hover {
    border-color: #3b82f6;
}

.security-note h4 {
    color: #f1f5f9;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.security-note p {
    color: #cbd5e1;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .webhook-types,
    .benefits-grid,
    .getting-started,
    .webhook-url-breakdown,
    .slack-integration,
    .security-notes {
        grid-template-columns: 1fr;
    }
}

/* Google Analytics App Styles */
.installation-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.step {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.step:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.step h4 {
    color: #f1f5f9;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.step p {
    color: #cbd5e1;
    margin: 0;
    line-height: 1.5;
}

/* Action Links Styling for AI Pages */
.action-links {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.primary-action {
    display: flex;
    justify-content: center;
}

.action-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #FF7E21;
    color: #ffffff;
    text-decoration: none;
    padding: 0.875rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.action-button:hover {
    background-color: #ea580c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 126, 33, 0.3);
    text-decoration: none;
    color: #ffffff;
}

.action-button svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.secondary-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.secondary-link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
    padding: 0.5rem 0;
}

.secondary-link:hover {
    color: #FF7E21;
    text-decoration: none;
}

/* AI Section Override for Action Links */
.ai-section .action-button {
    background-color: #10b981;
    color: #ffffff;
}

.ai-section .action-button:hover {
    background-color: #34d399;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    color: #ffffff;
}

.ai-section .secondary-link {
    color: #cbd5e1;
}

.ai-section .secondary-link:hover {
    color: #10b981;
}

/* AI Features Page Styles */
.ai-features {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.ai-feature {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.2s ease;
}

.ai-feature:hover {
    border-color: #10b981;
    transform: translateY(-2px);
}

.ai-feature h3 {
    color: #10b981;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.ai-feature h4 {
    color: #f1f5f9;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.ai-feature h5 {
    color: #10b981;
    margin: 1.5rem 0 0.75rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.feature-highlights,
.how-it-works,
.use-cases {
    margin-top: 1.5rem;
}

.forge-ai-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.preview-feature {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.preview-feature:hover {
    border-color: #10b981;
    transform: translateY(-2px);
}

.preview-feature h3 {
    color: #10b981;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.preview-highlights ul {
    margin-top: 1rem;
}

.forge-ai-benefits {
    margin: 3rem 0;
}

.forge-ai-benefits h3 {
    color: #f1f5f9;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

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

.benefits-grid .benefit {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s ease;
}

.benefits-grid .benefit:hover {
    border-color: #10b981;
    transform: translateY(-2px);
}

.benefits-grid .benefit h4 {
    color: #10b981;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.beta-signup {
    background-color: #0f172a;
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: center;
}

.beta-signup h2 {
    color: #10b981;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.beta-features {
    margin: 2rem 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.beta-features h3 {
    color: #f1f5f9;
    margin-bottom: 1rem;
    text-align: center;
}

.beta-features ul {
    list-style: none;
    padding: 0;
}

.beta-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.beta-features li::before {
    content: "✨";
    position: absolute;
    left: 0;
    color: #10b981;
}

/* Mobile responsiveness for AI Features */
@media (max-width: 768px) {
    .ai-features,
    .forge-ai-preview,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .beta-signup {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .beta-signup h2 {
        font-size: 1.5rem;
    }
}

/* AI Best Practices Page Styles */
.best-practices {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.practice {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.2s ease;
}

.practice:hover {
    border-color: #10b981;
    transform: translateY(-2px);
}

.practice h3 {
    color: #10b981;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.practice .example {
    background-color: #0f172a;
    border-left: 4px solid #10b981;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0 8px 8px 0;
}

.practice .example.bad {
    border-left-color: #ef4444;
}

.practice .example h4 {
    color: #f1f5f9;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.practice .example p {
    margin: 0;
    font-style: italic;
    color: #cbd5e1;
}

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

.strategy {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.strategy:hover {
    border-color: #10b981;
    transform: translateY(-2px);
}

.strategy h3 {
    color: #10b981;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.strategy h4 {
    color: #f1f5f9;
    margin: 1.5rem 0 0.75rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.forge-guidelines {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.guideline {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.guideline:hover {
    border-color: #10b981;
}

.guideline h3 {
    color: #10b981;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.tip {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.tip:hover {
    border-color: #10b981;
    transform: translateY(-2px);
}

.tip h3 {
    color: #10b981;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.community-contribution {
    background-color: #0f172a;
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 2.5rem;
    margin: 3rem 0;
}

.community-contribution h2 {
    color: #10b981;
    margin-bottom: 1rem;
    text-align: center;
}

.contribution-form {
    max-width: 800px;
    margin: 2rem auto 0;
}

.ai-tips-form {
    background-color: #1e293b;
    border-radius: 8px;
    padding: 2rem;
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #334155;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 1rem;
}

.form-section h3 {
    color: #f1f5f9;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: #334155;
    border: 1px solid #475569;
    border-radius: 0.375rem;
    color: #e2e8f0;
    font-size: 0.9rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    color: #cbd5e1;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s;
}

.checkbox-label:hover {
    background-color: rgba(16, 185, 129, 0.05);
}

.checkbox-label input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #475569;
    border-radius: 3px;
    margin-right: 0.75rem;
    position: relative;
    cursor: pointer;
    transition: all 0.2s;
}

.checkbox-label input[type="checkbox"]:checked {
    background-color: #10b981;
    border-color: #10b981;
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.form-actions {
    text-align: center;
    padding-top: 1.5rem;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #10b981;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.submit-btn:hover {
    background-color: #34d399;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.submit-btn svg {
    width: 16px;
    height: 16px;
}

.form-note {
    margin-top: 1rem;
    color: #94a3b8;
    font-size: 0.85rem;
    font-style: italic;
}

/* Mobile responsiveness for AI Best Practices */
@media (max-width: 768px) {
    .tool-strategies,
    .workflow-tips {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .community-contribution {
        padding: 1.5rem;
    }
    
    .ai-tips-form {
        padding: 1.5rem;
    }
}

/* AI Resources Page Styles */
.resource-grid {
    display: grid;
    gap: 3rem;
    margin: 2rem 0;
}

.resource-category {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.2s ease;
}

.resource-category:hover {
    border-color: #10b981;
    transform: translateY(-2px);
}

.resource-category h3 {
    color: #10b981;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.resources {
    display: grid;
    gap: 1.5rem;
}

.resource {
    background-color: #0f172a;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.resource:hover {
    border-color: #10b981;
    transform: translateY(-1px);
}

.resource h4 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.resource h4 a {
    color: #10b981;
    text-decoration: none;
    transition: color 0.2s;
}

.resource h4 a:hover {
    color: #34d399;
    text-decoration: underline;
}

.resource p {
    color: #cbd5e1;
    margin-bottom: 1rem;
    line-height: 1.5;
}

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

.tag {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.sdlc-phases {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.phase {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.2s ease;
}

.phase:hover {
    border-color: #10b981;
}

.phase h3 {
    color: #10b981;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

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

.tool {
    background-color: #0f172a;
    border: 1px solid #334155;
    border-radius: 6px;
    padding: 1rem;
    transition: all 0.2s ease;
}

.tool:hover {
    border-color: #10b981;
}

.tool h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.tool h4 a {
    color: #10b981;
    text-decoration: none;
}

.tool h4 a:hover {
    color: #34d399;
    text-decoration: underline;
}

.tool p {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

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

.learning-category {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.learning-category:hover {
    border-color: #10b981;
    transform: translateY(-2px);
}

.learning-category h3 {
    color: #10b981;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-align: center;
}

.learning-resources {
    display: grid;
    gap: 1rem;
}

.learning-resource {
    background-color: #0f172a;
    border: 1px solid #334155;
    border-radius: 6px;
    padding: 1rem;
    transition: all 0.2s ease;
}

.learning-resource:hover {
    border-color: #10b981;
}

.learning-resource h4 {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.learning-resource h4 a {
    color: #10b981;
    text-decoration: none;
}

.learning-resource h4 a:hover {
    color: #34d399;
    text-decoration: underline;
}

.learning-resource p {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

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

.research-category {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.research-category:hover {
    border-color: #10b981;
}

.research-category h3 {
    color: #10b981;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-align: center;
}

.resource-note {
    background-color: #0f172a;
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.resource-note h2 {
    color: #10b981;
    margin-bottom: 1rem;
}

.resource-note p {
    margin-bottom: 2rem;
}

.resource-note a {
    color: #10b981;
    text-decoration: none;
}

.resource-note a:hover {
    color: #34d399;
    text-decoration: underline;
}

/* Mobile responsiveness for AI Resources */
@media (max-width: 768px) {
    .resource-grid,
    .learning-grid,
    .research-resources {
        grid-template-columns: 1fr;
    }
    
    .phase-tools {
        grid-template-columns: 1fr;
    }
    
    .resource-note {
        padding: 1.5rem;
    }
    
    .resource-category,
    .phase {
        padding: 1.5rem;
    }
}

/* AI Tutorials Page Styles */
.coming-soon-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 2rem 0;
}

.coming-soon-hero h2 {
    color: #10b981;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.coming-soon-hero .lead {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto;
}

.what-to-expect {
    margin: 3rem 0;
}

.tutorial-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tutorial-category {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.tutorial-category:hover {
    border-color: #10b981;
    transform: translateY(-2px);
}

.tutorial-category h3 {
    color: #10b981;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.tutorial-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tutorial-category li {
    padding: 0.5rem 0;
    color: #cbd5e1;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.4;
}

.tutorial-category li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.tutorial-request {
    background-color: #0f172a;
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 2.5rem;
    margin: 3rem 0;
}

.tutorial-request h2 {
    color: #10b981;
    margin-bottom: 1.5rem;
    text-align: center;
}

.tutorial-request > p {
    text-align: center;
    margin-bottom: 2rem;
    color: #cbd5e1;
}

.request-form {
    max-width: 800px;
    margin: 0 auto;
}

.tutorial-suggestion-form {
    background-color: #1e293b;
    border-radius: 8px;
    padding: 2rem;
}

.tutorial-suggestion-form .form-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #334155;
}

.tutorial-suggestion-form .form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 1rem;
}

.tutorial-suggestion-form .form-section h3 {
    color: #f1f5f9;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.meanwhile-resources {
    margin: 3rem 0;
}

.resource-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.resource-link {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.resource-link:hover {
    border-color: #10b981;
    transform: translateY(-2px);
}

.resource-link h3 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.resource-link h3 a {
    color: #10b981;
    text-decoration: none;
    transition: color 0.2s;
}

.resource-link h3 a:hover {
    color: #34d399;
    text-decoration: underline;
}

.resource-link p {
    color: #94a3b8;
    margin: 0;
    line-height: 1.5;
}

/* Mobile responsiveness for AI Tutorials */
@media (max-width: 768px) {
    .tutorial-categories,
    .resource-links {
        grid-template-columns: 1fr;
    }
    
    .coming-soon-hero {
        padding: 2rem 1.5rem;
    }
    
    .coming-soon-hero h2 {
        font-size: 1.5rem;
    }
    
    .tutorial-request {
        padding: 1.5rem;
    }
    
    .tutorial-suggestion-form {
        padding: 1.5rem;
    }
}

/* Mobile responsive action links */
@media (max-width: 768px) {
    .action-links {
        margin: 1.5rem 0;
        gap: 1rem;
    }
    
    .action-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
        width: 100%;
        justify-content: center;
    }
    
    .secondary-actions {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .secondary-link {
        text-align: center;
        display: block;
    }
}

/* Google Analytics App Styles */
.ga-setup-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.setup-step {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.setup-step:hover {
    border-color: #3b82f6;
}

.setup-step h4 {
    color: #f1f5f9;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.setup-step ol {
    margin: 0;
    padding-left: 1.5rem;
}

.setup-step li {
    color: #cbd5e1;
    margin: 0.5rem 0;
    line-height: 1.4;
}

.config-section {
    margin: 2rem 0;
}

.config-field {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
    transition: all 0.2s ease;
}

.config-field:hover {
    border-color: #3b82f6;
}

.config-field h4 {
    color: #f1f5f9;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.config-field p {
    color: #cbd5e1;
    margin: 0;
    line-height: 1.5;
}

.how-it-works {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.workflow-step {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.workflow-step:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.workflow-step h4 {
    color: #f1f5f9;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.workflow-step p {
    color: #cbd5e1;
    margin: 0;
    line-height: 1.5;
}

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

.verification-step {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.verification-step:hover {
    border-color: #3b82f6;
}

.verification-step h4 {
    color: #f1f5f9;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.verification-step p {
    color: #cbd5e1;
    margin: 0;
    line-height: 1.5;
}

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

.issue {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.issue:hover {
    border-color: #3b82f6;
}

.issue h4 {
    color: #f1f5f9;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.issue p {
    color: #cbd5e1;
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.issue ul {
    margin: 0;
    padding-left: 1.5rem;
}

.issue li {
    color: #cbd5e1;
    margin: 0.5rem 0;
    line-height: 1.4;
}

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

.practice {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.practice:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.practice h4 {
    color: #f1f5f9;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.practice p {
    color: #cbd5e1;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .installation-steps,
    .ga-setup-steps,
    .how-it-works,
    .verification-steps,
    .troubleshooting,
    .best-practices {
        grid-template-columns: 1fr;
    }
} 

/* AI Tools Page - Best Practices CTA */
.best-practices-cta {
    background-color: #0f172a;
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: center;
}

.best-practices-cta .cta-content h3 {
    color: #10b981;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.best-practices-cta .cta-content p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Mobile responsiveness for AI Tools */
@media (max-width: 768px) {
    .best-practices-cta {
        padding: 1.5rem;
    }
    
    .best-practices-cta .cta-content h3 {
        font-size: 1.1rem;
    }
}

/* Mobile responsive action links */
@media (max-width: 768px) {
    .action-links {
        margin: 1.5rem 0;
        gap: 1rem;
    }
    
    .action-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
        width: 100%;
        justify-content: center;
    }
    
    .secondary-actions {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .secondary-link {
        text-align: center;
        display: block;
    }
}

/* Thank You Page Styles */
.thank-you-layout {
    max-width: 900px;
    margin: 0 auto;
}

.thank-you-content {
    padding: 2rem 0;
}

.thank-you-hero {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border: 2px solid #10b981;
    border-radius: 16px;
    margin-bottom: 3rem;
}

.success-icon {
    margin-bottom: 1.5rem;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.thank-you-hero h1 {
    color: #10b981;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.thank-you-hero .hero-message {
    color: #cbd5e1;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.what-happens-next {
    margin: 3rem 0;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.step:hover {
    border-color: #10b981;
    transform: translateY(-2px);
}

.step-number {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: #0f172a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #f1f5f9;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    color: #cbd5e1;
    margin: 0;
    line-height: 1.5;
}

.continue-exploring {
    margin: 4rem 0;
}

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

.explore-card {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.explore-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    transition: height 0.3s ease;
}

.explore-card:hover {
    transform: translateY(-4px);
    border-color: #10b981;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
}

.explore-card:hover::before {
    height: 8px;
}

.ai-card::before {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.guides-card::before {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.sdk-card::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.community-card::before {
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.explore-card h3 {
    color: #f1f5f9;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.explore-card p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.explore-link {
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.explore-link:hover {
    color: #34d399;
    text-decoration: underline;
}

.quick-actions {
    margin: 3rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border: 1px solid #334155;
    border-radius: 12px;
}

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

.quick-action {
    text-align: center;
}

.quick-action h3 {
    color: #f1f5f9;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.quick-action p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.action-button.primary {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: #0f172a;
}

.action-button.primary:hover {
    background: linear-gradient(135deg, #34d399, #6ee7b7);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.action-button.secondary {
    background-color: transparent;
    border: 2px solid #10b981;
    color: #10b981;
}

.action-button.secondary:hover {
    background-color: #10b981;
    color: #0f172a;
    transform: translateY(-2px);
}

.feedback-section {
    margin: 3rem 0;
}

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

.feedback-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.feedback-link:hover {
    border-color: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.1);
}

.feedback-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feedback-content h3 {
    color: #f1f5f9;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.feedback-content p {
    color: #94a3b8;
    margin: 0;
    font-size: 0.875rem;
}

.return-navigation {
    margin: 3rem 0 2rem 0;
    padding: 2rem;
    background-color: #0f172a;
    border: 1px solid #334155;
    border-radius: 12px;
    text-align: center;
}

.return-navigation h3 {
    color: #f1f5f9;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.nav-link:hover {
    border-color: #10b981;
    color: #10b981;
    transform: translateY(-1px);
}

.nav-link.home:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

.nav-link.ai:hover {
    border-color: #10b981;
    color: #10b981;
}

.nav-link.guides:hover {
    border-color: #f59e0b;
    color: #f59e0b;
}

/* Mobile responsiveness for Thank You page */
@media (max-width: 768px) {
    .thank-you-hero {
        padding: 2rem 1.5rem;
    }
    
    .thank-you-hero h1 {
        font-size: 2rem;
    }
    
    .thank-you-hero .hero-message {
        font-size: 1.1rem;
    }
    
    .step {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .explore-grid,
    .action-grid,
    .feedback-options {
        grid-template-columns: 1fr;
    }
    
    .quick-actions {
        padding: 1.5rem;
    }
    
    .nav-options {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-link {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}