:root {
    --primary: #1B2838;
    --primary-light: #2A3B4F;
    --accent: #C75B39;
    --accent-dark: #A84B2E;
    --accent-light: #D4735A;
    --cream: #F5F0E8;
    --white: #FFFFFF;
    --dark-text: #1B2838;
    --medium-text: #5A6270;
    --light-text: #8B919A;
    --border: #E2DDD5;
    --footer-bg: #0F1923;
    --radius: 4px;
    --radius-lg: 4px;
    --shadow: 0 4px 20px rgba(27, 40, 56, 0.08);
    --shadow-lg: 0 10px 40px rgba(27, 40, 56, 0.12);
    --shadow-warm: 0 6px 24px rgba(199, 91, 57, 0.1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--dark-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
    max-width: 100vw;
}

.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-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    line-height: 1.25;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.02em;
}

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

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

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

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

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

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

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

.btn-full {
    width: 100%;
}

.section {
    padding: 80px 0;
}

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

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

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

.section-label {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 12px;
}

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

.section-title {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--dark-text);
}

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

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

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

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--primary);
    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;
    font-family: 'DM Sans', sans-serif;
}

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

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

.topbar a:hover {
    color: var(--accent-light);
}

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

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

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

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

.logo img {
    height: 70px;
    width: auto;
    border-radius: var(--radius);
}

.logo-text {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    font-size: 15px;
    color: var(--dark-text);
    display: none;
}

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

.nav-link {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: var(--medium-text);
    position: relative;
    letter-spacing: 0.01em;
}

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

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

.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-text);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
}

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

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

.hero {
    padding: 150px 0 60px;
    background: var(--cream);
    position: relative;
}


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

.hero-label {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius);
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.15;
    color: var(--dark-text);
}

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

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

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

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

.hero-stat {
    position: relative;
    padding-left: 16px;
}

.hero-stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.hero-stat-value {
    display: block;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 30px;
    font-weight: 400;
    color: var(--dark-text);
}

.hero-stat-label {
    font-size: 13px;
    color: var(--medium-text);
    letter-spacing: 0.01em;
}

.hero-visual {
    position: relative;
}

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

.hero-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--accent);
    color: var(--dark-text);
    padding: 14px 18px;
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(199, 91, 57, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-badge-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
}

.hero-badge-text strong {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--white);
}

.hero-badge-text span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

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

.trust {
    background: var(--primary);
    padding: 20px 0;
    position: relative;
    z-index: 1;
    border-top: 3px solid var(--accent);
}

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

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

.trust-item i {
    color: var(--accent);
    font-size: 16px;
}

.trust-item span {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.25s ease;
}

.service-card:nth-child(even) {
    transform: translateY(20px);
}

.service-card:hover {
    box-shadow: var(--shadow-warm);
    transform: translateY(-2px);
}

.service-card:nth-child(even):hover {
    transform: translateY(18px);
}

.service-icon {
    width: 52px;
    height: 52px;
    background: var(--cream);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--accent);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.service-card > p {
    color: var(--medium-text);
    font-size: 14px;
    margin-bottom: 18px;
    line-height: 1.7;
}

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

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    font-size: 14px;
    color: var(--medium-text);
}

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

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

.problem-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.25s ease;
}

.problem-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: var(--cream);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 24px;
    color: var(--medium-text);
    transition: all 0.25s ease;
}

.problem-card:hover .problem-icon {
    background: var(--accent);
    color: var(--white);
}

.problem-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
    color: var(--dark-text);
}

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

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

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

.process-num {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 24px;
    font-weight: 400;
    margin: 0 auto 18px;
    box-shadow: 0 4px 16px rgba(199, 91, 57, 0.3);
}

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

.process-step p {
    font-size: 14px;
    color: var(--light-text);
    line-height: 1.7;
}

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

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

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

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

.process-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(15, 25, 35, 0.8));
    color: var(--white);
    padding: 28px 16px 14px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

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

.about-image-wrap {
    position: relative;
}

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

.about-content .section-label {
    text-align: left;
}

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

.about-content > p {
    color: var(--medium-text);
    margin-bottom: 28px;
    line-height: 1.8;
}

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

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

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

.about-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    flex-shrink: 0;
}

.about-list h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--dark-text);
}

.about-list p {
    font-size: 14px;
    color: var(--medium-text);
    line-height: 1.6;
}

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

.area-tag {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 10px 22px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    color: var(--dark-text);
}

.area-tag:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: var(--shadow-warm);
}

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

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

.review-card {
    border: none;
    border-left: 4px solid var(--accent);
    background: var(--cream);
    border-radius: var(--radius);
    padding: 28px;
    transition: all 0.25s ease;
}

.review-card:hover {
    box-shadow: var(--shadow-warm);
    transform: translateY(-2px);
}

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

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

.review-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.review-author strong {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--dark-text);
}

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

.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(--border);
    transition: border-color 0.2s ease;
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-question {
    width: 100%;
    padding: 20px 22px;
    background: none;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: var(--dark-text);
    transition: color 0.2s ease;
}

.faq-question span {
    flex: 1;
}

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

