/* Benbo.se - Django + HTMX Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

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

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --neutral-gradient: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    --success-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
    --shadow-soft: 0 8px 32px rgba(31, 38, 135, 0.37);
    --shadow-medium: 0 15px 35px rgba(31, 38, 135, 0.3);
    --shadow-strong: 0 25px 50px rgba(31, 38, 135, 0.4);
    --text-primary: #2d3748;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --surface: #ffffff;
    --background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--background);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 20px 0;
    box-shadow: var(--shadow-soft);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background-image: url('/static/images/logo.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 25px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: white;
    transform: translateY(-2px);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    opacity: 1;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

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

/* Main Content */
.main-content {
    margin-top: 90px;
}

/* Hero Section */
.hero {
    background: var(--background);
    padding: 120px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 119, 198, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 500;
    margin-bottom: 40px;
    color: var(--text-secondary);
    line-height: 1.3;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.hero-description {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 60px;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 400;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.hero-image {
    width: 100%;
    max-width: 900px;
    height: 200px;
    background-image: url('/static/images/hero.png');
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    margin: 0 auto 60px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Section Divider */
.section-divider {
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--primary-gradient) 20%,
        var(--accent-gradient) 50%,
        var(--primary-gradient) 80%,
        transparent 100%
    );
    position: relative;
    margin: 40px 0;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 6px;
    background: var(--primary-gradient);
    border-radius: 3px;
    box-shadow: var(--shadow-soft);
}

.section-divider.tech {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(102, 126, 234, 0.3) 30%,
        rgba(102, 126, 234, 0.8) 50%,
        rgba(102, 126, 234, 0.3) 70%,
        transparent 100%
    );
}

.section-divider.tech::before {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

/* Pricing Section - 3 Cards */
.pricing-section {
    padding: 100px 40px;
    background: var(--surface);
}

.pricing-container {
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-title {
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.pricing-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.pricing-card.popular {
    border: 3px solid #667eea;
    transform: scale(1.05);
    box-shadow: var(--shadow-strong);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.pricing-card:not(.popular) .pricing-badge {
    visibility: hidden;
}

.pricing-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.pricing-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.pricing-price span {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-vat {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pricing-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-secondary);
    font-size: 14px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #38ef7d;
    font-weight: bold;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-btn.primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-soft);
}

.pricing-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.pricing-btn.secondary {
    background: #f7fafc;
    color: var(--text-primary);
    border: 2px solid #e2e8f0;
}

.pricing-btn.secondary:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
}

/* Mobile pricing */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card.popular {
        transform: none;
        order: -1;
    }

    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }

    .pricing-section {
        padding: 60px 20px;
    }
}

/* Services Section */
.services {
    padding: 120px 40px;
    background: var(--surface);
    position: relative;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 80px;
    color: var(--text-primary);
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    background: rgba(255, 255, 255, 0.95);
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-icon {
    flex: 0 0 220px;
    border-radius: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    filter: drop-shadow(var(--shadow-soft));
}

.service-card:hover .service-icon {
    transform: scale(1.05);
}

.service-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.service-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
    line-height: 1.3;
}

.service-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 400;
}

.service-price {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 16px;
    padding: 12px 20px;
    background: var(--neutral-gradient);
    border-radius: 25px;
    display: inline-block;
    margin-top: 8px;
    box-shadow: var(--shadow-soft);
}

/* Page Layout */
.page {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.page-title {
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--text-primary);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

/* Services List Page */
.services-list {
    text-align: center;
    margin-bottom: 80px;
}

.services-list h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 60px;
    color: var(--text-primary);
}

.service-item {
    margin-bottom: 32px;
    font-size: 18px;
    color: var(--text-secondary);
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    background: rgba(255, 255, 255, 0.95);
}

