:root {
    --yellow: #FBBF24;
    --yellow-dark: #D97706;
    --yellow-light: #FEF3C7;
    --black: #111;
    --dark: #1a1a1a;
    --gray-900: #222;
    --gray-800: #333;
    --gray-700: #444;
    --gray-600: #555;
    --gray-500: #777;
    --gray-400: #999;
    --gray-300: #ccc;
    --gray-200: #e5e5e5;
    --gray-100: #f5f5f5;
    --white: #fff;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: inherit;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}

.btn-primary {
    background: var(--yellow);
    color: var(--black);
}

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

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

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

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--gray-300);
}

.btn-outline:hover {
    border-color: var(--dark);
    background: var(--dark);
    color: var(--white);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

.section {
    padding: 64px 0;
}

.section-alt {
    background: var(--gray-100);
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--yellow-dark);
    margin-bottom: 8px;
}

.section-dark .section-label {
    color: var(--yellow);
}

.section-title {
    font-size: 32px;
    margin-bottom: 12px;
}

.section-dark .section-title {
    color: var(--white);
}

.section-text {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
}

.section-dark .section-text {
    color: var(--gray-400);
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.topbar span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar i {
    color: var(--yellow);
}

.topbar a {
    color: var(--yellow);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

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

.header {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header.scrolled {
    box-shadow: var(--shadow);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 46px;
    width: auto;
}

.logo-text {
    font-weight: 700;
    font-size: 15px;
    color: var(--dark);
    display: none;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    font-size: 15px;
    color: var(--gray-600);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: 0.2s;
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-link-mobile {
    display: none;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-phone i {
    color: var(--yellow-dark);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
    padding: 10px;
    margin-left: auto;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
}

.hero {
    padding: 130px 0 48px;
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-label {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 42px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-title span {
    color: var(--yellow-dark);
}

.hero-text {
    font-size: 17px;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-stats {
    display: flex;
    gap: 32px;
}

.hero-stat-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
}

.hero-stat-label {
    font-size: 14px;
    color: var(--gray-500);
}

.hero-visual {
    position: relative;
}

.hero-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--white);
    padding: 12px 16px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-badge-icon {
    width: 40px;
    height: 40px;
    background: var(--yellow);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.hero-badge-text strong {
    display: block;
    font-size: 15px;
}

.hero-badge-text span {
    font-size: 13px;
    color: var(--gray-500);
}

.hero-badge-arrow {
    display: none;
}

.trust {
    background: var(--dark);
    padding: 16px 0;
}

.trust-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
}

.trust-item i {
    color: var(--yellow);
}

.trust-item span {
    font-weight: 600;
    font-size: 14px;
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: 0.2s;
}

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

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--yellow);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.service-card > p {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-list {
    list-style: none;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    font-size: 14px;
    color: var(--gray-600);
}

.service-list i {
    color: var(--yellow-dark);
    font-size: 12px;
}

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

.problem-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
}

.problem-icon {
    width: 56px;
    height: 56px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
    color: var(--gray-600);
    transition: 0.2s;
}

.problem-card:hover .problem-icon {
    background: var(--yellow);
    color: var(--black);
}

.problem-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.problem-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

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

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

.process-num {
    width: 56px;
    height: 56px;
    background: var(--yellow);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.process-step h3 {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
}

.process-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.process-gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.process-gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.process-gallery-item:hover img {
    transform: scale(1.03);
}

.process-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
    padding: 24px 16px 14px;
    font-size: 13px;
    font-weight: 600;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.about-content > p {
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.7;
}

.about-list {
    list-style: none;
}

.about-list li {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
}

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

.about-icon {
    width: 44px;
    height: 44px;
    background: var(--yellow);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.about-list h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.about-list p {
    font-size: 14px;
    color: var(--gray-600);
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.area-tag {
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s;
}

.area-tag:hover {
    border-color: var(--yellow);
    background: var(--yellow-light);
}

.reviews-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.review-stars {
    color: var(--yellow);
    font-size: 16px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.review-text {
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 18px;
    font-size: 14px;
}

.review-author strong {
    display: block;
    color: var(--gray-900);
    font-size: 15px;
}

.review-author span {
    color: var(--gray-500);
    font-size: 13px;
}

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

.faq-wrap {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 8px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-question span {
    flex: 1;
}

.faq-question:hover {
    color: var(--yellow-dark);
}

.faq-question i {
    color: var(--yellow-dark);
    font-size: 14px;
    transition: 0.2s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 18px;
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.contact-info .section-label {
    text-align: left;
}

.contact-info .section-title {
    text-align: left;
}

.contact-info > p {
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--gray-100);
    border-radius: var(--radius);
    transition: 0.2s;
}

.contact-method:hover {
    background: var(--yellow-light);
}

.contact-method-icon {
    width: 44px;
    height: 44px;
    background: var(--yellow);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-method strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}

.contact-method span {
    font-size: 14px;
    color: var(--gray-600);
}

.contact-form-wrap {
    background: var(--gray-100);
    padding: 32px;
    border-radius: var(--radius-lg);
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 15px;
    transition: 0.2s;
}

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

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

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

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 8px;
}

.cta-banner {
    background: var(--yellow);
    padding: 48px 0;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 28px;
    margin-bottom: 8px;
}

.cta-content p {
    font-size: 16px;
    color: var(--gray-800);
    margin-bottom: 20px;
}

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-800);
}

.footer-brand img {
    height: 45px;
    width: auto;
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 14px;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

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

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--gray-400);
    font-size: 14px;
}

.footer-col a:hover {
    color: var(--yellow);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--yellow);
    width: 16px;
}

.footer-contact span {
    color: var(--gray-400);
    font-size: 14px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    font-size: 13px;
    color: var(--gray-500);
}

.footer-bottom a {
    color: var(--yellow);
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
}

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

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-image {
        height: 280px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

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

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

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

    .process-gallery {
        gap: 16px;
        margin-top: 32px;
    }

    .process-gallery-item img {
        height: 220px;
    }

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

    .about-content .section-title {
        text-align: center;
    }

    .about-content .section-label {
        text-align: center;
        display: block;
    }

    .about-content > p {
        text-align: center;
    }

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

    .contact-info .section-label {
        text-align: center;
        display: block;
        width: 100%;
    }

    .contact-info .section-title,
    .contact-info > p {
        text-align: center;
    }

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

@media (max-width: 768px) {
    .topbar {
        padding: 0;
        background: var(--dark);
    }

    .topbar .container {
        padding: 0;
        max-width: 100%;
    }

    .topbar span {
        display: none;
    }

    .topbar a {
        display: block;
        width: 100%;
        text-align: center;
        font-size: 0;
        background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
        padding: 14px 20px;
    }

    .topbar a:active {
        opacity: 0.9;
    }

    .topbar a::before {
        content: 'Boka gratis konsultation innan 28 mars →';
        font-size: 14px;
        font-weight: 700;
        color: var(--black);
    }

    .header {
        top: 49px;
    }

    .header.scrolled {
        top: 49px;
        box-shadow: var(--shadow);
    }

    .logo-text {
        display: block;
        font-size: 14px;
    }

    .logo img {
        height: 38px;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 0 20px;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        z-index: 999;
    }

    .nav.active {
        max-height: 450px;
        padding: 0 20px 12px 20px;
    }

    .nav-link {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid var(--gray-200);
        width: 100%;
        font-size: 15px;
    }

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

    .nav-link::after {
        display: none;
    }

    .nav-link-mobile {
        display: block;
        background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
        color: var(--black);
        font-weight: 700;
        text-align: center;
        padding: 14px 24px;
        border-radius: 8px;
        margin-top: 8px;
        border-bottom: none;
    }

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

    .header-cta {
        display: none;
    }

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

    .hero {
        padding: 140px 0 24px;
    }

    .hero-grid {
        gap: 24px;
    }

    .hero-label {
        font-size: 11px;
        padding: 5px 12px;
        margin-bottom: 10px;
    }

    .hero-title {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .hero-text {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .hero-image {
        height: 200px;
        border-radius: 10px;
    }

    .hero-badge {
        position: static;
        margin: 12px auto 0;
        padding: 8px 16px;
        gap: 8px;
        justify-content: center;
        border-radius: 50px;
    }

    .hero-badge-icon {
        width: 24px;
        height: 24px;
        font-size: 11px;
        border-radius: 50%;
    }

    .hero-badge-text {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .hero-badge-text strong {
        font-size: 13px;
    }

    .hero-badge-text span {
        font-size: 13px;
        color: var(--gray-500);
    }

    .hero-badge-arrow {
        display: block;
        font-size: 12px;
        color: var(--gray-400);
        margin-left: 4px;
    }

    .hero-btns {
        margin-bottom: 20px;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat-value {
        font-size: 22px;
    }

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

    .trust {
        padding: 10px 0;
    }

    .trust .container {
        padding: 0 16px;
    }

    .trust-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px 16px;
    }

    .trust-item {
        white-space: nowrap;
        font-size: 12px;
    }

    .trust-item i {
        font-size: 12px;
    }

    .trust-item span {
        font-size: 12px;
    }

    .section {
        padding: 36px 0;
    }

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

    .section-title {
        font-size: 22px;
    }

    .section-text {
        font-size: 14px;
    }

    .service-card {
        padding: 18px;
    }

    .service-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
        margin-bottom: 12px;
    }

    .service-card h3 {
        font-size: 16px;
    }

    .service-card > p {
        font-size: 13px;
    }

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

    .problem-card {
        display: grid;
        grid-template-columns: 48px 1fr;
        grid-template-rows: auto auto;
        gap: 4px 16px;
        align-items: center;
        text-align: left;
        padding: 16px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }

    .problem-icon {
        margin: 0;
        width: 48px;
        height: 48px;
        font-size: 20px;
        grid-row: span 2;
        align-self: center;
    }

    .problem-card h3 {
        font-size: 15px;
        margin-bottom: 0;
        align-self: end;
    }

    .problem-card p {
        font-size: 13px;
        line-height: 1.5;
        align-self: start;
    }

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

    .process-gallery {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 24px;
    }

    .process-gallery-item img {
        height: 200px;
    }

    .process-step {
        display: grid;
        grid-template-columns: 48px 1fr;
        grid-template-rows: auto auto;
        gap: 4px 16px;
        align-items: center;
        text-align: left;
        padding: 16px;
        background: rgba(255,255,255,0.05);
        border-radius: 10px;
    }

    .process-num {
        margin: 0;
        width: 48px;
        height: 48px;
        font-size: 20px;
        grid-row: span 2;
        align-self: center;
    }

    .process-step h3 {
        font-size: 15px;
        margin-bottom: 0;
        align-self: end;
    }

    .process-step p {
        font-size: 13px;
        align-self: start;
    }

    .about-image {
        height: 200px;
    }

    .about-list li {
        padding: 12px 0;
        gap: 12px;
    }

    .about-icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .about-list h4 {
        font-size: 14px;
    }

    .about-list p {
        font-size: 12px;
    }

    .areas-grid {
        gap: 8px;
        justify-content: flex-start;
    }

    .area-tag {
        padding: 8px 12px;
        font-size: 12px;
    }

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

    .faq-answer p {
        padding: 0 16px 14px;
        font-size: 13px;
    }

    .contact-methods {
        gap: 10px;
    }

    .contact-method {
        padding: 12px;
    }

    .contact-method-icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .contact-method strong {
        font-size: 13px;
    }

    .contact-method span {
        font-size: 13px;
    }

    .cta-banner {
        padding: 28px 0;
    }

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

    .cta-content p {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .footer {
        padding: 36px 0 16px;
    }

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

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand img {
        width: auto;
        height: 100px;
        background: var(--white);
        padding: 10px;
        border-radius: 10px;
        margin-bottom: 12px;
    }

    .footer-brand p {
        font-size: 13px;
    }

    .footer-col h4 {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .footer-col li {
        margin-bottom: 6px;
    }

    .footer-col a {
        font-size: 13px;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center;
        padding-top: 14px;
    }

    .footer-bottom p {
        font-size: 11px;
    }

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

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

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 14px;
    }
}

html {
    overflow-x: clip;
}

body {
    overflow-x: hidden;
    max-width: 100vw;
}

#contact-form {
    max-width: 100%;
    overflow: hidden;
}

#contact-form .g-recaptcha {
    transform-origin: left center;
    max-width: 100%;
}

@media (max-width: 400px) {
    #contact-form .g-recaptcha {
        transform: scale(0.85);
    }
}

@media (max-width: 340px) {
    #contact-form .g-recaptcha {
        transform: scale(0.75);
    }
}

@media (max-width: 480px) {
    .topbar a {
        padding: 12px 16px;
    }

    .topbar a::before {
        content: 'Gratis konsultation t.o.m. 28 mars →';
        font-size: 13px;
    }

    .header {
        top: 45px;
    }

    .header.scrolled {
        top: 45px;
    }

    .nav {
        top: 70px;
    }

    .hero {
        padding: 130px 0 20px;
    }

    .problems-grid,
    .process-grid {
        gap: 10px;
    }

    .problem-card,
    .process-step {
        padding: 14px 12px;
        grid-template-columns: 42px 1fr;
        gap: 4px 12px;
    }

    .problem-icon,
    .process-num {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .problem-card h3,
    .process-step h3 {
        font-size: 14px;
    }

    .problem-card p,
    .process-step p {
        font-size: 12px;
    }

    .hero-title {
        font-size: 22px;
    }

    .hero-text {
        font-size: 13px;
    }

    .hero-image {
        height: 160px;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 14px;
    }

    .hero-stat-value {
        font-size: 18px;
    }

    .hero-stat-label {
        font-size: 10px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }

    .btn-lg {
        width: 100%;
        padding: 14px 20px;
        font-size: 14px;
    }

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

    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6px 12px;
    }

    .trust-item span {
        font-size: 11px;
    }

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