/* Expert Website Services - Complete Stylesheet */

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-card: #222222;
    --text-primary: #ffffff;
    --text-secondary: #d4d3d3;
    --text-muted: #a7a7a7;
    --accent: #d2bc76;
    --accent-hover: rgba(210, 198, 118, 0.7);
    --border: #333333;
    --success: #10b981;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 300;
}

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

/* Header */
header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 32px 0;
    background: transparent;
    border-bottom: none;
    z-index: 100;
}

.header-container {
    padding: 0 24px;
    margin: 0;
}

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

.logo {
    font-size: 32px;
    color: var(--text-primary);
    text-decoration: none;
}

.header-links {
    display: flex;
    gap: 32px;
    font-size: 24px;
    align-items: center;
}

.header-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease;
}

.header-links a:hover {
    color: var(--text-secondary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.hero-text {
    max-width: 700px;
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: clamp(26px, 4.5vw, 54px);
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.hero .subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.2) 70%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.4) 50%, rgba(10, 10, 10, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Tool Categories - Large Format Sections */
.options-section {
    padding: 10px 0;
}

.tool-showcase {
    margin-bottom: 10px;
    min-height: 75vh;
    display: flex;
    align-items: center;
}

.tool-showcase:nth-child(even) .showcase-content {
    grid-template-columns: 1fr 1fr;
}

.tool-showcase:nth-child(odd) .showcase-content {
    grid-template-columns: 1fr 1fr;
}

.showcase-content {
    display: grid;
    gap: 80px;
    align-items: center;
}

.showcase-text {
    max-width: 500px;
}

.showcase-visual {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-visual img {
    max-width: 80%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.tool-category-large h2 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.tool-category-large .subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.tool-list-large {
    list-style: none;
    margin: 32px 0;
}

.tool-list-large li {
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.tool-list-large li:last-child {
    border-bottom: none;
}

.tool-list-large li:before {
    content: "→";
    color: var(--accent);
    margin-right: 16px;
    font-weight: 500;
    font-size: 18px;
}

.case-study-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.case-study-title {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Business Tools Section - Large Format */
.business-tools {
    padding: 80px 0;
    margin: 10px 0 200px;
}

.business-tools-intro {
    text-align: center;
    margin-bottom: 30px;
}

.business-tools-intro h2 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.business-tools-intro p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.tools-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
    align-items: center;
    min-height: 60vh;
}

.tools-showcase-grid:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.tools-showcase-grid:nth-child(odd) {
    grid-template-columns: 1fr 1fr;
}

.tools-showcase-text {
    max-width: 500px;
}

.tools-showcase-text h3 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.tools-showcase-text p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.tool-grid-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    height: 400px;
}

.tool-card-mini {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tool-card-mini:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.1);
}

.tool-card-mini h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.tool-card-mini p {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 16px;
}

.tool-card-mini .icon {
    width: 32px;
    height: 32px;
    background: var(--accent);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 12px;
}

.tool-link-small {
    color: var(--accent);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
}

.tool-link-small:hover {
    color: var(--accent-hover);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 80px 0;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
}

.cta-section p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 18px;
}

.cta-button {
    background: var(--accent);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* Content Pages */
.page-header {
    padding: 60px 0 40px;
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    padding: 40px 0;
}

.content-section h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.content-section h3 {
    font-size: 22px;
    font-weight: 500;
    margin: 32px 0 16px;
    color: var(--text-primary);
}

.content-section p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.7;
}

.content-section ul {
    color: var(--text-secondary);
    margin: 16px 0;
    padding-left: 24px;
}

.content-section li {
    margin-bottom: 8px;
}

/* Tool Cards for Detail Pages */
.tool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.tool-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
}

.tool-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.tool-card .price {
    color: var(--success);
    font-weight: 500;
    margin-bottom: 16px;
}

.tool-card p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 15px;
}

.tool-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tool-link:hover {
    color: var(--accent-hover);
}

/* Footer */
footer {
    border-top: 1px solid var(--border);
    padding: 48px 0;
    text-align: center;
    margin-top: 80px;
}