.service-item strong {
    font-weight: 700;
    color: var(--text-primary);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Section */
.about-section {
    text-align: center;
    margin-bottom: 80px;
}

.about-vision {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 80px;
    font-style: italic;
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 50px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.member-photo {
    width: 300px;
    height: 239px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    flex-shrink: 0;
    box-shadow: var(--shadow-medium);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover .member-photo {
    transform: scale(1.05);
}

.member-info h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.member-info p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-section h2 {
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.contact-section .subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 18px;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--glass-border);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-input.error,
.form-textarea.error {
    border-color: #f5576c;
}

.error-message {
    color: #f5576c;
    font-size: 14px;
    margin-top: 4px;
}

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

.submit-btn {
    width: 100%;
    background: var(--primary-gradient);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--secondary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.submit-btn:hover::before {
    opacity: 1;
}

.submit-btn span {
    position: relative;
    z-index: 1;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* HTMX Loading indicator */
.htmx-request .submit-btn span::after {
    content: ' ...';
}

/* Contact Success */
.contact-success {
    text-align: center;
    padding: 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 40px;
    color: white;
    animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-success h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.contact-success p {
    color: var(--text-secondary);
    font-size: 16px;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Footer */
.footer {
    background: var(--surface);
    padding: 80px 40px 40px;
    border-top: 1px solid var(--glass-border);
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 1;
}

.footer-section h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-primary);
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 0;
    display: block;
    position: relative;
}

.footer-section ul li a:hover {
    color: var(--text-primary);
    transform: translateX(8px);
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

/* CTA Button */
.cta-button {
    background: var(--primary-gradient);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--secondary-gradient);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
    color: white;
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button span {
    position: relative;
    z-index: 1;
}

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

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.7;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow-medium);
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 16px 20px;
        border-radius: 12px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 80px 20px;
    }

    .hero-image {
        height: 120px;
        border-radius: 16px;
    }

    .main-offer-section {
        padding: 60px 20px;
    }

    .main-offer-card {
        padding: 30px;
    }

    .services {
        padding: 80px 20px;
    }

    .service-card {
        flex-direction: column !important;
        text-align: center;
        padding: 30px;
        gap: 30px;
    }

    .service-card:nth-child(even) {
        flex-direction: column !important;
    }

    .service-icon {
        flex: none;
        width: 200px;
        margin: 0 auto;
    }

    .team-member {
        flex-direction: column;
        text-align: center;
        padding: 30px;
        gap: 30px;
    }

    .member-photo {
        width: 250px;
        height: 199px;
    }

    .footer {
        padding: 60px 20px 30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .page {
        padding: 60px 20px;
    }

    .contact-section {
        padding: 60px 20px;
    }

    .contact-form {
        padding: 24px;
    }

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

/* ================================
   BENBO 2.0 - New Components
   ================================ */

/* Hero 2.0 */
.hero-2 {
    background: var(--background);
    padding: 100px 40px 80px;
    position: relative;
    overflow: hidden;
}

.hero-2 .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

/* Hero centrerad (utan showcase panel) */
.hero-2 .hero-container.hero-centered {
    display: block;
    text-align: center;
}

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

.hero-badge-img {
    max-width: 100%;
    width: 1024px;
    height: auto;
    margin-bottom: 32px;
    border-radius: 16px;
    animation: fadeInUp 0.6s ease;
}

.hero-flows-centered {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-metrics-centered {
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.hero-2 h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-2 .hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 600px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

/* Segmenterade flow-kort i hero */
.hero-flows {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.flow-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.flow-card:hover {
    border-color: #667eea;
    background: white;
    transform: translateX(8px);
    box-shadow: var(--shadow-soft);
}

.flow-icon {
    font-size: 24px;
    flex-shrink: 0;
    color: #667eea;
    display: flex;
    align-items: center;
}

.flow-icon svg {
    width: 24px;
    height: 24px;
}

.flow-title {
    font-weight: 600;
    font-size: 15px;
    flex: 1;
}

.flow-hint {
    font-size: 13px;
    color: var(--text-muted);
    background: #f7fafc;
    padding: 4px 10px;
    border-radius: 6px;
}

/* Hero metrics */
.hero-metrics {
    display: flex;
    gap: 32px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero showcase panel */
.hero-showcase {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--glass-border);
    animation: fadeInUp 0.6s ease 0.3s both;
}

.showcase-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 16px;
}

.showcase-tab {
    padding: 8px 16px;
    border: none;
    background: #f7fafc;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.showcase-tab:hover,
.showcase-tab.active {
    background: var(--primary-gradient);
    color: white;
}

.showcase-content {
    min-height: 200px;
}

.showcase-item {
    animation: fadeIn 0.3s ease;
}

.showcase-badge {
    display: inline-block;
    background: var(--accent-gradient);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.showcase-item h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

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

.showcase-tech {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.showcase-link {
    display: inline-flex;
    align-items: center;
    color: #667eea;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.showcase-link:hover {
    color: #764ba2;
}

/* Section titles 2.0 */
.section-title-2 {
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section 2.0 */
.services-section {
    padding: 100px 40px;
    background: var(--surface);
}

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

.service-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-category-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-category-card:hover {
    border-color: #667eea;
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.category-icon {
    font-size: 36px;
    margin-bottom: 16px;
    color: #667eea;
}

.category-icon svg {
    width: 36px;
    height: 36px;
}

.service-category-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.service-category-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.category-price {
    font-size: 13px;
    color: #667eea;
    font-weight: 600;
    background: rgba(102, 126, 234, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.category-features {
    list-style: none;
    margin-bottom: 20px;
    flex: 1;
}

.category-features li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    font-size: 13px;
    color: var(--text-secondary);
}

.category-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #38ef7d;
    font-weight: bold;
}

.category-cta {
    display: block;
    text-align: center;
    padding: 12px 20px;
    background: #f7fafc;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.category-cta:hover {
    background: var(--primary-gradient);
    color: white;
}

/* Portfolio Section 2.0 */
.portfolio-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

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

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 28px;
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    border-color: #667eea;
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.portfolio-badge {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.portfolio-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.portfolio-tagline {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.portfolio-proof {
    font-size: 12px;
    color: #667eea;
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.5;
}

.portfolio-tech {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
    padding: 8px 0;
    border-top: 1px solid #e2e8f0;
}

.portfolio-actions {
    display: flex;
    gap: 12px;
}

.portfolio-link {
    flex: 1;
    text-align: center;
    padding: 10px 16px;
    background: var(--primary-gradient);
    color: white;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.portfolio-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.portfolio-case-btn {
    flex: 1;
    padding: 10px 16px;
    background: #f7fafc;
    color: var(--text-primary);
    border: 2px solid #e2e8f0;
    font-weight: 600;
    font-size: 13px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.portfolio-case-btn:hover {
    border-color: #667eea;
    background: white;
}

/* Case Modal */
.case-modal-container:not(:empty) {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
    cursor: pointer;
}

.case-modal-container:not(:empty) .case-modal {
    cursor: default;
}

.case-modal {
    background: white;
    border-radius: 24px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-strong);
    animation: scaleIn 0.3s ease;
}

.case-modal-header {
    padding: 32px 32px 24px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.case-modal-close {
    background: #f7fafc;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.case-modal-close:hover {
    background: #e2e8f0;
}

.case-modal-body {
    padding: 32px;
}

.case-modal-body h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.case-modal-body p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.case-modal-body ul {
    list-style: none;
    margin-bottom: 24px;
}

.case-modal-body ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    color: var(--text-secondary);
}

.case-modal-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #38ef7d;
    font-weight: bold;
}

/* Case Modal New Styling */
.case-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
    margin-bottom: 8px;
}

.case-modal-header h3 {
    font-size: 24px;
    color: var(--text-primary);
    margin: 0;
}

.case-section {
    margin-bottom: 24px;
}

.case-section:last-of-type {
    margin-bottom: 0;
}

.case-section h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #667eea;
    margin-bottom: 10px;
}

.case-section p {
    margin-bottom: 0;
}

.case-list {
    margin: 0;
    padding: 0;
}

.case-list li {
    padding: 6px 0;
    padding-left: 24px;
}

.case-tech {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 12px 16px;
    background: #f7fafc;
    border-radius: 10px;
    display: inline-block;
}

.case-cta {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.case-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #667eea;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.case-link:hover {
    color: #764ba2;
}

/* About Section 2.0 */
.about-section-2 {
    padding: 100px 40px;
    background: var(--surface);
}

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

.about-intro {
    display: flex;
    gap: 40px;
    margin-bottom: 48px;
}

.about-photo {
    flex-shrink: 0;
}

.about-photo img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.about-text h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.about-role {
    color: #667eea;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 16px;
}

.about-text p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.about-link {
    display: inline-block;
    color: #667eea;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    margin-top: 8px;
    transition: color 0.2s ease;
}

.about-link:hover {
    color: #764ba2;
}

/* Track Record Mini (for homepage) */
.track-record-mini {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 32px;
    margin-top: 32px;
}

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

.track-stat-mini {
    text-align: center;
}

.track-stat-value-mini {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 6px;
}

.track-stat-label-mini {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 600px) {
    .track-record-stats-mini {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .track-stat-value-mini {
        font-size: 24px;
    }

    .track-record-mini {
        padding: 24px;
    }
}

/* CV Toggle */
.cv-toggle {
    background: #f7fafc;
    border-radius: 20px;
    padding: 32px;
}

.cv-toggle h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.cv-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.cv-tab {
    padding: 10px 20px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.cv-tab:hover,
.cv-tab.active {
    border-color: #667eea;
    background: var(--primary-gradient);
    color: white;
}

.cv-content {
    background: white;
    border-radius: 12px;
    padding: 24px;
}

.cv-section h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.cv-section p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.cv-section ul {
    list-style: none;
    margin-bottom: 20px;
}

.cv-section ul li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.cv-section ul li strong {
    color: var(--text-primary);
}

.cv-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.cv-tags span {
    background: var(--primary-gradient);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Process Section */
.process-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.process-container {
    max-width: 1000px;
    margin: 0 auto;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '→';
    position: absolute;
    right: -20px;
    top: 30px;
    color: var(--text-muted);
    font-size: 20px;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 16px;
}

.process-step h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.process-step p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Contact steps */
.contact-header {
    text-align: center;
    margin-bottom: 32px;
}

.contact-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 24px;
}

.contact-step {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--primary-gradient);
    color: white;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
}

.contact-step-text {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Footer tagline */
.footer-tagline {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Nav CTA button */
.nav-cta {
    background: var(--primary-gradient) !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
}

.nav-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-soft) !important;
}

.nav-cta::before {
    display: none !important;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Mobile responsive for new components */
@media (max-width: 900px) {
    .hero-2 .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-showcase {
        order: -1;
    }

    .hero-flows {
        gap: 10px;
    }

    .flow-card {
        flex-wrap: wrap;
    }

    .flow-hint {
        width: 100%;
        margin-top: 8px;
        text-align: center;
    }

    .hero-metrics {
        flex-wrap: wrap;
        justify-content: center;
    }

    .service-categories {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
        gap: 32px;
    }

    .process-step::after {
        display: none;
    }

    .about-intro {
        flex-direction: column;
        text-align: center;
    }

    .about-photo img {
        margin: 0 auto;
    }

    .contact-steps {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .hero-2 {
        padding: 80px 20px 60px;
    }

    .services-section,
    .portfolio-section,
    .about-section-2,
    .process-section {
        padding: 60px 20px;
    }

    .cv-tabs {
        flex-direction: column;
    }

    .portfolio-actions {
        flex-direction: column;
    }
}

/* ================================
   SEPARATA SIDOR - Page Styles
   ================================ */

/* Page Header (för alla undersidor) */
.page-header {
    background: var(--primary-gradient);
    padding: 120px 40px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.page-header-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    animation: fadeInUp 0.6s ease;
}

.page-header .page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease 0.1s both;
}

/* Services Page */
.services-page-section {
    padding: 80px 40px;
    background: var(--surface);
}

.service-category-large {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 24px;
    padding: 48px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.service-category-large:hover {
    border-color: #667eea;
    box-shadow: var(--shadow-medium);
}

.service-category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.service-category-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.service-category-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 800px;
}

/* Service Pricing Grid */
.service-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.service-pricing-card {
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.service-pricing-card:hover {
    border-color: #667eea;
    transform: translateY(-4px);
}

.service-pricing-card.popular {
    border-color: #667eea;
    background: white;
    box-shadow: var(--shadow-soft);
}

.service-pricing-card .popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.service-pricing-card h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.service-pricing-card .price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 8px;
}

.service-pricing-card > p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.service-pricing-card ul {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
}

.service-pricing-card ul li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    font-size: 13px;
    color: var(--text-secondary);
}

.service-pricing-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #38ef7d;
    font-weight: bold;
}

/* Service Features Grid */
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.service-feature {
    background: #f7fafc;
    border-radius: 16px;
    padding: 24px;
}

.service-feature h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.service-feature .price {
    font-size: 20px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 12px;
}

.service-feature p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Service Includes */
.service-includes {
    background: rgba(102, 126, 234, 0.05);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
}

.service-includes h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.service-includes-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 8px;
    margin: 0;
    padding: 0;
}

.service-includes-list li {
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    color: var(--text-secondary);
}

.service-includes-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #38ef7d;
    font-weight: bold;
}

/* Service Examples */
.service-examples {
    margin-bottom: 24px;
}

.service-examples h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.service-examples ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-examples ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    color: var(--text-secondary);
}

.service-examples ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #667eea;
}

.service-examples ul li strong {
    color: var(--text-primary);
}

/* Service Tech */
.service-tech {
    margin-bottom: 24px;
}

.service-tech h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tags span {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    color: var(--text-secondary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

/* Category CTA Large */
.category-cta-large {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary-gradient);
    color: white;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.category-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Other Services Section */
.other-services-section {
    padding: 60px 40px 80px;
    background: #f7fafc;
}

.other-services-section h2 {
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.other-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.other-service {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.other-service:hover {
    border-color: #667eea;
    transform: translateY(-4px);
}

.other-service h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.other-service .price {
    font-size: 24px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 12px;
}

.other-service p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* Portfolio Page */
.portfolio-page-section {
    padding: 80px 40px;
    background: var(--surface);
}

.portfolio-category {
    margin-bottom: 60px;
}

.portfolio-category h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.portfolio-category-desc {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 700px;
}

.portfolio-card-large {
    padding: 32px;
}

.portfolio-card-large .portfolio-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

/* Portfolio CTA Section */
.portfolio-cta-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    text-align: center;
}

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

.portfolio-cta-section h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* About Page */
.about-page-section {
    padding: 80px 40px;
    background: var(--surface);
}

.about-intro-large {
    display: flex;
    gap: 48px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.about-photo-large img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-medium);
}

.about-text-large h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.about-text-large .about-role {
    color: #667eea;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
}

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

.about-contact-info {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.about-contact-info p {
    margin-bottom: 8px;
    font-size: 15px;
}

.about-contact-info a {
    color: #667eea;
    text-decoration: none;
}

.about-contact-info a:hover {
    text-decoration: underline;
}

/* Track Record Section */
.track-record-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    padding: 48px;
    margin-bottom: 60px;
    color: white;
}

.track-record-header {
    text-align: center;
    margin-bottom: 40px;
}

.track-record-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    color: white;
}

.track-record-tagline {
    font-size: 18px;
    opacity: 0.9;
    margin: 0;
}

.track-record-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.track-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 24px 16px;
    backdrop-filter: blur(10px);
}

.track-stat-value {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.track-stat-label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Capability Cards */
.capability-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.capability-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: transform 0.2s ease;
}

.capability-card:hover {
    transform: translateY(-4px);
}

.capability-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 14px;
    margin-bottom: 16px;
}

.capability-icon svg {
    color: white;
}

.capability-card h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

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

.capability-list li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 4px 0;
}

/* Track Current (badges) */
.track-current {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.track-current-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 12px 20px;
    backdrop-filter: blur(10px);
}

.track-current-badge {
    background: white;
    color: #667eea;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 100px;
}

.track-current-text {
    font-size: 14px;
    color: white;
}

/* Track Record Content (for HTMX partials) */
.track-record-content .track-record-stats {
    margin-bottom: 32px;
}

.track-record-content .capability-cards {
    margin-bottom: 24px;
}

/* CV Toggle Section (used on home page) - now uses track record inside */
.cv-toggle-section {
    background: #f7fafc;
    border-radius: 24px;
    padding: 48px;
    margin-bottom: 60px;
}

.cv-toggle-section h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
    text-align: center;
}

.cv-content-large {
    padding: 0;
}

/* Legacy styles for old CV format - keep for backwards compatibility */
.cv-content-large h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 24px;
    color: var(--text-primary);
}

.cv-content-large h3:first-child {
    margin-top: 0;
}

.cv-products {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cv-products li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.cv-products li strong {
    color: var(--text-primary);
}

/* Responsive Track Record */
@media (max-width: 900px) {
    .track-record-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .capability-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .track-record-section {
        padding: 32px 24px;
    }

    .track-record-header h2 {
        font-size: 26px;
    }
}

@media (max-width: 600px) {
    .track-record-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .track-stat {
        padding: 16px 12px;
    }

    .track-stat-value {
        font-size: 24px;
    }

    .capability-cards {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .capability-card {
        padding: 16px;
    }

    .capability-icon {
        width: 44px;
        height: 44px;
    }

    .capability-icon svg {
        width: 22px;
        height: 22px;
    }

    .track-current {
        flex-direction: column;
        gap: 12px;
    }

    .track-current-item {
        justify-content: center;
        padding: 10px 16px;
    }
}

/* Why Benbo Section */
.why-benbo-section h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-primary);
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.why-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    border-color: #667eea;
    transform: translateY(-4px);
}

.why-card h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.why-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Contact Page */
.contact-page-section {
    padding: 80px 40px;
    background: var(--surface);
}

.contact-page-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-page-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-process h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.contact-process-steps {
    margin-bottom: 48px;
}

.contact-process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.contact-process-step .process-step-num {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
}

.process-step-content h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.process-step-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.contact-direct {
    background: #f7fafc;
    border-radius: 16px;
    padding: 24px;
}

.contact-direct h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.contact-direct ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-direct ul li {
    padding: 4px 0;
    font-size: 15px;
    color: var(--text-secondary);
}

.contact-direct ul li a {
    color: #667eea;
    text-decoration: none;
}

.contact-direct ul li a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 24px;
    padding: 32px;
}

/* Contact FAQ Section */
.contact-faq-section {
    padding: 60px 40px 80px;
    background: #f7fafc;
}

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

.contact-faq-section h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-primary);
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.faq-item {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
}

.faq-item h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.faq-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Mobile responsive for separate pages */
@media (max-width: 900px) {
    .page-header {
        padding: 100px 20px 60px;
    }

    .services-page-section,
    .portfolio-page-section,
    .about-page-section,
    .contact-page-section {
        padding: 60px 20px;
    }

    .service-category-large {
        padding: 32px 24px;
    }

    .service-pricing-grid {
        grid-template-columns: 1fr;
    }

    .about-intro-large {
        flex-direction: column;
        text-align: center;
    }

    .about-photo-large img {
        margin: 0 auto;
    }

    .contact-page-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .service-category-header {
        flex-direction: column;
        text-align: center;
    }

    .cv-toggle-section {
        padding: 32px 20px;
    }

    .contact-form-wrapper {
        padding: 24px 20px;
    }
}

/* ============================================
   SERVICE SELECTOR (New Tjänster Page)
   ============================================ */

.service-selector-section {
    padding: 60px 40px 80px;
    background: var(--surface);
}

.service-selector-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Selector Grid - 6 clickable cards */
.service-selector-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.service-selector-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 16px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.service-selector-card:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.service-selector-card.active {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.service-selector-card.active .selector-icon svg {
    stroke: white;
}

.service-selector-card.active .selector-price {
    color: rgba(255, 255, 255, 0.85);
}

.selector-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.selector-icon svg {
    stroke: #667eea;
    transition: stroke 0.2s ease;
}

.selector-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.selector-price {
    font-size: 12px;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

/* Service Details Container */
.service-details-container {
    position: relative;
}

.service-detail {
    display: none;
    animation: fadeIn 0.3s ease;
}

.service-detail.active {
    display: block;
}

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

.service-detail-header {
    text-align: center;
    margin-bottom: 40px;
}

.service-detail-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.service-detail-header p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Pricing Table */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.pricing-table-4 {
    grid-template-columns: repeat(3, 1fr);
}

.pricing-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: all 0.2s ease;
}

.pricing-card:hover {
    border-color: #667eea;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);
}

.pricing-card.popular {
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.pricing-card .popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 16px;
    border-radius: 100px;
}

.pricing-card h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.pricing-amount {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 4px;
}

.pricing-monthly {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
    margin-bottom: 24px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    padding-left: 24px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
}

.pricing-cta {
    display: inline-block;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Service Example Link */
.service-example {
    text-align: center;
    padding: 20px;
    background: #f7fafc;
    border-radius: 12px;
    margin-top: 24px;
}

.example-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-right: 8px;
}

.example-link {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
}

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

.example-desc {
    font-size: 14px;
    color: var(--text-secondary);
}

.example-sep {
    margin: 0 12px;
    color: #cbd5e1;
}

/* Service Content Box (for AI section) */
.service-content-box {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
}

.service-content-box h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    margin-top: 24px;
}

.service-content-box h4:first-child {
    margin-top: 0;
}

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

.service-list li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-secondary);
    border-bottom: 1px solid #f1f5f9;
}

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

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

