/* ===== リセット & 基本設定 ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --navy: #1a2e4a;
    --navy-light: #2c4a6e;
    --navy-pale: #e8edf4;
    --gold: #b8922e;
    --gold-dark: #9a7a24;
    --gold-pale: #f8f3e6;
    --text: #2a2a2a;
    --text-light: #5a5a5a;
    --text-muted: #8a8a8a;
    --bg: #f7f8fa;
    --bg-white: #ffffff;
    --bg-light: #f0f2f5;
    --border: #dde1e7;
    --green: #3a7d5c;
    --green-pale: #e8f2ec;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 2px 12px rgba(26,46,74,0.06);
    --shadow-lg: 0 8px 32px rgba(26,46,74,0.10);
}

html { scroll-behavior: smooth; }

body {
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    color: var(--text);
    line-height: 1.8;
    background: var(--bg);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ===== ヘッダー ===== */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: background 0.4s, border-color 0.4s;
    background: transparent;
    border-bottom: 1px solid transparent;
}

header.scrolled,
header.solid {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom-color: var(--border);
}

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

.logo-mini {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
    transition: color 0.4s;
}

header.scrolled .logo-mini,
header.solid .logo-mini { color: var(--navy); }

.logo-mini .accent { color: var(--gold); }

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

nav a {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
    letter-spacing: 0.02em;
}

header.scrolled nav a,
header.solid nav a { color: var(--text-light); }

nav a:hover { color: #fff; }
header.scrolled nav a:hover,
header.solid nav a:hover { color: var(--navy); }

.nav-contact {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff !important;
    padding: 9px 22px;
    border-radius: 6px;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    transition: all 0.3s !important;
}

header.scrolled .nav-contact,
header.solid .nav-contact {
    background: var(--navy);
    border-color: var(--navy);
}

.nav-contact:hover { background: rgba(255,255,255,0.25); }
header.scrolled .nav-contact:hover,
header.solid .nav-contact:hover { background: var(--navy-light); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}

.hamburger span {
    width: 22px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

header.scrolled .hamburger span,
header.solid .hamburger span { background: var(--navy); }

/* ===== ヒーロー（トップページ） ===== */
.hero {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
    max-height: 1000px;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('img/28154575_m.jpg') center/cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.12); }
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.1) 0%,
        rgba(0,0,0,0.05) 40%,
        rgba(0,0,0,0.4) 100%
    );
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    padding: 0 60px 64px;
}

.hero-text-block { max-width: 600px; }

.hero-content h1 {
    font-family: "Noto Serif JP", serif;
    font-size: 2.6rem;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.12em;
    line-height: 1.7;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content .catch {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.08em;
    line-height: 2;
    font-weight: 300;
}

.hero-scroll {
    position: absolute;
    bottom: 28px;
    right: 60px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll span {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.15em;
    writing-mode: vertical-rl;
}

.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, rgba(255,255,255,0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* ===== ページヒーロー（サブページ用） ===== */
.page-hero {
    padding-top: 68px;
    background: var(--navy);
    padding-bottom: 56px;
    text-align: center;
}

.page-hero h1 {
    font-family: "Noto Serif JP", serif;
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.1em;
    margin-top: 48px;
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.06em;
}

.page-hero .breadcrumb {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin-top: 20px;
}

.page-hero .breadcrumb a {
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}

.page-hero .breadcrumb a:hover { color: var(--gold); }

/* ===== ボタン ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 34px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.92rem;
    transition: all 0.25s;
    cursor: pointer;
    border: none;
    font-family: inherit;
    letter-spacing: 0.04em;
}

.btn-primary {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 4px 16px rgba(184,146,46,0.3);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(184,146,46,0.4);
}

.btn-white {
    background: #fff;
    color: var(--navy);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.btn-white:hover {
    background: var(--navy-pale);
    transform: translateY(-2px);
}

.btn-navy {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 4px 16px rgba(26,46,74,0.25);
}

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

.btn-green {
    background: var(--green);
    color: #fff;
    box-shadow: 0 4px 14px rgba(58,125,92,0.25);
}

.btn-green:hover {
    background: #2f6a4d;
    transform: translateY(-2px);
}

/* ===== セクション共通 ===== */
.section { padding: 88px 0; }

.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-header h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    line-height: 1.5;
}

.section-header p {
    font-size: 0.88rem;
    color: var(--text-light);
}

.section-line {
    width: 48px;
    height: 3px;
    margin: 18px auto 0;
    background: var(--gold);
    border-radius: 2px;
}

/* ===== 事務所について ===== */
.about-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    margin: 0 auto;
    padding: 56px 52px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

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

.about-card h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 20px;
    letter-spacing: 0.04em;
    line-height: 1.6;
}

.about-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 14px;
    line-height: 1.9;
}

