@charset "UTF-8";

:root {
    --gold: #f5b52e;
    --gold-deep: #ed9400;
    --gold-soft: #ffd873;
    --cream: #fff8e7;
    --cream-2: #fff3cf;
    --ink: #4c4741;
    --muted: #756f68;
    --green: #61bf2b;
    --line: #f7cf74;
    --white: #ffffff;
    --shadow: 0 12px 34px rgba(177, 121, 19, .13);
    --container: 1600px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    margin: 0;
    overflow-x: hidden;
    max-width: 100%;
    color: var(--ink);
    font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", Arial, sans-serif;
    background: #fff;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

main {
    overflow: hidden;
}

.container {
    width: min(calc(100% - 80px), var(--container));
    margin: 0 auto;
}

.section {
    position: relative;
    padding: 90px 0;
}

.section-heading {
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading h2 {
    margin: 0;
    color: #4b4742;
    font-size: clamp(28px, 2.1vw, 42px);
    letter-spacing: .07em;
    line-height: 1.25;
}

.section-heading .en {
    display: block;
    margin-top: 3px;
    color: var(--gold-deep);
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .12em;
}

.section-heading p {
    margin: 17px auto 0;
    max-width: 900px;
    color: var(--muted);
    font-size: 17px;
}

.btn {
    display: inline-flex;
    min-height: 47px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 30px;
    border: 0;
    border-radius: 999px;
    font-weight: 700;
    line-height: 1;
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 9px 18px rgba(196, 122, 0, .18);
}

.btn-gold {
    color: #fff;
    background: linear-gradient(90deg, #f5a000, #ffbb24);
}

.btn-line {
    margin-top: 22px;
    color: #fff;
    background: linear-gradient(90deg, #4eb91a, #7bd13b);
}

.line-bubble {
    display: inline-flex;
    width: 34px;
    height: 24px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #58bd24;
    background: #fff;
    font-size: 9px;
    font-weight: 800;
}

/* Header */
.site-header {
    position: absolute;
    z-index: 50;
    top: 35px;
    left: 0;
    width: 100%;
}

.header-inner {
    width: min(calc(100% - 170px), 1660px);
    margin: 0 auto;
}

.brand {
    display: block;
    width: 257px;
    margin: 0 auto 22px;
}

.desktop-nav {
    display: flex;
    height: 62px;
    align-items: center;
    justify-content: center;
    gap: clamp(28px, 4vw, 70px);
    padding: 0 48px;
    border-radius: 40px;
    color: #fff;
    background: linear-gradient(90deg, #ffd766 0%, #e89406 17%, #f1a00d 50%, #e89406 83%, #ffd766 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.5);
}

.desktop-nav > a,
.desktop-nav .nav-dropdown > button {
    display: inline-flex;
    height: 100%;
    align-items: center;
    gap: 7px;
    padding: 0;
    border: 0;
    color: #fff;
    background: transparent;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    text-shadow: 0 1px 1px rgba(150, 80, 0, .2);
}

.desktop-nav > a::after,
.desktop-nav .nav-dropdown > button::after {
    position: absolute;
    right: 0;
    bottom: 10px;
    left: 0;
    height: 2px;
    content: "";
    opacity: 0;
    background: #fff;
    transform: scaleX(.4);
    transition: .2s;
}

.desktop-nav > a,
.desktop-nav .nav-dropdown > button {
    position: relative;
}

.desktop-nav > a:hover::after,
.desktop-nav > a.active::after,
.desktop-nav .nav-dropdown > button:hover::after,
.desktop-nav .nav-dropdown > button.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.desktop-nav img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.nav-dropdown {
    position: relative;
    height: 100%;
}

.dropdown-menu {
    position: absolute;
    z-index: 5;
    top: calc(100% - 4px);
    left: 50%;
    width: 190px;
    overflow: hidden;
    border: 1px solid #f4c056;
    border-radius: 10px;
    opacity: 0;
    background: #fff;
    box-shadow: var(--shadow);
    transform: translate(-50%, 12px);
    visibility: hidden;
    transition: .2s ease;
}

.dropdown-menu a {
    display: block;
    padding: 12px 18px;
    border-bottom: 1px solid #f5e4bf;
    color: #4f4a44;
    background: #fff;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
}

.dropdown-menu a:last-child {
    border-bottom: 0;
}

.dropdown-menu a:hover {
    color: #d97900;
    background: #fff8e8;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    transform: translate(-50%, 0);
    visibility: visible;
}

.mobile-menu-toggle,
.mobile-drawer,
.mobile-menu-overlay {
    display: none;
}

/* Hero */
.hero {
    position: relative;
    height: 800px;
    overflow: hidden;
    background: #fff8e8;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url("../images/00-hp/banner_bg.jpg") center top / cover no-repeat;
}

.hero-slides,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    z-index: 0;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity .8s ease, visibility 0s linear .8s;
}

.hero-slide.is-active {
    z-index: 1;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity .8s ease;
}

.hero-container {
    display: grid;
    width: min(calc(100% - 120px), 1680px);
    height: 100%;
    margin: 0 auto;
    padding-top: 175px;
    grid-template-columns: 54% 46%;
    align-items: center;
}

.hero-visual {
    align-self: end;
    padding-bottom: 70px;
}

.hero-visual img {
    width: min(100%, 890px);
    margin-left: -10px;
}

.hero-copy {
    align-self: center;
    padding: 70px 0 45px 20px;
}

.hero-copy h1 {
    margin: 0 0 12px;
    color: #4c4640;
    font-size: clamp(34px, 2.6vw, 50px);
    font-weight: 800;
    letter-spacing: .03em;
    line-height: 1.32;
}

.hero-copy p {
    margin: 0;
    color: #5e5750;
    font-size: clamp(19px, 1.45vw, 28px);
}

.hero-copy strong {
    display: block;
    margin-top: 3px;
    color: #ee8900;
    font-size: clamp(18px, 1.35vw, 25px);
}

.hero-dots {
    position: absolute;
    z-index: 4;
    right: 7%;
    bottom: 90px;
    display: flex;
    gap: 10px;
}

.hero-dots button {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 1px solid #e8a020;
    border-radius: 50%;
    background: transparent;
}

.hero-dots button.active {
    background: #ec9a0a;
}

.desktop-line-tab {
    position: fixed;
    z-index: 45;
    top: 42%;
    left: 24px;
    width: 64px;
    filter: drop-shadow(0 6px 8px rgba(75, 130, 27, .18));
    opacity: 1;
    visibility: visible;
    transition: opacity .25s ease, visibility .25s ease;
}

.desktop-line-tab.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.desktop-line-tab img {
    width: 100%;
}

/* Homepage service */
.services-section {
    padding: 74px 0 95px;
    background: linear-gradient(#fff8e8 0, #fffdf8 34%, #fff 100%);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 28px;
}

.service-card {
    position: relative;
    min-height: 342px;
    padding: 35px 24px 25px;
    border: 2px solid #fae0a7;
    border-radius: 20px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 7px 18px rgba(174, 112, 0, .07);
    text-align: center;
    transition: .24s ease;
}

.service-card:hover {
    border-color: #f4b82f;
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.service-card img {
    width: 112px;
    height: 112px;
    margin: 0 auto 18px;
    object-fit: contain;
}

.service-card h3 {
    margin: 0 0 13px;
    color: #494540;
    font-size: 22px;
}

.service-card p {
    min-height: 75px;
    margin: 0 0 18px;
    color: #756f68;
    font-size: 15px;
    line-height: 1.7;
}

.service-card .btn {
    min-height: 39px;
    padding: 8px 24px;
    font-size: 14px;
}

/* About teaser */
.home-about {
    min-height: 650px;
    padding: 90px 0 55px;
    background: #fff;
}

.home-about::after {
    position: absolute;
    right: -120px;
    bottom: -70px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    content: "";
    opacity: .35;
    background: radial-gradient(circle, #ffd451 0 2px, transparent 3px) 0 0 / 20px 20px;
}

.home-about-grid {
    display: grid;
    grid-template-columns: 51% 49%;
    align-items: center;
}

.home-about-copy {
    padding-left: 45px;
}

.home-about-copy h2 {
    margin: 0 0 3px;
    color: #4d4944;
    font-size: 30px;
}

.home-about-copy h3 {
    margin: 0 0 18px;
    color: #ed8e00;
    font-size: 23px;
}

.home-about-copy p {
    max-width: 760px;
    color: #68625c;
    font-size: 16px;
}

.trust-row {
    display: flex;
    gap: 55px;
    margin: 36px 0 30px;
}

.trust-item {
    min-width: 118px;
    color: #ec8b00;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.trust-item img {
    width: 70px;
    height: 70px;
    margin: 0 auto 10px;
    object-fit: contain;
}

.home-about-visual img {
    width: min(100%, 760px);
    margin: 0 auto;
    display: block;
}

@media (min-width: 1560px) {
    .home-about-visual img {
        width: min(calc(48.75vw - 36px), 1000px);
        max-width: none;
    }
}

/* Cases preview and page */
.cases-preview {
    padding: 85px 0 95px;
    background: #fff;
}

.cases-preview::before,
.cases-preview::after {
    position: absolute;
    bottom: 0;
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
}

.cases-preview::before {
    left: 0;
    width: 350px;
    height: 680px;
    background-image: url("../images/00-hp/case_bg_l.png");
    background-position: left bottom;
}

.cases-preview::after {
    right: 0;
    width: 430px;
    height: 848px;
    background-image: url("../images/00-hp/case_bg_r.png");
    background-position: right bottom;
}

.case-heading-deco {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
}

.case-heading-deco img {
    width: 210px;
}

.case-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 52px;
}

.case-card {
    padding: 0 34px 34px;
    border: 3px solid #f6c452;
    border-radius: 20px;
    background: rgba(255,255,255,.96);
}

.case-card h3 {
    margin: 0;
    padding: 23px 8px 18px;
    border-bottom: 1px solid #ecd79f;
    color: #4b4742;
    font-size: 20px;
    text-align: center;
}

.case-card h3::before {
    display: inline-flex;
    width: 28px;
    height: 28px;
    margin-right: 8px;
    align-items: center;
    justify-content: center;
    border: 3px solid #f2af15;
    border-radius: 50%;
    content: "$";
    color: #f2a300;
    font-family: Arial, sans-serif;
    font-size: 15px;
    vertical-align: -2px;
}

.case-card .amount {
    color: #f39a00;
    font-size: 1.2em;
}

.case-card p {
    margin: 24px 0 0;
    color: #68625c;
    font-size: 15px;
    line-height: 2;
}

.cases-page {
    padding: 80px 0 120px;
}

.cases-intro {
    display: grid;
    max-width: 1080px;
    margin: 0 auto 55px;
    grid-template-columns: 310px 1fr;
    align-items: center;
}

.cases-intro img {
    width: 280px;
}

.cases-intro p {
    color: #6a645f;
    font-size: 17px;
}

.cases-count {
    margin: 0 0 18px;
    color: #9a9186;
    font-size: 14px;
    text-align: right;
}

/* Home Q&A teaser */
.home-faq-teaser {
    padding: 90px 0;
    background:
        radial-gradient(circle at 92% 35%, rgba(247,190,68,.18) 0 3px, transparent 4px) 0 0/18px 18px,
        #fff;
}

.home-faq-grid {
    display: grid;
    grid-template-columns: 1fr 410px;
    gap: 80px;
    align-items: center;
}

.home-faq-copy h2 {
    margin: 0 0 15px;
    font-size: 30px;
}

.home-faq-copy p {
    color: #68625c;
    font-size: 16px;
    line-height: 2;
}

.home-faq-actions {
    display: flex;
    gap: 18px;
    margin-top: 28px;
}

.home-faq-visual {
    position: relative;
    min-height: 300px;
}

.home-faq-visual::before {
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    content: "";
    background: linear-gradient(135deg, #fff8de, #ffd775);
}

.home-faq-visual img {
    position: relative;
    z-index: 2;
    width: 330px;
    margin: 0 auto;
}

/* Process strip */
.process-strip {
    position: relative;
    min-height: 630px;
    padding: 95px 0 105px;
    background: url("../images/00-hp/step_bg.jpg") center / cover no-repeat;
}

.process-strip::after {
    position: absolute;
    right: -8%;
    bottom: -60px;
    width: 56%;
    height: 110px;
    border-radius: 50% 0 0 0 / 100% 0 0 0;
    content: "";
    background: rgba(255,255,255,.45);
}

.process-strip-grid {
    display: grid;
    grid-template-columns: 35% 65%;
    align-items: end;
}

.process-strip-person img {
    width: min(100%, 620px);
    margin-left: -70px;
}

.process-strip-content h2 {
    margin: 0 0 8px;
    color: #4d4944;
    font-size: 31px;
}

.process-strip-content h2 strong {
    color: #f18a00;
}

.process-strip-content > p {
    margin: 0 0 35px;
    color: #655e58;
}

.process-strip-note {
    margin-top: 28px;
    text-align: center;
}

.process-strip-note p {
    margin: 0 0 8px;
    color: #655e58;
    font-size: 15px;
}

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

.process-step-card {
    position: relative;
    min-height: 205px;
    padding: 38px 15px 18px;
    border: 2px solid #f3a817;
    border-radius: 20px;
    background: rgba(255,255,255,.88);
    text-align: center;
}

.process-step-card .number {
    position: absolute;
    top: -18px;
    left: 50%;
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 4px solid #fff;
    border-radius: 50%;
    color: #fff;
    background: #f2b436;
    font-size: 20px;
    font-weight: 800;
    transform: translateX(-50%);
}

.process-step-card img {
    width: 66px;
    height: 66px;
    margin: 0 auto 12px;
    object-fit: contain;
}

.process-step-card h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.55;
}

/* Shared inner page */
.inner-title {
    padding: 62px 0 0;
}

.service-detail {
    position: relative;
    padding: 60px 0 100px;
}

.service-detail::before {
    position: absolute;
    top: 180px;
    left: 0;
    width: 220px;
    height: 410px;
    content: "";
    background: url("../images/02/bg_point.png") left top / 180px auto no-repeat;
    opacity: .75;
}

.service-intro-grid {
    display: grid;
    grid-template-columns: 43% 57%;
    align-items: center;
    gap: 35px;
}

.service-main-image img {
    width: min(100%, 650px);
    margin: 0 auto;
}

.service-copy .lead {
    margin: 0 0 16px;
    color: #ef8e00;
    font-size: 22px;
    font-weight: 800;
}

.service-copy > p {
    color: #655f59;
    font-size: 16px;
}

.info-block {
    margin-top: 24px;
}

.info-block h3 {
    display: flex;
    height: 46px;
    margin: 0 0 13px;
    align-items: center;
    gap: 10px;
    padding: 0 17px;
    color: #4f4943;
    background: linear-gradient(90deg, #fff1ca, rgba(255,248,229,.15));
    font-size: 21px;
}

.info-block h3 img {
    width: 29px;
    height: 29px;
}

.check-list,
.document-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li,
.document-list li {
    margin: 7px 0;
    color: #625d57;
}

.check-list li::before {
    margin-right: 8px;
    content: "✓";
    color: #f29b00;
    font-weight: 800;
}

.document-list {
    counter-reset: docs;
}

.document-list li {
    counter-increment: docs;
}

.document-list li::before {
    margin-right: 5px;
    content: counter(docs) ".";
}

.service-process-band {
    position: relative;
    padding: 85px 0 55px;
    background:
        linear-gradient(90deg, rgba(255,255,255,.88), rgba(255,246,206,.72)),
        url("../images/02/sun-shines-through-clouds.jpg") center / cover no-repeat;
}

.service-process-content {
    width: 70%;
}

.service-process-content .process-steps {
    margin-top: 35px;
}

.service-process-person {
    position: absolute;
    right: 4%;
    bottom: -5px;
    width: 33%;
    max-width: 620px;
}

.more-services {
    padding: 75px 0 120px;
    background:
        radial-gradient(circle, rgba(247,188,55,.24) 0 2px, transparent 3px) 0 0/25px 25px,
        #fff;
}

.more-services .service-grid {
    gap: 22px;
}

.more-services .service-card {
    min-height: 315px;
}

/* About page */
.about-main {
    position: relative;
    padding: 70px 0 50px;
}

.about-main::after {
    position: absolute;
    right: 4%;
    bottom: 10%;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    content: "";
    background: repeating-linear-gradient(135deg, rgba(248,213,115,.23) 0 7px, transparent 7px 20px);
    z-index: -1;
}

.about-grid {
    display: grid;
    grid-template-columns: 54% 46%;
    gap: 65px;
    align-items: center;
}

.about-copy .en-title {
    margin: 0 0 15px;
    color: #f7c95e;
    font-family: Arial, sans-serif;
    font-size: clamp(36px, 3.2vw, 62px);
    font-weight: 800;
    letter-spacing: .05em;
}

.about-copy h3 {
    margin: 0 0 15px;
    color: #ee8e00;
    font-size: 24px;
}

.about-copy h4 {
    margin: 28px 0 8px;
    font-size: 22px;
}

.about-copy p {
    color: #66615b;
    font-size: 16px;
}

.about-photo img {
    width: 100%;
}

.about-trust {
    display: flex;
    gap: 42px;
    margin-top: 38px;
}

.about-trust-item {
    display: flex;
    width: 210px;
    height: 210px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 8px solid #f1b02b;
    border-radius: 50%;
    background: #fff;
    text-align: center;
}

.about-trust-item img {
    width: 76px;
    height: 76px;
    margin-bottom: 10px;
    object-fit: contain;
}

.about-trust-item strong {
    color: #ee8e00;
    font-size: 18px;
}

.consult-section {
    padding: 70px 0 95px;
    overflow: hidden;
}

.consult-grid {
    position: relative;
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
}

.consult-photo {
    position: relative;
}

.consult-photo > img:first-child {
    width: min(100%, 620px);
    margin: 0 auto;
}

.consult-deco {
    position: absolute;
    width: 70px;
    pointer-events: none;
}

.consult-deco-right {
    right: -30px;
    bottom: 30px;
    width: 120px;
}

@media (max-width: 980px) {
    .consult-deco {
        display: none;
    }
}

.consult-copy {
    text-align: center;
}

.consult-copy h2 {
    margin: 0 0 14px;
    font-size: 28px;
}

.consult-copy p {
    color: #68625c;
    font-size: 17px;
    line-height: 2;
}

/* Process page */
.process-page {
    position: relative;
    padding: 70px 0 110px;
}

.process-page::before,
.process-page::after {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    content: "";
    opacity: .25;
    background: repeating-linear-gradient(135deg, #e9b538 0 5px, transparent 5px 14px);
}

.process-page::before {
    top: 110px;
    left: -100px;
}

.process-page::after {
    right: -90px;
    bottom: 200px;
}

.process-page .process-steps {
    gap: 45px;
    margin-top: 70px;
}

.process-page .process-step-card {
    min-height: 315px;
    padding: 65px 26px 25px;
    border-radius: 50% 50% 22px 22px / 42% 42% 12% 12%;
    background: #fffaf0;
}

.process-page .process-step-card img {
    width: 82px;
    height: 82px;
}

.process-page .process-step-card p {
    margin: 25px 0 0;
    color: #6b655e;
    font-size: 15px;
    text-align: left;
}

.first-visit {
    display: grid;
    margin-top: 75px;
    grid-template-columns: 38% 62%;
    align-items: center;
}

.first-visit > img {
    width: min(100%, 520px);
    margin: 0 auto;
}

.first-visit-copy h3 {
    display: flex;
    margin: 0 0 20px;
    padding: 9px 18px;
    border-radius: 8px;
    background: #fff1c9;
    font-size: 22px;
    align-items: center;
    justify-content: center;
}

.h3-icon {
    width: 26px;
    height: 26px;
    margin-right: 8px;
    flex-shrink: 0;
}

.numbered-note {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: note;
}

.numbered-note li {
    position: relative;
    margin: 15px 0;
    padding-left: 46px;
    color: #635e57;
}

.numbered-note li::before {
    position: absolute;
    top: 1px;
    left: 0;
    display: flex;
    width: 29px;
    height: 29px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    counter-increment: note;
    content: counter(note);
    color: #fff;
    background: #f0ad20;
    font-weight: 800;
}

.mini-faq {
    margin-top: 35px;
}

.mini-faq h3 {
    display: flex;
    margin-bottom: 18px;
    padding: 9px 18px;
    border-radius: 8px;
    background: #fff1c9;
    align-items: center;
    justify-content: center;
}

.mini-faq p {
    color: #655f58;
}

.process-contact {
    margin-top: 70px;
    text-align: center;
}

.process-contact::before {
    display: block;
    width: 320px;
    height: 14px;
    margin: 0 auto 30px;
    content: "";
    background: url("../images/03/03wave.png") center / contain no-repeat;
}

/* FAQ */
.faq-page {
    position: relative;
    padding: 70px 0 110px;
}

.faq-layout {
    display: grid;
    grid-template-columns: 34% 66%;
    gap: 45px;
    align-items: start;
}

.faq-art {
    position: sticky;
    top: 120px;
}

.faq-art img {
    width: min(100%, 560px);
    margin: 0 auto;
}

.faq-list-intro {
    margin: 0 0 28px;
    color: #6a645e;
    font-size: 17px;
}

.faq-item {
    margin-bottom: 17px;
}

.faq-item h3 {
    position: relative;
    margin: 0;
    padding: 14px 20px 14px 82px;
    color: #4f4a44;
    background: linear-gradient(90deg, #fff2cc, rgba(255,250,239,.15));
    font-size: 19px;
    line-height: 1.55;
}

.faq-item .q-number {
    position: absolute;
    top: 50%;
    left: 0;
    display: flex;
    width: 65px;
    height: 65px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #ffd978, #e99a12);
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 800;
    transform: translateY(-50%);
}

.faq-item p {
    margin: 16px 0 31px;
    padding-left: 80px;
    color: #6b655f;
    font-size: 16px;
    line-height: 2;
}

.faq-consult {
    position: relative;
    display: grid;
    margin-top: 65px;
    grid-template-columns: 1fr 430px;
    align-items: center;
}

.faq-consult > img.faq-consult-deco {
    position: absolute;
    top: 40%;
    left: -110px;
    width: 150px;
    pointer-events: none;
}

@media (max-width: 980px) {
    .faq-consult-deco {
        display: none;
    }
}

.faq-consult-copy {
    text-align: center;
}

.faq-consult-copy::before {
    display: block;
    width: 320px;
    height: 14px;
    margin: 0 auto 35px;
    content: "";
    background: url("../images/05/03wave.png") center / contain no-repeat;
}

.faq-consult-copy h2 {
    font-size: 29px;
}

.faq-consult-copy p {
    color: #68625c;
    font-size: 17px;
}

.faq-consult > img {
    width: 100%;
}

/* footer */
.back-to-top {
    position: fixed;
    z-index: 40;
    right: 45px;
    bottom: 44px;
    width: 58px;
    height: 58px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    opacity: 0;
    background: transparent;
    transform: translateY(15px);
    transition: .25s ease;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.site-footer {
    position: relative;
    min-height: 540px;
    padding: 120px 0 28px;
    color: #4e3d27;
    background: linear-gradient(105deg, #eaa13b, #ffd777 58%, #f0a23b);
}

.footer-curve {
    position: absolute;
    top: -70px;
    left: -5%;
    width: 110%;
    height: 120px;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    background: linear-gradient(105deg, #eaa13b, #ffd777 58%, #f0a23b);
}

.footer-inner {
    position: relative;
    display: grid;
    width: min(calc(100% - 120px), 1640px);
    margin: 0 auto;
    grid-template-columns: 43% 19% 31%;
    gap: 3.5%;
}

.footer-logo {
    width: 300px;
}

.footer-tagline {
    margin: 2px 0 22px;
    font-size: 14px;
    font-weight: 700;
}

.footer-contact-row {
    display: flex;
    gap: 22px;
    align-items: flex-start;
}

.footer-qr {
    flex: 0 0 155px;
}

.footer-qr img {
    width: 155px;
}

.footer-contact-list p {
    display: flex;
    margin: 4px 0;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
}

.footer-contact-list img {
    width: 30px;
    height: 30px;
    margin-right: 5px;
}

.footer-contact-list .visits {
    margin-top: 8px;
}

.footer-links h2,
.footer-notes h2 {
    margin: 0 0 16px;
    padding-bottom: 7px;
    border-bottom: 1px solid rgba(122,81,20,.28);
    font-size: 18px;
}

.footer-links h2 span,
.footer-notes h2 span {
    color: #fff;
}

.footer-links a {
    display: block;
    margin: 8px 0;
    font-size: 15px;
    font-weight: 700;
}

.footer-notes ol {
    margin: 0;
    padding-left: 20px;
    font-size: 13px;
    line-height: 1.85;
}

.footer-facebook {
    position: absolute;
    top: 0;
    right: 0;
    width: 62px;
}

.footer-bottom {
    width: min(calc(100% - 120px), 1640px);
    margin: 42px auto 0;
    font-size: 13px;
}

.footer-bottom p {
    margin: 4px 0;
}

.footer-bottom img {
    display: inline-block;
    width: 18px;
    vertical-align: -4px;
}

.footer-bottom .power-by {
    margin-top: 12px;
}

.footer-bottom .power-by a {
    text-decoration: underline;
    font-weight: 800;
}

.mobile-bottom-bar {
    display: none;
}

/* Responsive */
@media (max-width: 1280px) {
    .header-inner {
        width: min(calc(100% - 70px), 1180px);
    }

    .desktop-nav {
        gap: 28px;
    }

    .hero-container {
        width: min(calc(100% - 70px), 1240px);
    }

    .hero-copy h1 {
        font-size: 37px;
    }

    .service-grid {
        gap: 18px;
    }

    .service-card {
        padding-right: 15px;
        padding-left: 15px;
    }

    .footer-inner,
    .footer-bottom {
        width: min(calc(100% - 70px), 1180px);
    }
}

@media (max-width: 980px) {
    body {
        padding-bottom: 72px;
    }

    .container {
        width: min(calc(100% - 38px), 760px);
    }

    .site-header {
        top: 18px;
    }

    .header-inner {
        width: calc(100% - 36px);
    }

    .brand {
        width: 205px;
        margin-bottom: 0;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        position: absolute;
        top: 13px;
        right: 2px;
        display: flex;
        width: 48px;
        height: 48px;
        padding: 10px;
        border: 0;
        background: transparent;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 28px;
        height: 3px;
        margin-left: auto;
        border-radius: 4px;
        background: #ed9300;
    }

    .mobile-menu-overlay {
        position: fixed;
        z-index: 70;
        inset: 0;
        display: block;
        opacity: 0;
        background: rgba(255, 245, 214, .82);
        pointer-events: none;
        transition: opacity .25s;
    }

    .mobile-drawer {
        position: fixed;
        z-index: 80;
        top: 0;
        right: 0;
        bottom: 72px;
        display: block;
        width: 56vw;
        min-width: 265px;
        max-width: 360px;
        padding: 95px 24px 28px;
        background: #fff;
        box-shadow: -10px 0 30px rgba(95,65,18,.12);
        transform: translateX(105%);
        transition: transform .3s ease;
    }

    .menu-open .mobile-menu-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    .menu-open .mobile-drawer {
        transform: translateX(0);
    }

    .mobile-menu-close {
        position: absolute;
        top: 18px;
        right: 23px;
        border: 0;
        color: #e99100;
        background: transparent;
        font-size: 46px;
        font-weight: 300;
        line-height: 1;
    }

    .mobile-drawer nav a {
        display: block;
        padding: 15px 5px;
        border-bottom: 1px solid #f3d38b;
        color: #4c4843;
        font-size: 20px;
        font-weight: 700;
        text-align: center;
    }

    .mobile-drawer nav a:nth-child(2) {
        color: #e99500;
    }

    .hero {
        height: 720px;
    }

    .hero-container {
        display: flex;
        width: calc(100% - 34px);
        padding-top: 100px;
        flex-direction: column;
        justify-content: center;
    }

    .hero-visual {
        width: 100%;
        padding: 30px 0 0;
        align-self: auto;
    }

    .hero-visual img {
        width: min(100%, 600px);
        margin: 0 auto;
    }

    .hero-copy {
        width: 100%;
        padding: 0 10px 60px;
        text-align: center;
    }

    .hero-copy h1 {
        font-size: clamp(28px, 6vw, 40px);
    }

    .hero-copy p {
        font-size: 18px;
    }

    .hero-copy strong {
        font-size: 17px;
    }

    .hero-dots {
        right: 50%;
        bottom: 38px;
        transform: translateX(50%);
    }

    .desktop-line-tab {
        display: none;
    }

    .section {
        padding: 65px 0;
    }

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

    .service-grid .service-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 9px);
        justify-self: center;
    }

    .home-about-grid,
    .home-faq-grid,
    .process-strip-grid,
    .service-intro-grid,
    .about-grid,
    .consult-grid,
    .first-visit,
    .faq-layout,
    .faq-consult {
        grid-template-columns: 1fr;
    }

    .home-about-copy {
        padding: 0;
        order: 2;
    }

    .home-about-visual {
        order: 1;
    }

    .trust-row {
        justify-content: center;
    }

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

    .home-faq-grid {
        gap: 30px;
    }

    .home-faq-visual {
        display: none;
    }

    .process-strip {
        padding-top: 60px;
    }

    .process-strip-person {
        display: none;
    }

    .process-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 18px;
    }

    .service-process-content {
        width: 100%;
    }

    .service-process-person {
        display: none;
    }

    .about-photo {
        order: -1;
    }

    .about-trust {
        justify-content: center;
        flex-wrap: wrap;
    }

    .process-page .process-steps {
        gap: 30px 18px;
    }

    .faq-art {
        position: static;
        max-width: 460px;
        margin: 0 auto;
    }

    .faq-consult > img {
        max-width: 430px;
        margin: 20px auto 0;
    }

    .cases-intro {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cases-intro img {
        margin: 0 auto 20px;
    }

    .cases-count {
        text-align: center;
    }

    .site-footer {
        padding-top: 90px;
    }

    .footer-inner {
        width: calc(100% - 50px);
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        width: calc(100% - 50px);
    }

    .footer-facebook {
        top: 5px;
    }

    .mobile-bottom-bar {
        position: fixed;
        z-index: 90;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        height: 72px;
        grid-template-columns: repeat(3, 1fr);
    }

    .mobile-bottom-bar a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        color: #fff;
        font-size: 17px;
        font-weight: 800;
    }

    .mobile-bottom-bar img {
        width: 25px;
        height: 25px;
    }

    .mobile-line {
        background: linear-gradient(90deg, #7fd530, #54ba21);
    }

    .mobile-phone {
        background: linear-gradient(90deg, #ffad00, #e98500);
    }

    .mobile-map {
        background: linear-gradient(90deg, #12a9d4, #0083bb);
    }

    .back-to-top {
        right: 18px;
        bottom: 88px;
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 640px) {
    .container {
        width: calc(100% - 30px);
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2 {
        font-size: 25px;
    }

    .section-heading p {
        font-size: 15px;
    }

    .hero {
        height: 655px;
    }

    .hero-container {
        padding-top: 105px;
    }

    .hero-visual {
        padding-top: 35px;
    }

    .hero-copy {
        padding-bottom: 55px;
    }

    .hero-copy h1 {
        margin-bottom: 8px;
        font-size: 27px;
    }

    .hero-copy p {
        font-size: 16px;
    }

    .hero-copy strong {
        font-size: 15px;
    }

    .btn {
        min-height: 43px;
        padding-right: 22px;
        padding-left: 22px;
        font-size: 14px;
    }

    .services-section {
        padding-top: 55px;
    }

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

    .service-grid .service-card:last-child {
        width: auto;
        grid-column: auto;
    }

    .service-card {
        display: grid;
        min-height: 0;
        padding: 20px;
        grid-template-columns: 90px 1fr;
        column-gap: 16px;
        text-align: left;
    }

    .service-card img {
        width: 82px;
        height: 82px;
        margin: 8px auto 0;
        grid-row: 1 / 4;
    }

    .service-card h3 {
        margin-bottom: 5px;
        font-size: 19px;
    }

    .service-card p {
        min-height: 0;
        margin-bottom: 11px;
        font-size: 14px;
    }

    .service-card .btn {
        width: 110px;
        min-height: 34px;
        padding: 7px 15px;
    }

    .home-about {
        padding-top: 55px;
    }

    .home-about-copy h2 {
        font-size: 24px;
    }

    .home-about-copy h3 {
        font-size: 18px;
    }

    .trust-row {
        gap: 20px;
    }

    .trust-item {
        min-width: 84px;
        font-size: 14px;
    }

    .trust-item img {
        width: 56px;
        height: 56px;
    }

    .case-heading-deco img {
        display: none;
    }

    .case-card {
        padding: 0 18px 22px;
    }

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

    .case-card p {
        font-size: 14px;
        line-height: 1.85;
    }

    .home-faq-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-step-card {
        min-height: 0;
        padding: 35px 15px 18px;
    }

    .service-detail::before {
        display: none;
    }

    .service-copy .lead {
        font-size: 19px;
    }

    .service-process-band {
        padding-top: 60px;
    }

    .about-trust-item {
        width: 150px;
        height: 150px;
        border-width: 5px;
    }

    .about-trust-item img {
        width: 55px;
        height: 55px;
    }

    .about-trust-item strong {
        font-size: 15px;
    }

    .process-page .process-steps {
        grid-template-columns: 1fr;
    }

    .process-page .process-step-card {
        min-height: 0;
        border-radius: 30px;
    }

    .faq-item h3 {
        padding: 13px 13px 13px 58px;
        font-size: 16px;
    }

    .faq-item .q-number {
        width: 50px;
        height: 50px;
        font-size: 15px;
    }

    .faq-item p {
        margin-bottom: 25px;
        padding-left: 0;
        font-size: 14px;
    }

    .faq-consult-copy::before,
    .process-contact::before {
        width: 230px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        width: calc(100% - 32px);
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-logo {
        width: 245px;
    }

    .footer-contact-row {
        flex-direction: column;
    }

    .footer-qr {
        flex-basis: auto;
    }

    .footer-links,
    .footer-notes {
        padding-top: 15px;
        border-top: 1px solid rgba(105,70,15,.2);
    }

    .footer-bottom {
        width: calc(100% - 32px);
    }

    .footer-facebook {
        width: 50px;
    }

    .mobile-bottom-bar a {
        gap: 3px;
        font-size: 14px;
        flex-direction: column;
    }

    .mobile-bottom-bar img {
        width: 24px;
        height: 24px;
    }
}