.footer-content {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-content a {
    color: var(--text-secondary);
    text-decoration: none;
}

.footer-content a:hover {
    color: var(--text-primary);
}

/* Utility Classes */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.grid-4-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Typography Utilities */
.text-primary {
    color: var(--text-primary);
}

.text-secondary {
    color: var(--text-secondary);
}

.text-muted {
    color: var(--text-muted);
}

.text-accent {
    color: var(--accent);
}

/* Card Components */
.card-base {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.card-base:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
    box-shadow: 0 8px 25px rgba(210, 188, 118, 0.15);
}

.card-highlight {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    border-left: 4px solid var(--accent);
}

/* Mockup Containers */
.mockup-container {
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.mockup-header {
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-bottom: 1px solid var(--border);
}

.mockup-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Button Styles */
.btn-accent {
    background: var(--accent);
    color: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-accent:hover {
    background: var(--accent-hover);
}

/* Spacing Utilities */
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mt-auto { margin-top: auto; }

.p-12 { padding: 12px; }
.p-20 { padding: 20px; }
.p-24 { padding: 24px; }

.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }

/* Font Size Utilities */
.text-xs { font-size: 10px; }
.text-sm { font-size: 12px; }
.text-base { font-size: 13px; }
.text-md { font-size: 14px; }
.text-lg { font-size: 16px; }
.text-xl { font-size: 18px; }
.text-2xl { font-size: 20px; }

.font-medium { font-weight: 500; }

/* Accordion Styles */
.accordion-summary {
    padding: 20px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
}

.accordion-content {
    padding: 0 20px 20px;
}

.tool-item {
    padding: 12px;
    background: var(--bg-primary);
    border-radius: 6px;
    border: 1px solid var(--border);
    margin-bottom: 12px;
}

.tool-item:last-child {
    margin-bottom: 0;
}

/* AI Builder Grid Cards */
.ai-builder-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ai-builder-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
    box-shadow: 0 8px 25px rgba(210, 188, 118, 0.15);
}

.ai-builder-card h4 {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 20px;
}

.ai-builder-card p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.ai-builder-card a {
    color: var(--accent);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.ai-builder-card a:hover {
    color: var(--accent-hover);
}

.ai-builder-card .mt-auto {
    margin-top: auto;
}

.ai-builder-card .text-muted {
    color: var(--text-muted);
    font-size: 12px;
}

/* Article Pages - Enhanced Styling */
.article-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 80px 0;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 60px;
    align-items: start;
}

.article-header {
    padding-top: 120px;
    padding-bottom: 60px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    margin-bottom: 60px;
}

.article-header h1 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.article-header .subtitle {
    font-size: 22px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 16px;
    color: var(--text-muted);
    margin-top: 24px;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-content {
    font-size: 19px;
    line-height: 1.8;
    max-width: 800px;
}

.article-content h2 {
    font-size: 36px;
    font-weight: 300;
    margin: 64px 0 24px 0;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    position: relative;
}

.article-content h2::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 32px;
    background: var(--accent);
    border-radius: 2px;
}

.article-content h3 {
    font-size: 28px;
    font-weight: 400;
    margin: 48px 0 20px 0;
    color: var(--text-primary);
}

.article-content p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
}

.article-content ul, .article-content ol {
    color: var(--text-secondary);
    margin: 24px 0;
    padding-left: 24px;
}

.article-content li {
    margin-bottom: 16px;
    line-height: 1.7;
}

.article-content li strong {
    color: var(--text-primary);
}

.article-highlight {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: 12px;
    padding: 32px;
    margin: 40px 0;
}

.article-highlight h4 {
    color: var(--text-primary);
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 500;
}

.article-cta {
    margin-top: 80px;
    padding: 48px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
}

.article-cta h3 {
    margin-bottom: 16px;
    color: var(--text-primary);
    font-size: 28px;
    font-weight: 500;
}

.article-cta p {
    margin-bottom: 32px;
    color: var(--text-secondary);
    font-size: 20px;
}

.table-of-contents {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 24px;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.table-of-contents h4 {
    color: var(--text-primary);
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 500;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-of-contents li {
    margin-bottom: 8px;
}

.table-of-contents a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 17px;
    transition: color 0.2s ease;
}

.table-of-contents a:hover {
    color: var(--accent);
}

.article-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    border-top: 1px solid var(--border);
    margin-top: 60px;
}

.article-nav-item {
    display: flex;
    flex-direction: column;
    max-width: 200px;
}

.article-nav-item.next {
    align-items: flex-end;
    text-align: right;
}

.article-nav-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.article-nav-title {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.article-nav-title:hover {
    color: var(--accent-hover);
}

/* Cost Calculator Styles */
.calculator-container {
    margin: 40px 0;
}

.calculator-form {
    margin-bottom: 60px;
}

.calculator-section {
    margin-bottom: 48px;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.calculator-section h3 {
    margin: 0 0 24px 0;
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 500;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Radio Button Styling */
.radio-option {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-primary);
    border: 2px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.radio-option:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(210, 188, 118, 0.15);
}

.radio-option.active {
    border-color: var(--accent);
    background: rgba(210, 188, 118, 0.05);
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.radio-option.active .radio-custom {
    border-color: var(--accent);
}

.radio-option.active .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
}

.option-content {
    flex: 1;
}

.option-content strong {
    display: block;
    color: var(--text-primary);
    font-size: 18px;
    margin-bottom: 4px;
}

.option-content p {
    color: var(--text-secondary);
    font-size: 15px;
    margin: 0;
    line-height: 1.5;
}

/* Checkbox Styling */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-primary);
    border: 2px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-option:hover {
    border-color: var(--accent);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(210, 188, 118, 0.1);
}

.checkbox-option.active {
    border-color: var(--accent);
    background: rgba(210, 188, 118, 0.05);
}

.checkbox-option input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
}

.checkbox-option.active .checkbox-custom {
    border-color: var(--accent);
    background: var(--accent);
}

.checkbox-option.active .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-option span:not(.checkbox-custom) {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.4;
}

