:root {
    --primary: #3A2E28;
    --primary-light: #5A4A42;
    --accent: #7B9E6F;
    --accent-dark: #638256;
    --accent-light: #96B88A;
    --accent-btn: #567548;
    --bg-light: #FAF7F2;
    --bg-alt: #F0EBE3;
    --bg-card: #FFFFFF;
    --bg-dark: #3A2E28;
    --bg-footer: #231B17;
    --text-dark: #2D2D2D;
    --text-medium: #5C5C5C;
    --text-light: #8A8A8A;
    --text-white: #FFFFFF;
    --border: #E5DDD2;
    --border-light: #EDE8E0;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --shadow: 0 4px 24px rgba(58,46,40,0.06);
    --shadow-lg: 0 12px 40px rgba(58,46,40,0.10);
    --shadow-card: 0 2px 16px rgba(58,46,40,0.05);
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

body {
    font-family: var(--font-body);
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
    -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: var(--primary);
    transition: color 0.3s ease;
}

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

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}

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

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(86,117,72,0.3);
}

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

.btn-dark:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(58,46,40,0.25);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--text-white);
    transform: translateY(-2px);
}

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

.btn-full {
    width: 100%;
}

.section {
    padding: 80px 0;
}

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

.section + .section-alt::before,
.section-alt + .section::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent);
    margin: 0 auto;
    position: relative;
    top: -1px;
}

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

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--accent);
}

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

.section-dark .section-label::before,
.section-dark .section-label::after {
    background: var(--accent-light);
}

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

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

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

.section-dark .section-text {
    color: rgba(255,255,255,0.7);
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--primary);
    color: var(--text-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(--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);
    text-decoration: underline;
}

.header {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250,247,242,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
}

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

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

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

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

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--primary);
    display: none;
}

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

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

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

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

.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(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

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

.hero {
    padding: 160px 0 60px;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-alt) 50%, var(--bg-light) 100%);
}

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

.hero-label {
    display: inline-block;
    background: var(--accent-btn);
    color: var(--text-white);
    padding: 7px 16px;
    border-radius: var(--radius-xl);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

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

.hero-title span {
    color: var(--accent-dark);
    font-style: italic;
}

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

.hero-btns {
    display: flex;
    gap: 14px;
    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: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.hero-stat:first-child {
    padding-left: 0;
}

.hero-stat:first-child::before {
    display: none;
}

.hero-stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    color: var(--primary);
}

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

.hero-visual {
    position: relative;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border: 3px solid var(--accent);
    border-radius: var(--radius-lg);
    z-index: 0;
    pointer-events: none;
}

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

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

.hero-badge-icon {
    width: 40px;
    height: 40px;
    background: rgba(58,46,40,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-white);
}

.hero-badge-text strong {
    display: block;
    font-size: 15px;
    color: var(--text-white);
}

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

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

.trust {
    background: var(--bg-light);
    padding: 20px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.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(--text-dark);
}

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

.trust-item span {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-medium);
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    transition: width 0.4s ease;
}

.service-card:hover::after {
    width: 100%;
}

.service-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--accent-btn) 0%, var(--accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-white);
    margin-bottom: 20px;
}

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

.service-card > p {
    color: var(--text-medium);
    font-size: 15px;
    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(--text-medium);
}

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

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

.problem-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

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

.problem-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 22px;
    color: var(--primary);
    transition: all 0.3s ease;
}

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

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

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

.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-btn);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 18px;
}

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

.process-step p {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
}

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

.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.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(35,27,23,0.8));
    color: var(--text-white);
    padding: 28px 18px 16px;
    font-size: 13px;
    font-weight: 600;
}

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

.about-image-wrap {
    position: relative;
    z-index: 1;
}

.about-image-wrap::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: -12px;
    width: 60%;
    height: 60%;
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
    z-index: -1;
}

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

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

.about-content .section-label::before {
    display: none;
}

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

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

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

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

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

.about-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--accent-btn) 0%, var(--accent-dark) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    color: var(--text-white);
}

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

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

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