.about-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--navy-pale);
    color: var(--navy);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 4px;
}

.about-photo {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-photo img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

/* ===== お悩み ===== */
.worries { background: var(--bg-white); }

.worry-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}

.worry-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    transition: all 0.3s;
}

.worry-card:hover {
    border-color: var(--navy);
    box-shadow: var(--shadow);
}

.worry-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--navy-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.3rem;
}

.worry-card h4 {
    font-size: 0.92rem;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.5;
    font-weight: 700;
}

.worry-card p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== サービスカード ===== */
.services { background: var(--bg); }

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

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.service-card-body { padding: 24px; }

.service-card h4 {
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 700;
}

.service-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.service-card .badge {
    display: inline-block;
    background: var(--gold-pale);
    color: var(--gold-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.service-cta {
    text-align: center;
    margin-top: 40px;
}

/* ===== サービス詳細（services.html用） ===== */
.service-detail {
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
}

.service-detail-item:last-child { margin-bottom: 0; }

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 36px 40px;
    border-bottom: 1px solid var(--border);
}

.service-detail-num {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.service-detail-header h3 {
    font-size: 1.25rem;
    color: var(--navy);
    font-weight: 700;
}

.service-detail-header .sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.service-detail-body {
    padding: 36px 40px;
}

.service-detail-body p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 16px;
}

.service-detail-body p:last-child { margin-bottom: 0; }

.detail-list {
    list-style: none;
    margin: 16px 0;
}

.detail-list li {
    font-size: 0.85rem;
    color: var(--text-light);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid var(--bg-light);
}

.detail-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

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

/* ===== そうさぽ青森バナー ===== */
.sousapo-banner {
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px 48px;
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.sousapo-icon {
    width: 80px; height: 80px;
    background: var(--green-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.sousapo-banner-text { flex: 1; }

.sousapo-banner-text .label {
    display: inline-block;
    background: var(--green);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.sousapo-banner-text h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.sousapo-banner-text p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.8;
}

/* ===== ご相談の流れ ===== */
.flow { background: var(--bg-white); }

.flow-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 960px;
    margin: 0 auto;
}

.flow-step {
    text-align: center;
    padding: 28px 16px;
    position: relative;
}

.flow-step::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 46px;
    width: 20px;
    height: 2px;
    background: var(--gold);
}

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

.step-num {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-weight: 700;
    font-size: 1rem;
}

.flow-step h4 {
    font-size: 0.92rem;
    color: var(--navy);
    margin-bottom: 8px;
    font-weight: 700;
}

.flow-step p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== 事務所情報 ===== */
.office-info { background: var(--bg); }

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 920px;
    margin: 0 auto;
    align-items: start;
}

.info-table-wrap {
    background: var(--bg-white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
}

.info-table dl {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 0;
}

.info-table dt {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy);
    padding: 15px 18px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
}

.info-table dd {
    font-size: 0.84rem;
    color: var(--text-light);
    padding: 15px 18px;
    border-bottom: 1px solid var(--border);
}

.info-table dl > :nth-last-child(-n+2) { border-bottom: none; }

.info-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    height: 320px;
}

.info-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== よくある質問 ===== */
.faq { background: var(--bg-white); }

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-white);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    background: var(--bg-white);
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: background 0.2s;
}

.faq-question:hover { background: var(--bg-light); }

.faq-question .q-mark {
    flex-shrink: 0;
    width: 30px; height: 30px;
    border-radius: 4px;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.82rem;
}