.checkbox-option.active span:not(.checkbox-custom) {
    color: var(--text-primary);
}

/* Results Display */
.calculator-results {
    position: sticky;
    top: 120px;
    margin-top: 40px;
}

.results-card {
    background: var(--bg-card);
    border: 2px solid var(--accent);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.results-card h3 {
    margin: 0 0 24px 0;
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 500;
}

.total-cost {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 16px;
}

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

.amount {
    font-size: 48px;
    color: var(--text-primary);
    font-weight: 600;
    margin-left: 4px;
}

.cost-range {
    margin-bottom: 32px;
}

.cost-range p {
    color: var(--text-secondary);
    font-size: 16px;
    margin: 0;
}

.cost-breakdown {
    margin-bottom: 32px;
    text-align: left;
}

.cost-breakdown h4 {
    color: var(--text-primary);
    font-size: 18px;
    margin-bottom: 16px;
    text-align: center;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

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

.breakdown-item .category {
    color: var(--text-secondary);
    font-size: 15px;
}

.breakdown-item .cost {
    color: var(--text-primary);
    font-weight: 500;
}

.maintenance-note {
    margin-bottom: 32px;
    padding: 16px;
    background: rgba(210, 188, 118, 0.1);
    border-radius: 8px;
    text-align: left;
}

.maintenance-note h4 {
    color: var(--text-primary);
    font-size: 16px;
    margin-bottom: 8px;
    text-align: center;
}

.maintenance-note p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
    text-align: center;
}

.results-cta {
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.results-cta p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 16px 0 0 0;
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        font-size: 24px;
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 60px 0; /* Add more top padding to avoid header overlap */
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        margin-top: 100px;
        text-align: center;
        min-height: auto;
    }
    
    .hero-text {
        padding-right: 0;
        max-width: 100%;
    }
    
    .hero-visual {
        position: relative;
        width: 100%;
        height: 50vh;
        min-height: 300px;
        margin-top: -200px;
    }
    
    /* Change gradient direction on mobile */
    .hero-bg-gradient {
        background: linear-gradient(to bottom, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.6) 40%, rgba(10, 10, 10, 0.2) 70%, rgba(10, 10, 10, 0) 100%);
    }
    
    .hero-image::before {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    }
    
    .showcase-content {
        grid-template-columns: 1fr !important;
        gap: 40px;
        text-align: center;
    }
    
    .tool-showcase {
        min-height: auto;
        margin-bottom: 80px;
    }
    
    .showcase-visual {
        height: 300px;
    }

    .tools-showcase-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
        text-align: center;
        min-height: auto;
        margin-bottom: 60px;
    }

    .tool-grid-visual {
        height: auto;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .business-tools-intro {
        margin-bottom: 60px;
    }

    /* Compact tools accordion mobile */
    .business-tools .container > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    .header-links {
        display: none;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .tool-grid {
        grid-template-columns: 1fr;
    }
    
    /* AI Builder Grid - Stack on mobile */
    .ai-builder-grid,
    .template-builder-grid,
    .custom-dev-grid,
    .grid-4-col {
        grid-template-columns: 1fr !important;
    }
    
    .grid-2-col {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    /* Article page mobile styles */
    .article-header {
        padding-top: 100px;
        padding-bottom: 40px;
    }
    
    .article-header h1 {
        font-size: 28px;
    }
    
    .article-header .subtitle {
        font-size: 18px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .article-content {
        font-size: 18px;
    }
    
    .article-content h2 {
        font-size: 28px;
        margin: 48px 0 20px 0;
    }
    
    .article-content h2::before {
        left: -16px;
        width: 3px;
        height: 24px;
    }
    
    .article-content h3 {
        font-size: 24px;
        margin: 32px 0 16px 0;
    }
    
    .article-container {
        padding: 0 0 60px 0;
        display: block;
    }
    
    .article-cta {
        padding: 32px 24px;
        margin-top: 60px;
    }
    
    .table-of-contents {
        position: static;
        margin: 32px 0;
    }
    
    .article-content {
        max-width: none;
    }
    
    .article-nav {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
    }
    
    .article-nav-item {
        max-width: none;
        text-align: center;
    }
    
    .article-nav-item.next {
        align-items: center;
        text-align: center;
    }
    
    /* Calculator mobile styles */
    .calculator-section {
        padding: 24px 16px;
        margin-bottom: 32px;
    }
    
    .calculator-section h3 {
        font-size: 20px;
    }
    
    .radio-option {
        padding: 16px;
    }
    
    .option-content strong {
        font-size: 16px;
    }
    
    .option-content p {
        font-size: 14px;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .checkbox-option {
        padding: 12px;
    }
    
    .checkbox-option span:not(.checkbox-custom) {
        font-size: 15px;
    }
    
    .calculator-results {
        position: static;
        margin-top: 32px;
    }
    
    .results-card {
        padding: 24px 16px;
    }
    
    .currency {
        font-size: 24px;
    }
    
    .amount {
        font-size: 36px;
    }
    
    .total-cost {
        margin-bottom: 12px;
    }
    
    .cost-range {
        margin-bottom: 24px;
    }
}