.custom-pricing-note {
    background: #f7fafc;
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
}

.custom-pricing-note p {
    margin: 0;
    font-size: 15px;
    color: var(--text-secondary);
}

.service-cta-large {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.service-cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Service Tech Footer */
.service-tech-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    padding: 20px;
    background: #f7fafc;
    border-radius: 12px;
}

.service-tech-footer > span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Service CV Link */
.service-cv-link {
    text-align: center;
    margin-top: 24px;
}

.service-cv-link a {
    color: #667eea;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
}

.service-cv-link a:hover {
    text-decoration: underline;
}

/* Responsive Service Selector */
@media (max-width: 1000px) {
    .service-selector-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .service-selector-section {
        padding: 40px 20px 60px;
    }

    .service-selector-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .service-selector-card {
        padding: 16px 12px;
    }

    .selector-icon {
        width: 40px;
        height: 40px;
    }

    .selector-icon svg {
        width: 24px;
        height: 24px;
    }

    .selector-title {
        font-size: 13px;
    }

    .selector-price {
        font-size: 11px;
    }

    .pricing-table,
    .pricing-table-4 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pricing-card {
        padding: 24px 20px;
    }

    .pricing-amount {
        font-size: 28px;
    }

    .service-content-box {
        padding: 24px;
    }

    .service-example {
        flex-direction: column;
        gap: 8px;
    }

    .example-sep {
        display: none;
    }

    .service-tech-footer {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .service-selector-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .service-selector-card {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        padding: 16px 20px;
        gap: 16px;
        min-height: auto;
    }

    .selector-icon {
        margin-bottom: 0;
    }

    .selector-text {
        text-align: left;
    }

    .service-detail-header h2 {
        font-size: 24px;
    }

    .service-detail-header p {
        font-size: 14px;
    }
}

/* ===========================================
   ABOUT PAGE - UX IMPROVEMENTS
   =========================================== */

/* About Tagline */
.about-tagline-text {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 24px;
    font-weight: 500;
}

/* About Current Badges */
.about-current-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-primary);
    width: fit-content;
}

