/* Mike Slatton - AI Consultant Website */

:root {
    --primary: #27272a;
    --primary-dark: #18181b;
    --accent: #06b6d4;
    --accent-dark: #0891b2;
    --success: #22C55E;
    --text: #1f2937;
    --text-light: #6b7280;
    --bg: #ffffff;
    --bg-alt: #f9fafb;
    --bg-dark: #111827;
    --border: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --radius-lg: 12px;
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }

@media (min-width: 768px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 1.5rem; }
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary);
}

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

.highlight { color: var(--accent); }
.lead { font-size: 1.25rem; color: var(--text); margin-bottom: 1.5rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

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

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

.btn-lg { padding: 16px 32px; font-size: 1.125rem; }
.btn-block { display: block; width: 100%; }

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

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

.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--primary);
}

.nav-logo span { color: var(--accent); }

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

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

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

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text);
    border-radius: 3px;
}

@media (min-width: 992px) {
    .nav-menu { display: flex; }
    .nav-toggle { display: none; }
}

.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}

/* Hero */
.hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f0fe 100%);
}

.hero .container {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title { margin-bottom: 1.5rem; }

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 576px) {
    .hero-cta { flex-direction: row; }
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 320px;
    height: 320px;
    object-fit: cover;
    object-position: top;
    border-radius: 16px;
    border: 4px solid #3f3f46;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr auto;
    }
}

.profile-placeholder {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    font-weight: 800;
    color: white;
    box-shadow: var(--shadow-lg);
}

/* About */
.about {
    padding: 5rem 0;
}

.about-text {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.stat-item .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-item .stat-label {
    color: var(--text-light);
    font-size: 0.875rem;
}

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

.services-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.service-card.featured {
    border-color: var(--accent);
    position: relative;
}

.service-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    margin-top: 1rem;
}

.service-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.875rem;
}

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

/* Work */
.work {
    padding: 5rem 0;
}

.work-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .work-grid { grid-template-columns: repeat(3, 1fr); }
}

.work-card {
    background: var(--bg-alt);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.work-industry {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.work-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.work-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.work-results {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.work-results span {
    background: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    color: var(--text);
    border: 1px solid var(--border);
}

/* Approach */
.approach {
    padding: 5rem 0;
    background: var(--bg-alt);
}

.approach-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .approach-grid { grid-template-columns: repeat(4, 1fr); }
}

.approach-step {
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.approach-step h3 {
    color: var(--primary);
    margin-bottom: 0.75rem;
}

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

/* Testimonials */
.testimonials {
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

.testimonial-card {
    background: var(--bg-alt);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent);
}

.testimonial-text {
    font-style: italic;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--primary);
}

.author-title {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* CTA */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.cta h2 {
    text-align: center;
    color: white;
    margin-bottom: 1rem;
}

.cta > .container > p {
    text-align: center;
    color: rgba(255,255,255,0.8);
    margin-bottom: 3rem;
}

.cta-options {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .cta-options { grid-template-columns: 1fr 1fr; }
}

.cta-option {
    background: white;
    color: var(--text);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.cta-option h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.cta-option p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.calendly-placeholder {
    background: var(--bg-alt);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
}

.contact-form .form-group { margin-bottom: 1rem; }

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.8);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-brand p {
    margin-top: 1rem;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a,
.footer-social a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-social a:hover { color: var(--accent); }

.footer-social {
    display: flex;
    gap: 1rem;
}

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

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in-up { animation: fadeInUp 0.6s ease forwards; }

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 20px 60px;
    text-align: center;
}
.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.page-hero .lead {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* About Page */
.about-full {
    padding: 60px 0;
}
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}
@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
}
.about-main h2 {
    color: var(--primary);
    margin-top: 32px;
    margin-bottom: 16px;
}
.about-main h2:first-child {
    margin-top: 0;
}
.about-main p {
    margin-bottom: 16px;
    color: var(--text-light);
}
.about-main ul {
    margin: 16px 0 24px 20px;
}
.about-main li {
    margin-bottom: 8px;
    color: var(--text-light);
}
.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.sidebar-card {
    background: var(--bg-alt);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}
.sidebar-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}
.sidebar-card p {
    color: var(--text-light);
    margin: 0;
}
.sidebar-card a {
    color: var(--primary);
}
.sidebar-card.highlight {
    background: var(--primary);
    color: white;
    border: none;
}
.sidebar-card.highlight p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 16px;
}
.sidebar-card.highlight .btn {
    background: white;
    color: var(--primary);
}

/* Services Page */
.services-full {
    padding: 60px 0;
}
.service-category {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
}
.service-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.category-icon {
    font-size: 2rem;
}
.category-header h2 {
    margin: 0;
    color: var(--primary);
}
.category-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 700px;
}
.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.service-item {
    background: var(--bg-alt);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}