.faq-question .arrow {
    margin-left: auto;
    transition: transform 0.3s;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.faq-item.open .faq-question .arrow { transform: rotate(180deg); }

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

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

.faq-answer-inner {
    padding: 0 24px 24px 68px;
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.9;
}

/* ===== お問い合わせ ===== */
.contact { background: var(--bg); }

.contact-box {
    max-width: 760px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 52px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    text-align: center;
}

.contact-box h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.contact-box .free-badge {
    display: inline-block;
    background: var(--navy);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: 4px;
    margin-bottom: 28px;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 28px;
}

.contact-method {
    padding: 28px 18px;
    border-radius: var(--radius);
    background: var(--bg);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.2s;
}

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

.contact-method .icon { font-size: 1.8rem; margin-bottom: 10px; }
.contact-method .label { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 6px; }
.contact-method .value { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.contact-method a { color: var(--navy); font-weight: 700; }
.contact-hours { font-size: 0.78rem; color: var(--text-muted); margin-top: 8px; }

/* ===== フッター ===== */
footer {
    background: var(--navy);
    color: rgba(255,255,255,0.65);
    padding: 52px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    margin-bottom: 36px;
}

.footer-info h4 { color: #fff; font-size: 1.05rem; margin-bottom: 16px; }
.footer-info p { font-size: 0.8rem; line-height: 1.9; }
.footer-links h4 { color: #fff; font-size: 0.88rem; margin-bottom: 16px; }

.footer-links ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.footer-links a {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.72rem;
}

/* ===== ブログ一覧 ===== */
.blog-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blog-list-item {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 28px;
    transition: all 0.2s;
}

.blog-list-item:hover {
    border-color: var(--navy);
    box-shadow: var(--shadow);
    transform: translateX(4px);
}

.blog-list-date {
    font-size: 0.78rem;
    color: var(--text-muted);
    white-space: nowrap;
    min-width: 80px;
}

.blog-list-content { flex: 1; }

.blog-list-content h3 {
    font-size: 1rem;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 4px;
}

.blog-list-content p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.blog-list-arrow {
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ===== ブログ記事 ===== */
.blog-article {
    max-width: 760px;
    margin: 0 auto;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 52px;
}

.blog-meta {
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.blog-meta time {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.blog-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 20px;
}

.blog-body h3 {
    font-size: 1.15rem;
    color: var(--navy);
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 16px;
    padding-left: 14px;
    border-left: 3px solid var(--gold);
}

.blog-body ul {
    list-style: none;
    margin: 16px 0 24px;
}

.blog-body ul li {
    font-size: 0.88rem;
    color: var(--text-light);
    padding: 6px 0 6px 20px;
    position: relative;
    line-height: 1.8;
}

.blog-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

.blog-back {
    text-align: center;
    margin-top: 48px;
}

/* ===== モバイル対応 ===== */
@media (max-width: 768px) {
    .container { padding: 0 20px; }

    nav { display: none; }
    nav.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 68px; left: 0; right: 0; bottom: 0;
        background: rgba(255,255,255,0.98);
        padding: 32px;
        gap: 20px;
        z-index: 999;
    }
    nav.open a { font-size: 1.05rem; color: var(--text-light) !important; }
    nav.open a:hover { color: var(--navy) !important; }

    .hamburger { display: flex; }

    .hero { height: 100svh; min-height: 500px; }
    .hero-content { padding: 0 28px 52px; }
    .hero-content h1 { font-size: 1.7rem; letter-spacing: 0.08em; }
    .hero-content .catch { font-size: 0.75rem; }
    .hero-scroll { right: 28px; bottom: 20px; }

    .page-hero h1 { font-size: 1.5rem; }

    .about-card { padding: 36px 24px; }
    .about-grid { grid-template-columns: 1fr; }
    .about-photo { order: -1; }
    .about-photo img { height: 200px; }

    .worry-cards { grid-template-columns: 1fr; }
    .service-grid { grid-template-columns: 1fr; max-width: 400px; }

    .sousapo-banner {
        flex-direction: column;
        padding: 32px 24px;
        text-align: center;
    }

    .flow-steps { grid-template-columns: 1fr 1fr; }
    .flow-step:nth-child(2)::after { display: none; }

    .info-grid { grid-template-columns: 1fr; }
    .contact-methods { grid-template-columns: 1fr; }
    .contact-box { padding: 32px 20px; }
    .footer-grid { grid-template-columns: 1fr; }

    .service-detail-header { padding: 24px; gap: 16px; }
    .service-detail-body { padding: 24px; }
    .service-detail-header h3 { font-size: 1.1rem; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.3rem; }
    .section { padding: 60px 0; }
    .section-header h2 { font-size: 1.35rem; }
}