.area-tag {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-medium);
    transition: all 0.3s ease;
}

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

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

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    position: relative;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 0 0 4px 4px;
}

.review-card::after {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 60px;
    color: var(--accent);
    opacity: 0.15;
    line-height: 1;
    pointer-events: none;
}

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

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

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

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

.review-author strong {
    font-size: 15px;
    color: var(--primary);
    font-family: var(--font-heading);
}

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

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

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

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.5s 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(58,46,40,0.25) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

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

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    border-left: 3px solid var(--accent);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-card);
}

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

.faq-question span {
    flex: 1;
}

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

.faq-question i {
    color: var(--accent);
    font-size: 14px;
    transition: transform 0.3s 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(--text-medium);
    font-size: 14px;
    line-height: 1.8;
}

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

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

.contact-info .section-label {
    text-align: left;
    justify-content: flex-start;
}

.contact-info .section-label::before {
    display: none;
}

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

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

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

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

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

.contact-method-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--accent-btn) 0%, var(--accent-dark) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-white);
}

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

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

.contact-form-wrap {
    background: var(--bg-card);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
}

.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(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark);
    background: var(--bg-light);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--bg-card);
    box-shadow: 0 0 0 3px rgba(123,158,111,0.15);
}

.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(--text-light);
    margin-top: 8px;
}

.cta-banner {
    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: 30px;
    margin-bottom: 10px;
    color: var(--text-white);
}

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

.footer {
    background: var(--bg-footer);
    color: var(--text-white);
    padding: 56px 0 24px;
}

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

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

.footer-brand p {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    line-height: 1.7;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

.footer-col h4::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--accent);
    margin-top: 8px;
}

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

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

.footer-col a {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
}

.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: rgba(255,255,255,0.55);
    font-size: 14px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

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

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

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

    .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: flex;
        justify-content: center;
    }

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

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

    .contact-info .section-label {
        text-align: center;
        display: flex;
        justify-content: center;
        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;
    }

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

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

    .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, var(--accent-btn) 0%, var(--accent-dark) 100%);
        padding: 14px 20px;
    }

    .topbar a:active {
        opacity: 0.9;
    }

    .topbar a::before {
        content: 'Gratis konsultation i M\00f6lndal \2192';
        font-size: 14px;
        font-weight: 700;
        color: var(--text-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(--bg-light);
        flex-direction: column;
        padding: 0 20px;
        gap: 0;
        box-shadow: 0 10px 30px rgba(58,46,40,0.12);
        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-light);
        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, var(--accent-btn) 0%, var(--accent-dark) 100%);
        color: var(--text-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(--text-white);
    }

    .header-cta {
        display: none;
    }

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

    .hero {
        padding: 150px 0 28px;
    }

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

    .hero-image {
        height: 220px;
        border-radius: var(--radius);
    }

    .hero-badge {
        position: static;
        margin: 14px auto 0;
        padding: 10px 18px;
        gap: 10px;
        justify-content: center;
        border-radius: 50px;
    }

    .hero-badge-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
        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;
    }

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

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

    .hero-stats {
        gap: 20px;
    }

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

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

    .section-label::before,
    .section-label::after {
        width: 16px;
    }

    .service-card {
        padding: 22px;
    }

    .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: 50px 1fr;
        grid-template-rows: auto auto;
        gap: 4px 16px;
        align-items: center;
        text-align: left;
        padding: 18px;
    }

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

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

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

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

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

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

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

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

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

    .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: rgba(255,255,255,0.9);
        padding: 8px 12px;
        border-radius: 8px;
        margin-bottom: 12px;
    }

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

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

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

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

    .footer-col h4::after {
        margin: 8px auto 0;
    }

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

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

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

    .review-card {
        padding: 24px;
    }

    .review-card::before {
        left: 16px;
        right: 16px;
    }

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

@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 i M\00f6lndal \2192';
        font-size: 13px;
    }

    .header {
        top: 45px;
    }

    .header.scrolled {
        top: 45px;
    }

    .nav {
        top: 70px;
    }

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

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

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

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