.service-item h3 {
    color: var(--text);
    margin-bottom: 8px;
}
.service-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* Contact Page */
.contact-section {
    padding: 60px 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
.contact-info h2 {
    color: var(--primary);
    margin-bottom: 16px;
}
.contact-info > p {
    color: var(--text-light);
    margin-bottom: 32px;
}
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.method-icon {
    font-size: 1.5rem;
}
.contact-method h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}
.contact-method p, .contact-method a {
    color: var(--text-light);
    text-decoration: none;
}
.contact-method a:hover {
    color: var(--primary);
}
.contact-form-wrapper {
    background: var(--bg-alt);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}
.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.9rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}
.btn-block {
    width: 100%;
}

/* Services Overview on Home */
.services-overview {
    padding: 80px 0;
    background: var(--bg-alt);
}
.services-overview .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.services-overview .service-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
}
.services-overview .service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.services-overview .service-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}
.services-overview .service-card h3 {
    color: var(--primary);
    margin-bottom: 12px;
}
.services-overview .service-card p {
    color: var(--text-light);
    margin: 0;
}

/* About Preview */
.about-preview {
    padding: 80px 0;
}
.about-preview .about-content {
    max-width: 800px;
}
.about-preview .lead {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 16px;
}
.about-preview p {
    color: var(--text-light);
    margin-bottom: 16px;
}
.about-preview .btn {
    margin-top: 16px;
}

/* Portfolio Page */
.portfolio-section {
    padding: 60px 0;
}
.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
    justify-content: center;
}
.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--border);
    background: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}
.portfolio-item {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.portfolio-item.coming-soon {
    opacity: 0.7;
}
.portfolio-image {
    height: 200px;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
}
.placeholder-image {
    font-size: 4rem;
}
.portfolio-content {
    padding: 24px;
}
.portfolio-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(30, 58, 138, 0.1);
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 12px;
}
.portfolio-content h3 {
    margin-bottom: 12px;
}
.portfolio-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
}
.portfolio-results {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.portfolio-results span {
    font-size: 0.85rem;
    color: var(--text-light);
    background: var(--bg-alt);
    padding: 4px 10px;
    border-radius: 4px;
}

/* Skills Page */
.skills-section {
    padding: 60px 0;
}
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.skill-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.skill-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.skill-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.skill-card h3 {
    color: var(--primary);
    margin-bottom: 12px;
}
.skill-card > p {
    color: var(--text-light);
    margin-bottom: 20px;
}
.skill-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.skill-list li {
    padding: 8px 0;
    border-top: 1px solid var(--border);
    color: var(--text);
    font-size: 0.9rem;
}
.skill-list li:first-child {
    border-top: none;
    padding-top: 0;
}

/* Blog Page */
.blog-section {
    padding: 60px 0;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}
.blog-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.blog-image {
    height: 160px;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-content {
    padding: 24px;
}
.blog-date {
    font-size: 0.85rem;
    color: var(--text-light);
}
.blog-content h2 {
    font-size: 1.25rem;
    margin: 8px 0 12px;
}
.blog-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
}
.blog-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    background: rgba(249, 115, 22, 0.1);
    padding: 4px 10px;
    border-radius: 50px;
}
.blog-cta {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
}
.blog-cta h3 {
    margin-bottom: 8px;
}
.blog-cta p {
    color: var(--text-light);
    margin-bottom: 20px;
}
.subscribe-form {
    display: flex;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
}
.subscribe-form input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
}
.subscribe-form input:focus {
    outline: none;
    border-color: var(--primary);
}
@media (max-width: 480px) {
    .subscribe-form {
        flex-direction: column;
    }
}

/* New Service Box Layout */
.services-section {
    padding: 60px 0;
}
.section-header {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 48px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.services-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
@media (max-width: 1024px) {
    .services-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .services-boxes {
        grid-template-columns: 1fr;
    }
}
.service-box {
    text-align: left;
}
.box-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--primary);
}
.service-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.3;
}
.service-box p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
.btn-learn-more {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s, transform 0.2s;
}
.btn-learn-more:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}
.section-divider {
    border: none;
    border-top: 1px solid var(--border);
    max-width: 900px;
    margin: 0 auto;
}

/* Updated Hero */
.hero {
    background: linear-gradient(135deg, #27272a 0%, #18181b 100%);
    color: white;
    padding: 120px 20px;
    text-align: center;
}
.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
}
.hero-subtitle {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 30px;
    color: white;
    line-height: 1.7;
}
.hero-subtitle strong {
    color: var(--accent);
    font-weight: 700;
}
.hero .btn-primary {
    padding: 14px 40px;
    font-size: 1rem;
}

/* Service Detail Pages */
.service-icon-large {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.service-detail {
    padding: 4rem 0;
}

.service-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.service-content h3 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.service-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.service-list li strong {
    color: var(--text);
}

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

.project-type {
    background: var(--bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent);
}

.project-type h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.project-type p {
    font-size: 0.95rem;
    margin: 0;
}

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

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

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

.tech-category {
    background: var(--bg-alt);
    padding: 1rem;
    border-radius: var(--radius);
}

.tech-category h4 {
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.tech-category p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--text-light);
}

.cta-section {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    text-align: center;
}

.cta-section h3 {
    color: white;
    margin-top: 0;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
}