.about-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
}

/* About Contact Inline */
.about-contact-inline {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.about-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}

.about-contact-link:hover {
    color: #764ba2;
}

.about-contact-link svg {
    flex-shrink: 0;
}

/* Track Record Stats Link */
.track-record-stats-link {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-decoration: none;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.track-record-stats-link:hover {
    transform: translateY(-2px);
}

.track-record-stats-link .track-stat {
    transition: background 0.2s ease;
}

.track-record-stats-link:hover .track-stat {
    background: rgba(255, 255, 255, 0.25);
}

.track-stats-cta {
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.track-record-stats-link:hover .track-stats-cta {
    opacity: 1;
}

/* Capability Cards - Context Style */
.capability-context {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 8px 0 4px;
    line-height: 1.5;
}

.capability-example {
    font-size: 12px;
    color: #667eea;
    font-weight: 600;
    margin: 0;
}

/* Comparison Section */
.comparison-section {
    margin-top: 48px;
    padding: 48px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.comparison-section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.comparison-table {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 0;
}

.comparison-row.comparison-header {
    background: #f7fafc;
    font-weight: 700;
}

.comparison-cell {
    padding: 16px 20px;
    font-size: 14px;
    border-bottom: 1px solid #e2e8f0;
    color: var(--text-secondary);
}

.comparison-row:last-child .comparison-cell {
    border-bottom: none;
}

.comparison-cell.comparison-label {
    font-weight: 600;
    color: var(--text-primary);
    background: #fafafa;
}

.comparison-cell.comparison-highlight {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    color: #667eea;
    font-weight: 600;
}

.comparison-header .comparison-cell.comparison-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* About CTA Section */
.about-cta-section {
    margin-top: 48px;
    padding: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    text-align: center;
    color: white;
}

.about-cta-section h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: white;
}

.about-cta-section p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: white;
    color: #667eea;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary-large {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: transparent;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.btn-secondary-large:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* About Page Responsive */
@media (max-width: 768px) {
    .track-record-stats-link {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .track-stats-cta {
        bottom: -28px;
        font-size: 13px;
    }

    .comparison-section {
        padding: 24px 16px;
    }

    .comparison-section h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .comparison-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 16px;
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .comparison-row:last-child {
        margin-bottom: 0;
    }

    .comparison-row.comparison-header {
        display: none;
    }

    .comparison-cell {
        padding: 12px 16px;
        text-align: left;
        border-bottom: 1px solid #e2e8f0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .comparison-cell.comparison-label {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        font-weight: 600;
        font-size: 14px;
        padding: 12px 16px;
        display: block;
    }

    .comparison-cell:not(.comparison-label) {
        font-size: 14px;
    }

    .comparison-cell:last-child {
        border-bottom: none;
    }

    .comparison-cell.comparison-highlight {
        background: rgba(102, 126, 234, 0.08);
        color: #667eea;
        font-weight: 600;
    }

    .comparison-cell.comparison-highlight::before {
        content: "Benbo";
        font-weight: 500;
        color: #667eea;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .comparison-cell:not(.comparison-label):not(.comparison-highlight)::before {
        content: "Byrå";
        font-weight: 500;
        color: var(--text-muted);
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .about-cta-section {
        padding: 32px 24px;
    }

    .about-cta-section h2 {
        font-size: 24px;
    }

    .about-cta-buttons {
        flex-direction: column;
    }

    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        justify-content: center;
    }

    .about-contact-inline {
        flex-direction: column;
        gap: 12px;
    }
}

/* ===========================================
   PORTFOLIO PAGE - NEW DESIGN
   =========================================== */

/* Featured Projects Grid */
.portfolio-featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

/* Featured Project */
.portfolio-featured {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.portfolio-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.portfolio-featured-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
    margin-bottom: 24px;
}

.portfolio-featured-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.portfolio-featured-logo {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: #f7fafc;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.portfolio-featured-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.portfolio-featured-info {
    flex: 1;
}

.portfolio-featured-info h2,
.portfolio-featured-info h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.portfolio-featured-tagline {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.portfolio-featured-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.portfolio-featured-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.portfolio-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #10b981;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.portfolio-date {
    font-size: 13px;
    color: var(--text-secondary);
}

.portfolio-featured-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.btn-portfolio-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.btn-portfolio-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.btn-portfolio-secondary {
    padding: 12px 24px;
    background: transparent;
    color: #667eea;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-portfolio-secondary:hover {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}

/* Section Title */
.portfolio-section-title {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 24px;
}

/* Portfolio Grid New */
.portfolio-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Portfolio Card New */
.portfolio-card-new {
    background: white;
    border-radius: 20px;
    padding: 24px;
    border: 2px solid #e2e8f0;
    transition: all 0.2s ease;
}

.portfolio-card-new:hover {
    border-color: #667eea;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);
}

.portfolio-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.portfolio-card-logo {
    width: 56px;
    height: 56px;
    background: #f7fafc;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    overflow: hidden;
}

.portfolio-card-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.portfolio-card-meta {
    display: flex;
    align-items: center;
}

.portfolio-card-new h3 {
    font-size: 20px;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.portfolio-card-tagline {
    font-size: 14px;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 8px;
}

.portfolio-card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 12px;
}

.portfolio-tech-small {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
}

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

.portfolio-card-link {
    color: #667eea;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.portfolio-card-link:hover {
    color: #764ba2;
}

.portfolio-card-case {
    padding: 8px 16px;
    background: #f7fafc;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.portfolio-card-case:hover {
    background: #e2e8f0;
    color: var(--text-primary);
}

/* Portfolio Responsive */
@media (max-width: 1024px) {
    .portfolio-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .portfolio-featured-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .portfolio-featured {
        padding: 24px;
    }

    .portfolio-featured-logo {
        width: 64px;
        height: 64px;
    }

    .portfolio-featured-info h2,
    .portfolio-featured-info h3 {
        font-size: 20px;
    }

    .portfolio-featured-actions {
        flex-direction: column;
    }

    .btn-portfolio-primary,
    .btn-portfolio-secondary {
        width: 100%;
        justify-content: center;
    }

    .portfolio-grid-new {
        grid-template-columns: 1fr;
    }

    .portfolio-section-title {
        font-size: 20px;
    }
}

/* ================================================
   NEW FOOTER
   ================================================ */

.footer-new {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 60px 40px 30px;
}

.footer-new-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
}

.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.footer-logo span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.footer-tagline-new {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.footer-contact-info a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-contact-info a:hover {
    color: white;
}

.footer-contact-info svg {
    opacity: 0.7;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-links-section h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.footer-links-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-section ul li {
    margin-bottom: 10px;
}

.footer-links-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.footer-links-section ul li a:hover {
    color: white;
}

.footer-bottom-new {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-new p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin: 0;
}

.footer-no-cookies {
    display: flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 900px) {
    .footer-new-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .footer-new {
        padding: 40px 20px 24px;
    }

    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-bottom-new {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ================================================
   PRICING PAGE
   ================================================ */

.pricing-explanation-section {
    padding: 60px 40px;
    background: var(--background);
}

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

.pricing-explanation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.pricing-explanation-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.pricing-explanation-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pricing-explanation-icon svg {
    color: white;
}

.pricing-explanation-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.pricing-explanation-card > p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.pricing-explanation-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-explanation-card ul li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-secondary);
    font-size: 14px;
}

.pricing-explanation-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: var(--primary-gradient);
    border-radius: 50%;
}

.pricing-category-section {
    padding: 60px 40px;
}

.pricing-category-section.pricing-category-alt {
    background: var(--background);
}

.pricing-category-container {
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-category-container h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.pricing-category-desc {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 16px;
}

.pricing-example {
    text-align: center;
    margin-top: 32px;
    padding: 16px;
    background: rgba(102, 126, 234, 0.08);
    border-radius: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-example a {
    color: var(--text-primary);
    font-weight: 500;
    text-decoration: none;
}

.pricing-example a:hover {
    text-decoration: underline;
}

.pricing-faq-section {
    padding: 60px 40px;
    background: var(--background);
}

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

.pricing-faq-container h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.pricing-cta-section {
    padding: 60px 40px;
    text-align: center;
}

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

.pricing-cta-container h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.pricing-cta-container p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .pricing-explanation-grid {
        grid-template-columns: 1fr;
    }

    .pricing-category-section,
    .pricing-faq-section,
    .pricing-cta-section {
        padding: 40px 20px;
    }
}

/* ================================================
   LEGAL PAGES (Privacy, Terms)
   ================================================ */

.legal-content-section {
    padding: 60px 40px;
}

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

.legal-updated {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 32px;
}

.legal-content h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content ul li {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-content a {
    color: #667eea;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-contact-box {
    margin-top: 48px;
    padding: 24px;
    background: var(--background);
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.legal-contact-box h3 {
    margin-top: 0;
    margin-bottom: 8px;
}

.legal-contact-box p {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .legal-content-section {
        padding: 40px 20px;
    }

    .legal-content h2 {
        font-size: 20px;
    }
}

/* ================================================
   MOBILE OPTIMIZATIONS - Added 2025-12-11
   ================================================ */

/* Service Selector - Larger touch targets and text */
@media (max-width: 768px) {
    .service-selector-card {
        padding: 20px 16px;
        min-height: 100px;
    }

    .selector-title {
        font-size: 14px;
        font-weight: 600;
    }

    .selector-price {
        font-size: 12px;
        margin-top: 6px;
    }

    .selector-icon {
        width: 44px;
        height: 44px;
    }

    .selector-icon svg {
        width: 26px;
        height: 26px;
    }
}

/* Small phones (400px and below) */
@media (max-width: 400px) {
    /* Global padding adjustments */
    .hero-2 {
        padding: 70px 16px 50px;
    }

    .page-header {
        padding: 100px 16px 60px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header .page-subtitle {
        font-size: 15px;
    }

    /* Service Selector - Stack to single column on tiny screens */
    .service-selector-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .service-selector-card {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 16px;
        gap: 12px;
    }

    .selector-icon {
        flex-shrink: 0;
    }

    .selector-info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    /* Pricing cards */
    .pricing-card {
        padding: 20px 16px;
    }

    .pricing-amount {
        font-size: 24px;
    }

    .pricing-period {
        font-size: 13px;
    }

    /* Footer adjustments */
    .footer-new {
        padding: 32px 16px 20px;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-link-section h4 {
        font-size: 13px;
    }

    .footer-link-section a {
        font-size: 14px;
        padding: 6px 0;
    }

    /* Legal pages */
    .legal-content-section {
        padding: 32px 16px;
    }

    .legal-content h2 {
        font-size: 18px;
    }

    .legal-content h3 {
        font-size: 16px;
    }

    .legal-contact-box {
        padding: 20px 16px;
    }

    /* Pricing page */
    .pricing-explanation-section,
    .pricing-category-section,
    .pricing-faq-section {
        padding: 32px 16px;
    }

    .pricing-explanation-card {
        padding: 24px 20px;
    }

    /* Portfolio */
    .portfolio-section-new {
        padding: 32px 16px;
    }

    .portfolio-featured {
        padding: 20px;
    }

    .portfolio-featured-logo {
        width: 56px;
        height: 56px;
    }

    /* Contact */
    .contact-section {
        padding: 32px 16px;
    }

    .contact-form {
        padding: 20px 16px;
    }

    /* About */
    .about-section-2 {
        padding: 32px 16px;
    }
}

/* Extra small phones (320px - iPhone SE, older devices) */
@media (max-width: 320px) {
    .hero-2 {
        padding: 60px 12px 40px;
    }

    .page-header {
        padding: 90px 12px 50px;
    }

    .page-header h1 {
        font-size: 1.6rem;
    }

    .service-selector-section {
        padding: 32px 12px 48px;
    }

    .footer-new {
        padding: 28px 12px 16px;
    }

    .nav-container {
        padding: 0 12px;
    }
}

/* Tech tags - ensure wrapping everywhere */
.tech-tags,
.portfolio-tags,
.cv-tags,
.service-tech-list,
.pricing-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag,
.portfolio-tag,
.cv-tag {
    white-space: nowrap;
    flex-shrink: 0;
}

/* Touch target improvements - minimum 44x44px */
@media (max-width: 768px) {
    /* Navigation links */
    .nav-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* All buttons */
    .btn,
    .btn-primary,
    .btn-secondary,
    .btn-outline,
    .nav-cta,
    button[type="submit"] {
        min-height: 44px;
        padding: 12px 24px;
    }

    /* Form inputs */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    textarea,
    select {
        min-height: 44px;
        font-size: 16px; /* Prevents iOS zoom */
    }

    /* Links in footer */
    .footer-link-section a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    /* Service selector cards */
    .service-selector-card {
        min-height: 80px;
    }

    /* Portfolio buttons */
    .btn-portfolio-primary,
    .btn-portfolio-secondary {
        min-height: 44px;
        padding: 12px 20px;
    }

    /* CV tabs */
    .cv-tab {
        min-height: 44px;
        padding: 12px 20px;
    }

    /* Contact info links */
    .about-contact-link,
    .footer-contact-info a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
}

/* Track Record improvements for mobile */
@media (max-width: 600px) {
    .track-record-section {
        padding: 48px 20px;
    }

    .track-record-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .track-stat {
        padding: 20px 16px;
    }

    .track-stat-value {
        font-size: 28px;
    }

    .track-stat-label {
        font-size: 12px;
    }

    .capability-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .capability-card {
        padding: 24px 20px;
    }

    .capability-title {
        font-size: 16px;
    }

    .capability-list li {
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .track-record-section {
        padding: 40px 16px;
    }

    .track-stat-value {
        font-size: 24px;
    }

    .track-stat-label {
        font-size: 11px;
    }

    .capability-card {
        padding: 20px 16px;
    }
}

/* FAQ improvements for mobile */
@media (max-width: 768px) {
    .faq-section,
    .contact-faq {
        padding: 40px 20px;
    }

    .faq-item {
        padding: 20px;
        margin-bottom: 12px;
    }

    .faq-question {
        font-size: 15px;
        line-height: 1.4;
    }

    .faq-answer {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (max-width: 400px) {
    .faq-section,
    .contact-faq {
        padding: 32px 16px;
    }

    .faq-item {
        padding: 16px;
    }

    .faq-question {
        font-size: 14px;
    }
}

/* Hero improvements for mobile */
@media (max-width: 600px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-flows {
        gap: 8px;
    }

    .flow-card {
        padding: 14px 16px;
        gap: 10px;
    }

    .flow-icon {
        width: 36px;
        height: 36px;
    }

    .flow-title {
        font-size: 13px;
    }

    .flow-hint {
        font-size: 11px;
    }

    .hero-metrics {
        gap: 16px;
    }

    .metric-value {
        font-size: 24px;
    }

    .metric-label {
        font-size: 11px;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .flow-card {
        padding: 12px 14px;
    }

    .flow-icon {
        width: 32px;
        height: 32px;
    }

    .flow-title {
        font-size: 12px;
    }

    .hero-metrics {
        gap: 12px;
    }

    .metric-value {
        font-size: 20px;
    }
}

/* Contact form improvements */
@media (max-width: 600px) {
    .contact-steps {
        gap: 12px;
    }

    .contact-step {
        padding: 16px;
        min-width: auto;
        width: 100%;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .step-title {
        font-size: 14px;
    }

    .step-desc {
        font-size: 12px;
    }
}

/* Pricing table overflow handling */
@media (max-width: 480px) {
    .pricing-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .pricing-features li {
        font-size: 13px;
        padding: 6px 0;
    }
}

/* Better text readability on mobile */
@media (max-width: 768px) {
    body {
        font-size: 15px;
        line-height: 1.7;
    }

    p {
        margin-bottom: 1em;
    }

    .legal-content p,
    .legal-content li {
        font-size: 14px;
        line-height: 1.8;
    }
}

/* ================================================
   SUBTLE ANIMATIONS - Added 2025-12-11
   ================================================ */

/* Fade-in on scroll - initial state */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Staggered fade-in for grids */
.fade-in-stagger {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-stagger.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for children */
.stagger-container .fade-in-stagger:nth-child(1) { transition-delay: 0ms; }
.stagger-container .fade-in-stagger:nth-child(2) { transition-delay: 80ms; }
.stagger-container .fade-in-stagger:nth-child(3) { transition-delay: 160ms; }
.stagger-container .fade-in-stagger:nth-child(4) { transition-delay: 240ms; }
.stagger-container .fade-in-stagger:nth-child(5) { transition-delay: 320ms; }
.stagger-container .fade-in-stagger:nth-child(6) { transition-delay: 400ms; }

/* Card hover effects - lift and shadow */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Apply to existing card classes */
.service-selector-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-selector-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.15);
}

.portfolio-card-new,
.portfolio-featured {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card-new:hover,
.portfolio-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.capability-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.pricing-explanation-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-explanation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* Button improvements */
.btn,
.btn-primary,
.nav-cta,
.btn-portfolio-primary {
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn-primary:hover,
.nav-cta:hover,
.btn-portfolio-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.btn:active,
.btn-primary:active,
.nav-cta:active,
.btn-portfolio-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.btn-secondary,
.btn-outline,
.btn-portfolio-secondary {
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-secondary:hover,
.btn-outline:hover,
.btn-portfolio-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Contact step cards */
.contact-step {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Track Record stats */
.track-stat {
    transition: transform 0.3s ease;
}

.track-stat:hover {
    transform: translateY(-2px);
}

/* Flow cards on homepage */
.flow-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.flow-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
}

/* FAQ items */
.faq-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* Footer links subtle effect */
.footer-links-section a {
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-links-section a:hover {
    color: white;
    transform: translateX(4px);
}

/* ================================================
   PORTFOLIO PREVIEW (Homepage)
   ================================================ */

.portfolio-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.portfolio-preview-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.portfolio-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.preview-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.preview-badge {
    background: var(--primary-gradient);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.preview-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #22c55e;
    font-weight: 500;
}

.preview-status .status-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
}

.portfolio-preview-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.portfolio-preview-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
}

.preview-tech {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.portfolio-see-all {
    text-align: center;
}

.see-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #667eea;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.see-all-link:hover {
    background: rgba(102, 126, 234, 0.1);
}

/* Portfolio Preview Responsive */
@media (max-width: 1024px) {
    .portfolio-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .portfolio-preview-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .portfolio-preview-card {
        padding: 20px;
    }

    .portfolio-preview-card h3 {
        font-size: 16px;
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .fade-in,
    .fade-in-stagger {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .card-hover:hover,
    .service-selector-card:hover,
    .portfolio-card-new:hover,
    .portfolio-featured:hover,
    .pricing-card:hover,
    .capability-card:hover,
    .pricing-explanation-card:hover,
    .contact-step:hover,
    .track-stat:hover,
    .flow-card:hover,
    .faq-item:hover {
        transform: none;
    }

    .btn:hover,
    .btn-primary:hover,
    .nav-cta:hover,
    .btn-portfolio-primary:hover,
    .btn-secondary:hover,
    .btn-outline:hover,
    .btn-portfolio-secondary:hover {
        transform: none;
    }

    .footer-links-section a:hover {
        transform: none;
    }
}

/* ================================
   CTA Section (replaces full contact form)
   ================================ */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 24px;
    text-align: center;
}

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

.cta-container h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.cta-container p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.125rem;
    background: white;
    color: #667eea;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: #667eea;
}

/* CTA Mobile */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 20px;
    }

    .cta-container p {
        font-size: 1rem;
    }

    .btn-large {
        padding: 14px 32px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 50px 16px;
    }

    .btn-large {
        padding: 14px 24px;
    }
}

/* ================================
   Portfolio Screenshots
   ================================ */

/* Featured projects (kundprojekt) screenshot */
.portfolio-screenshot {
    display: block;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.portfolio-screenshot img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.portfolio-featured:hover .portfolio-screenshot img {
    transform: scale(1.02);
}

/* Portfolio card screenshot (egna produkter) */
.portfolio-card-screenshot {
    display: block;
    width: 100%;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.portfolio-card-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-card-new:hover .portfolio-card-screenshot img {
    transform: scale(1.05);
}

.portfolio-card-body {
    padding: 20px;
}

.portfolio-card-body .portfolio-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.portfolio-card-body .portfolio-card-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

/* Update portfolio-card-new for new structure */
.portfolio-card-new {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.15);
}

/* Unified Portfolio Grid */
.portfolio-grid-unified {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 1100px) {
    .portfolio-grid-unified {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .portfolio-grid-unified {
        grid-template-columns: 1fr;
    }
}

/* Portfolio Type Badges */
.portfolio-card-new {
    position: relative;
}

.portfolio-type-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-type-badge.client {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.portfolio-type-badge.saas {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
}

.portfolio-type-badge.ai {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

/* Homepage portfolio preview with images */
.preview-card-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.preview-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-preview-card:hover .preview-card-image img {
    transform: scale(1.05);
}

.preview-card-content {
    padding: 16px;
}

.preview-card-content h3 {
    margin: 8px 0 4px;
    font-size: 1.1rem;
}

.preview-card-content p {
    font-size: 0.9rem;
    color: #4a5568;
    margin: 0 0 8px;
}

/* Update preview card for new structure */
.portfolio-preview-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.portfolio-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.15);
}

/* Responsive for portfolio screenshots */
@media (max-width: 768px) {
    .portfolio-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .preview-card-content {
        padding: 12px;
    }

    .preview-card-content h3 {
        font-size: 1rem;
    }

    .preview-card-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 600px) {
    .portfolio-preview-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-card-body {
        padding: 16px;
    }
}

/* ================================
   Page Header with Hero Image Background
   ================================ */
.page-header.page-header-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header.page-header-hero::before {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
}