.faq-question i {
    color: var(--accent);
    font-size: 14px;
    transition: transform 0.25s ease;
}

.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 22px 20px;
    color: var(--medium-text);
    font-size: 14px;
    line-height: 1.7;
}

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

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

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

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

.contact-info > p {
    color: var(--medium-text);
    margin-bottom: 28px;
    line-height: 1.7;
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    background: var(--cream);
    border-radius: var(--radius);
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.contact-method:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-warm);
}

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

.contact-method strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
    color: var(--dark-text);
}

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

.contact-form-wrap {
    background: var(--cream);
    padding: 36px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-text);
    letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: var(--white);
    color: var(--dark-text);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(199, 91, 57, 0.1);
}

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

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

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

.cta-banner {
    background: var(--accent);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.3);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--white);
}

.cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}

.footer {
    background: var(--footer-bg);
    color: var(--white);
    padding: 56px 0 24px;
    border-top: 3px solid var(--accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
    height: 80px;
    width: auto;
    margin-bottom: 14px;
    background: rgba(255,255,255,0.9);
    padding: 8px 12px;
    border-radius: 8px;
}

.footer-brand p {
    color: var(--light-text);
    font-size: 14px;
    line-height: 1.7;
}

.footer-col h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 18px;
    color: var(--white);
}

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

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

.footer-col a {
    color: var(--light-text);
    font-size: 14px;
    transition: color 0.2s ease;
}

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

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

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

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

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

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

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

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
    filter: brightness(1.05);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 60%, rgba(15, 25, 35, 0.45));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover::after {
    opacity: 1;
}

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

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

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

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

    .hero-image {
        height: 300px;
    }

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

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

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

    .service-card:nth-child(even) {
        transform: none;
    }

    .service-card:nth-child(even):hover {
        transform: translateY(-2px);
    }

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

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

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

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

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

    .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: 36px;
    }

    .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;
    }

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

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

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

    .topbar span {
        display: none;
    }

    .topbar a {
        display: block;
        width: 100%;
        text-align: center;
        font-size: 0;
        background: var(--accent);
        padding: 14px 20px;
    }

    .topbar a:active {
        opacity: 0.9;
    }

    .topbar a::before {
        content: 'Boka din kostnadsfria takinspektion nu \2192';
        font-size: 14px;
        font-weight: 700;
        color: var(--white);
    }

    .header {
        top: 49px;
    }

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

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

    .logo img {
        height: 55px;
    }

    .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(27, 40, 56, 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(--border);
        width: 100%;
        font-size: 15px;
    }

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

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

    .nav-link-mobile {
        display: block;
        background: var(--accent);
        color: var(--white);
        font-weight: 700;
        text-align: center;
        padding: 14px 24px;
        border-radius: var(--radius);
        margin-top: 8px;
        border-bottom: none;
    }

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

    .header-cta {
        display: none;
    }

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

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

    .hero-grid {
        gap: 24px;
    }

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

    .hero-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

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

    .hero-image {
        height: 220px;
    }

    .hero-badge {
        position: static;
        margin: 12px auto 0;
        padding: 10px 16px;
        gap: 8px;
        justify-content: center;
        display: inline-flex;
    }

    .hero-badge-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

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

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

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

    .hero-badge-arrow {
        display: block;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.7);
        margin-left: 4px;
    }

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

    .hero-stats {
        gap: 20px;
    }

    .hero-stat {
        padding-left: 12px;
    }

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

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

    .trust {
        padding: 12px 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: 44px 0;
    }

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

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

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

    .service-card {
        padding: 20px;
    }

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

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

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

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

    .problem-card {
        display: grid;
        grid-template-columns: 52px 1fr;
        grid-template-rows: auto auto;
        gap: 4px 16px;
        align-items: center;
        text-align: left;
        padding: 18px;
    }

    .problem-icon {
        margin: 0;
        width: 52px;
        height: 52px;
        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: 52px 1fr;
        grid-template-rows: auto auto;
        gap: 4px 16px;
        align-items: center;
        text-align: left;
        padding: 18px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: var(--radius);
    }

    .process-num {
        margin: 0;
        width: 52px;
        height: 52px;
        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: 220px;
    }

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

    .about-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

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

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

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

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

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

    .review-card {
        padding: 22px;
    }

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

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

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

    .contact-methods {
        gap: 10px;
    }

    .contact-method {
        padding: 14px;
    }

    .contact-method-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

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

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

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

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

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

    .footer {
        padding: 40px 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: var(--radius);
        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: 22px;
    }

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

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

@media (max-width: 640px) {
    section, section > div, section > div > div, section > div > div > div {
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: clip;
    }
    .contact-grid > div, .grid > div {
        min-width: 0;
        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: 'Boka gratis takinspektion \2192';
        font-size: 13px;
    }

    .header {
        top: 45px;
    }

    .header.scrolled {
        top: 45px;
    }

    .nav {
        top: 70px;
    }

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

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

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

    .problem-icon,
    .process-num {
        width: 44px;
        height: 44px;
        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: 24px;
    }

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

    .hero-image {
        height: 170px;
    }

    .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: 21px;
    }

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

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

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

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