:root {
    --primary: #7ac943;
    --primary-dark: #57962f;
    --accent: #f0e97a;
    --accent-muted: rgba(240, 233, 122, 0.2);
    --surface: #ffffff;
    --surface-muted: #f5f7fb;
    --surface-soft: #eef2fb;
    --surface-deep: linear-gradient(135deg, #1f3a16 0%, #224d19 100%);
    --text-strong: #0f172a;
    --text-body: #1f2937;
    --text-soft: #6b7280;
    --border: #d7deed;
    --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 18px 40px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 32px 70px rgba(15, 23, 42, 0.18);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 999px;
    --content-width: min(1120px, 92vw);
    --font-sans: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
    --transition: 180ms ease;
}

@media (prefers-color-scheme: dark) {
    :root {
        color-scheme: light;
    }
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    background: var(--surface-muted);
    color: var(--text-body);
    line-height: 1.75;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
}

img, svg, picture, video {
    display: block;
    max-width: 100%;
    height: auto;
}

img {
    border-radius: var(--radius-sm);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover, a:focus {
    color: var(--primary-dark);
}

p {
    margin: 0 0 1.25rem;
}

ul, ol {
    margin: 0 0 1.25rem;
    padding-left: 1.25rem;
}

.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(236, 247, 233, 0.85) 0%, rgba(245, 251, 240, 0.95) 40%, #ffffff 100%);
}

.breadcrumb-nav {
    width: 100%;
    max-width: var(--content-width);
    margin: clamp(4px, 1.5vw, 12px) auto clamp(16px, 3vw, 24px);
    padding: clamp(10px, 2.4vw, 16px) clamp(12px, 3vw, 20px);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(215, 222, 237, 0.7);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.breadcrumb {
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 0;
    font-size: 0.85rem;
    color: var(--text-soft);
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.breadcrumb::-webkit-scrollbar {
    height: 6px;
}

.breadcrumb::-webkit-scrollbar-track {
    background: transparent;
}

.breadcrumb::-webkit-scrollbar-thumb {
    background: rgba(122, 201, 67, 0.35);
    border-radius: var(--radius-full);
}

.breadcrumb__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb__item a {
    color: inherit;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb__item:not(:last-child)::after {
    content: ">";
    opacity: 0.45;
    font-weight: 600;
    color: inherit;
}

.breadcrumb__item span[aria-current="page"] {
    color: var(--text-strong);
    font-weight: 600;
}

.breadcrumb__item a:hover,
.breadcrumb__item a:focus {
    color: var(--primary-dark);
}

.global-header {
    background: rgba(248, 255, 244, 0.9);
    backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(209, 217, 235, 0.6);
    position: sticky;
    top: 0;
    z-index: 40;
}

.top-bar {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: clamp(18px, 4vw, 28px) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(16px, 3vw, 32px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.brand img {
    height: clamp(42px, 6vw, 58px);
    width: auto;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.brand-copy span:first-child {
    font-weight: 700;
    color: var(--text-strong);
    font-size: clamp(1rem, 2vw, 1.25rem);
    letter-spacing: 0.04em;
}

.brand-copy span:last-child {
    font-size: 0.88rem;
    color: var(--text-soft);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: clamp(18px, 4vw, 32px);
}

.header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    font-size: 0.9rem;
    color: var(--text-soft);
}

.header-contact a {
    font-weight: 700;
    color: var(--text-strong);
    font-size: clamp(1rem, 2.4vw, 1.25rem);
}

.header-contact small {
    font-size: 0.8rem;
}

.main-nav {
    border-top: 1px solid rgba(209, 217, 235, 0.65);
    border-bottom: 1px solid rgba(209, 217, 235, 0.65);
    background: rgba(231, 244, 226, 0.85);
}

.main-nav__inner {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.main-nav__list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: clamp(12px, 3.2vw, 28px);
    padding: 0;
    margin: 0;
}

.main-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 0;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-soft);
    transition: color var(--transition), transform var(--transition);
}

.main-nav__link:hover,
.main-nav__link:focus,
.main-nav__link.active {
    color: var(--primary);
    transform: translateY(-1px);
}

.main-nav__item {
    position: relative;
}

.nav-caret {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform var(--transition);
    margin-left: 4px;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    padding: 12px;
    border-radius: var(--radius-lg);
    background: rgba(248, 255, 244, 0.96);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(122, 201, 67, 0.18);
    display: grid;
    gap: 8px;
    opacity: 0;
    transform: translateY(4px);
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
    z-index: 60;
}

.nav-dropdown__link {
    display: grid;
    gap: 2px;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    color: var(--text-strong);
    text-decoration: none;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.nav-dropdown__link:hover,
.nav-dropdown__link:focus {
    background: rgba(122, 201, 67, 0.12);
    color: var(--primary);
    transform: translateX(2px);
}

.nav-dropdown__title {
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-dropdown__meta {
    font-size: 0.8rem;
    color: var(--text-soft);
}

.has-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 12px;
}

.has-dropdown:hover > .nav-dropdown,
.has-dropdown:focus-within > .nav-dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.has-dropdown:hover > .main-nav__link .nav-caret,
.has-dropdown:focus-within > .main-nav__link .nav-caret {
    transform: rotate(-135deg) translateY(1px);
}

.nav-cta {
    margin-left: auto;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(209, 217, 235, 0.8);
    background: rgba(248, 255, 244, 0.9);
    position: relative;
    cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 2px;
    background: var(--text-strong);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle span::before {
    transform: translate(-50%, -8px);
}

.nav-toggle span::after {
    transform: translate(-50%, 6px);
}

.nav-toggle span {
    transform: translate(-50%, -1px);
}

.nav-toggle.is-active span {
    background: transparent;
}

.nav-toggle.is-active span::before {
    transform: translate(-50%, -1px) rotate(45deg);
}

.nav-toggle.is-active span::after {
    transform: translate(-50%, -1px) rotate(-45deg);
}

.page-content {
    flex: 1;
    padding: clamp(20px, 6vw, 56px) 0 clamp(56px, 11vw, 120px);
}

.content-container {
    width: 100%;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0;
}

.content-section {
    margin-bottom: clamp(36px, 6vw, 72px);
}

.page-title {
    margin: clamp(4px, 1vw, 12px) 0 clamp(24px, 4vw, 36px);
    color: var(--text-strong);
    line-height: 1.3;
}

.page-title > .uline {
    font-size: clamp(2rem, 4vw, 2.6rem);
}

.page-title > .small {
    font-size: 0.95rem;
}

.content-section:last-child {
    margin-bottom: 0;
}

.section-heading {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: clamp(28px, 4vw, 48px);
}

.section-heading .kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3.6vw, 2.4rem);
    color: var(--text-strong);
    line-height: 1.3;
}

.section-heading p {
    margin: 0;
    max-width: 58ch;
    color: var(--text-soft);
}

.section-heading h1 .uline,
.section-heading h1 .small,
.section-heading h2 .uline,
.section-heading h2 .small,
h1 > .uline,
h1 > .small,
h2 > .uline,
h2 > .small {
    display: block;
}

h1 > .uline,
h2 > .uline {
    font-weight: 700;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--primary);
    width: fit-content;
    margin-bottom: 8px;
    text-wrap: balance;
}

h1 > .small,
h2 > .small {
    margin-top: 4px;
    font-size: 0.85rem;
    color: rgba(15, 31, 68, 0.55);
    letter-spacing: 0.08em;
}


.surface-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 5vw, 40px);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(209, 217, 235, 0.5);
}

.surface-card--accent {
    background: var(--accent-muted);
    border: 1px solid rgba(244, 180, 0, 0.4);
}

.surface-card--outline {
    background: transparent;
    border: 1px solid rgba(209, 217, 235, 0.9);
}

.card-grid {
    display: grid;
    gap: clamp(20px, 4vw, 32px);
}

.card-grid[data-columns="3"] {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card-grid[data-columns="2"] {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card-grid[data-columns="4"] {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.feature-card {
    position: relative;
    padding: clamp(24px, 4vw, 32px);
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid rgba(209, 217, 235, 0.6);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-card .icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(122, 201, 67, 0.08);
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    color: var(--primary);
}

.feature-card h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--text-strong);
}

.feature-card p {
    margin: 0;
    color: var(--text-soft);
}

.service-card {
    overflow: hidden;
    padding: 0;
}

.service-card figure {
    margin: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.service-card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform var(--transition);
}

.service-card:hover figure img {
    transform: scale(1.05);
}

.service-card__body {
    padding: clamp(20px, 4vw, 28px);
    display: grid;
    gap: 12px;
}

.service-card__meta {
    font-size: 0.9rem;
    color: var(--text-soft);
}

.service-card .button {
    justify-self: flex-start;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.9rem 1.8rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
    white-space: nowrap;
}

.button--primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 14px 32px rgba(122, 201, 67, 0.22);
}

.button--primary:hover,
.button--primary:focus {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.button--ghost {
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary);
    border: 1px solid rgba(122, 201, 67, 0.3);
    box-shadow: none;
}

.button--ghost:hover,
.button--ghost:focus {
    background: rgba(122, 201, 67, 0.08);
    transform: translateY(-2px);
}

.button--outline {
    background: transparent;
    border: 1px solid rgba(209, 217, 235, 0.9);
    color: var(--text-strong);
}

.button--outline:hover,
.button--outline:focus {
    border-color: var(--primary);
    color: var(--primary);
}

.button--accent {
    background: var(--accent);
    color: #1d1d1d;
    box-shadow: 0 16px 34px rgba(240, 233, 122, 0.36);
}

.button--line {
    background: #2db457;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(45, 180, 87, 0.18);
}

.button--line:hover,
.button--line:focus {
    background: #239046;
    transform: translateY(-2px);
}

.btn,
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.85rem 1.6rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 12px 28px rgba(122, 201, 67, 0.22);
}

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

.btn-secondary {
    background: rgba(248, 255, 244, 0.92);
    color: var(--primary);
    border: 1px solid rgba(122, 201, 67, 0.3);
}

.btn-secondary:hover,
.btn-secondary:focus {
    transform: translateY(-2px);
    background: rgba(122, 201, 67, 0.08);
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(122, 201, 67, 0.12);
    color: var(--primary);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    letter-spacing: 0.02em;
}

.badge--success {
    background: rgba(20, 184, 166, 0.12);
    color: #0f766e;
}

.badge--warning {
    background: rgba(250, 204, 21, 0.18);
    color: #b45309;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: clamp(18px, 4vw, 28px);
    margin-top: clamp(24px, 5vw, 36px);
}

.stat-card {
    padding: clamp(18px, 4vw, 28px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(209, 217, 235, 0.6);
    background: rgba(231, 244, 226, 0.85);
    text-align: left;
}

.stat-card strong {
    display: block;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--primary);
    margin-bottom: 6px;
}

.stat-card span {
    color: var(--text-soft);
    font-size: 0.9rem;
}

.split-layout {
    display: grid;
    gap: clamp(28px, 6vw, 48px);
    align-items: center;
}

.split-layout[data-columns="2"] {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.split-layout__image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.split-layout__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-layout__badge {
    position: absolute;
    inset: auto 18px 18px auto;
    background: rgba(248, 255, 244, 0.9);
    color: var(--text-strong);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    font-size: 0.85rem;
}

.list-check {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.list-check li {
    position: relative;
    padding-left: 1.8rem;
    color: var(--text-body);
}

.list-check li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.15rem;
    color: var(--primary);
    font-weight: 700;
}

.list-dot {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-dot li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-soft);
}

.list-dot li::before {
    content: "";
    position: absolute;
    top: 0.6rem;
    left: 0.45rem;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--primary);
}


.page-hero {
    position: relative;
    padding: clamp(96px, 18vw, 160px) 0;
    color: #ffffff;
    overflow: hidden;
    margin-bottom: clamp(54px, 10vw, 96px);
}

.page-hero::after,
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
}

.page-hero::after {
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    filter: saturate(1.1);
}

.page-hero::before {
    background: linear-gradient(135deg, rgba(32, 64, 20, 0.95), rgba(70, 128, 38, 0.92));
    z-index: -1;
}

.page-hero__content {
    width: min(920px, 90vw);
    margin: 0 auto;
    padding: 0 clamp(24px, 6vw, 40px);
    display: grid;
    gap: clamp(20px, 4vw, 32px);
}

.page-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: rgba(248, 255, 244, 0.86);
    text-shadow: 0 10px 22px rgba(12, 24, 9, 0.35);
}

.page-hero__title {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3.2rem);
    letter-spacing: 0.02em;
    line-height: 1.35;
    text-wrap: balance;
    text-shadow: 0 12px 30px rgba(12, 24, 9, 0.42);
}

.page-hero__description {
    margin: 0;
    max-width: 56ch;
    color: rgba(248, 255, 244, 0.92);
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.8;
    text-shadow: 0 10px 26px rgba(12, 24, 9, 0.38);
}

.page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(18px, 3vw, 28px);
    margin-top: clamp(20px, 5vw, 32px);
}

.hero-stat {
    background: rgba(231, 244, 226, 0.16);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-stat strong {
    display: block;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
}

.hero-stat span {
    display: block;
    color: rgba(231, 244, 226, 0.82);
    margin-top: 6px;
    font-size: 0.9rem;
}

.callout {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 4vw, 32px);
    border: 1px solid rgba(209, 217, 235, 0.7);
    box-shadow: var(--shadow-sm);
}

.callout--neutral {
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(122, 201, 67, 0.1);
}

.callout .callout-title {
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: 10px;
}

.timeline {
    display: grid;
    gap: clamp(18px, 4vw, 28px);
    position: relative;
}

.timeline-step {
    position: relative;
    padding-left: 3.5rem;
}

.timeline-step::before {
    content: attr(data-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-sm);
}

.timeline-step::after {
    content: "";
    position: absolute;
    left: 1.2rem;
    top: 2.4rem;
    bottom: -1.5rem;
    width: 2px;
    background: linear-gradient(180deg, rgba(122, 201, 67, 0.4), rgba(122, 201, 67, 0));
}

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

.timeline-step h3 {
    margin: 0 0 8px;
    color: var(--text-strong);
}

.faq-stack {
    display: grid;
    gap: clamp(16px, 3vw, 22px);
}

details.faq-item {
    border: 1px solid rgba(209, 217, 235, 0.7);
    border-radius: var(--radius-md);
    background: rgba(248, 255, 244, 0.92);
    padding: clamp(18px, 3.6vw, 24px);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

details.faq-item[open] {
    transform: translateY(-2px);
    border-color: rgba(122, 201, 67, 0.4);
    box-shadow: var(--shadow-md);
}

details.faq-item summary {
    list-style: none;
    font-weight: 700;
    color: var(--text-strong);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
}

details.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item__icon {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(122, 201, 67, 0.25);
    display: grid;
    place-items: center;
    font-size: 0.9rem;
    color: var(--primary);
}

.faq-item__answer {
    margin-top: 16px;
    color: var(--text-soft);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(209, 217, 235, 0.6);
    text-align: left;
}

.comparison-table th {
    background: rgba(122, 201, 67, 0.08);
    font-weight: 700;
    color: var(--text-strong);
}

.comparison-table strong {
    color: var(--text-strong);
}

.price-highlight {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--primary);
}

.cta-banner {
    margin-top: clamp(36px, 6vw, 52px);
    padding: clamp(28px, 5vw, 36px);
    border-radius: var(--radius-lg);
    background: linear-gradient(120deg, rgba(122, 201, 67, 0.92), rgba(42, 78, 24, 0.85));
    color: #fff;
    display: grid;
    gap: 18px;
    box-shadow: var(--shadow-lg);
}

.cta-banner h3 {
    margin: 0;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    letter-spacing: 0.03em;
}

.cta-banner p {
    margin: 0;
    color: rgba(231, 244, 226, 0.86);
}

.cta-banner .button {
    justify-self: flex-start;
}

.info-grid {
    display: grid;
    gap: clamp(18px, 4vw, 28px);
}

.info-grid[data-columns="3"] {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.info-grid__item {
    padding: clamp(20px, 4vw, 28px);
    background: rgba(248, 255, 244, 0.92);
    border-radius: var(--radius-md);
    border: 1px solid rgba(209, 217, 235, 0.7);
    box-shadow: var(--shadow-sm);
}

.info-grid__item h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--text-strong);
}

.info-grid__item p {
    margin: 0;
    color: var(--text-soft);
}

.contact-layout {
    display: grid;
    gap: clamp(24px, 4vw, 32px);
}

.contact-layout[data-columns="2"] {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.contact-card {
    background: rgba(248, 255, 244, 0.95);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 5vw, 32px);
    border: 1px solid rgba(209, 217, 235, 0.7);
    box-shadow: var(--shadow-sm);
}

.contact-card h3 {
    margin: 0 0 12px;
    color: var(--text-strong);
}

.contact-card p {
    margin: 0 0 10px;
}

.contact-details {
    display: grid;
    gap: 12px;
    margin-top: 12px;
}

.contact-details a {
    font-weight: 600;
    color: var(--primary);
}

.map-frame {
    border: none;
    width: 100%;
    min-height: 320px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.global-footer {
    background: #0b1f0c;
    color: rgba(231, 244, 226, 0.85);
    padding: clamp(48px, 8vw, 86px) 0;
}

.global-footer__inner {
    max-width: var(--content-width);
    margin: 0 auto;
    display: grid;
    gap: clamp(28px, 5vw, 48px);
}

.footer-top {
    display: grid;
    gap: clamp(24px, 4vw, 36px);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-brand img {
    width: clamp(160px, 18vw, 240px);
    height: auto;
    border-radius: 0;
    object-fit: contain;
}

.footer-meta {
    display: grid;
    gap: 8px;
    font-size: 0.95rem;
}

.footer-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-links {
    display: grid;
    gap: 8px;
    font-size: 0.9rem;
}

.footer-links a {
    color: rgba(231, 244, 226, 0.8);
}

.footer-links a:hover,
.footer-links a:focus {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: clamp(18px, 4vw, 24px);
    border-top: 1px solid rgba(148, 163, 184, 0.28);
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: rgba(231, 244, 226, 0.12);
    align-items: center;
    justify-content: center;
    color: rgba(231, 244, 226, 0.82);
    transition: transform var(--transition), background var(--transition);
}

.footer-social a:hover {
    transform: translateY(-2px);
    background: rgba(231, 244, 226, 0.18);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 24px;
}

details.faq-item .faq-item__icon i {
    transition: transform var(--transition);
}

details.faq-item[open] .faq-item__icon i {
    transform: rotate(180deg);
}

/* ------------------------------------------------------------------
   Legacy view helpers (Default views)
------------------------------------------------------------------ */
.main-contents {
    display: grid;
    gap: clamp(32px, 6vw, 64px);
}

.hero-section {
    position: relative;
    padding: clamp(52px, 12vw, 92px) clamp(24px, 6vw, 40px);
    border-radius: var(--radius-lg);
    color: #ffffff;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    isolation: isolate;
}

.hero-section::before,
.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-section::after {
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    filter: saturate(1.1);
}

.hero-section::before {
    background: linear-gradient(135deg, rgba(90, 160, 52, 0.9), rgba(122, 201, 67, 0.88));
    z-index: -1;
}

.hero-content {
    max-width: 720px;
    display: grid;
    gap: 18px;
}

.hero-content h1 {
    margin: 0;
    font-size: clamp(2.1rem, 4.6vw, 3rem);
    letter-spacing: 0.04em;
}

.hero-subtitle {
    margin: 0;
    font-size: 1.1rem;
    color: rgba(231, 244, 226, 0.85);
}

.urgent-notice {
    margin-top: 18px;
    padding: 18px 24px;
    border-radius: var(--radius-md);
    background: rgba(244, 180, 0, 0.18);
    color: #1a1a1a;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(244, 180, 0, 0.18);
}

.section-description {
    color: var(--text-soft);
    max-width: 68ch;
}

.price-info,
.procedure-section,
.faq-section,
.consultation-section,
.case-studies,
.terminology,
.law-reform {
    background: rgba(248, 255, 244, 0.92);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 6vw, 48px);
    border: 1px solid rgba(209, 217, 235, 0.6);
    box-shadow: var(--shadow-sm);
    display: grid;
    gap: clamp(18px, 4vw, 28px);
}

.price-info h2,
.price-info h3,
.procedure-section h2,
.faq-section h2,
.consultation-section h2,
.case-studies h2,
.terminology h2,
.law-reform h2 {
    margin-top: 0;
    color: var(--text-strong);
}

.price-grid,
.fee-examples-grid {
    display: grid;
    gap: clamp(16px, 3vw, 24px);
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.price-item,
.fee-example-card {
    padding: clamp(18px, 4vw, 26px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(209, 217, 235, 0.6);
    background: rgba(247, 250, 255, 0.85);
    display: grid;
    gap: 8px;
    box-shadow: var(--shadow-sm);
}

.price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
}

.price-note,
.price-notice {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.92rem;
}

.tax-note {
    font-size: 0.82rem;
    margin-left: 6px;
    color: var(--text-soft);
}

.price-notice {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.fee-breakdown,
.tax-calculation,
.procedure-flow,
.glossary,
.other-reforms {
    display: grid;
    gap: 12px;
}

.fee-row,
.tax-table tr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    background: rgba(15, 23, 42, 0.04);
}

.fee-label,
.fee-value {
    font-weight: 600;
    color: var(--text-strong);
}

.fee-total {
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.procedure-flow {
    counter-reset: step;
    display: grid;
    gap: clamp(18px, 4vw, 28px);
}

.flow-step {
    position: relative;
    padding: 24px clamp(24px, 5vw, 32px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(209, 217, 235, 0.7);
    background: rgba(248, 255, 244, 0.94);
    box-shadow: var(--shadow-sm);
}

.flow-step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: -18px;
    left: clamp(24px, 5vw, 32px);
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.flow-step h3 {
    margin-top: 0;
    color: var(--text-strong);
}

.faq-section .faq-items {
    display: grid;
    gap: clamp(16px, 3vw, 22px);
}

.faq-section .faq-item {
    padding: clamp(18px, 4vw, 26px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(209, 217, 235, 0.6);
    background: rgba(248, 255, 244, 0.94);
    box-shadow: var(--shadow-sm);
}

.case-studies {
    gap: clamp(20px, 4vw, 32px);
}

.case-study {
    background: rgba(247, 250, 255, 0.9);
    border-radius: var(--radius-md);
    padding: clamp(20px, 4vw, 30px);
    border: 1px solid rgba(209, 217, 235, 0.6);
    box-shadow: var(--shadow-sm);
    display: grid;
    gap: 12px;
}

.example-header {
    font-weight: 700;
    color: var(--primary);
}

.cta-box {
    margin-top: clamp(18px, 4vw, 28px);
    padding: clamp(24px, 5vw, 32px);
    border-radius: var(--radius-lg);
    background: linear-gradient(120deg, rgba(122, 201, 67, 0.92), rgba(42, 78, 24, 0.88));
    color: #fff;
    display: grid;
    gap: 12px;
}

.consultation-info {
    display: grid;
    gap: clamp(16px, 3vw, 24px);
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.consultation-methods,
.method-item {
    display: grid;
    gap: 12px;
}

.method-item {
    padding: clamp(18px, 4vw, 24px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(209, 217, 235, 0.6);
    background: rgba(248, 255, 244, 0.92);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.method-icon {
    font-size: 1.6rem;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-buttons .btn-primary,
.contact-buttons .btn-secondary {
    border-radius: var(--radius-full);
    padding: 0.9rem 1.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
}

.contact-buttons .btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 14px 32px rgba(122, 201, 67, 0.22);
}

.contact-buttons .btn-secondary {
    background: rgba(248, 255, 244, 0.9);
    border: 1px solid rgba(209, 217, 235, 0.8);
    color: var(--primary);
}

.contact-buttons a:hover {
    transform: translateY(-1px);
}

.tax-table {
    width: 100%;
    border-collapse: collapse;
}

.tax-table td,
.tax-table th {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(209, 217, 235, 0.6);
    text-align: left;
}

.law-reform {
    background: rgba(35, 68, 20, 0.06);
}

.law-reform .reform-detail {
    background: rgba(248, 255, 244, 0.94);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
    padding: clamp(18px, 4vw, 24px);
    box-shadow: var(--shadow-sm);
}

.term-explanation {
    background: rgba(248, 255, 244, 0.94);
    border-radius: var(--radius-md);
    padding: clamp(18px, 4vw, 24px);
    border-left: 4px solid rgba(122, 201, 67, 0.5);
}

.obligation-details ul {
    list-style: none;
    margin: 0;
    padding: clamp(18px, 4vw, 24px);
    border-radius: var(--radius-md);
    background: rgba(35, 68, 20, 0.04);
    border-left: 4px solid rgba(122, 201, 67, 0.6);
    display: grid;
    gap: 8px;
}

.risk-list {
    display: grid;
    gap: 16px;
}

.styled-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.styled-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    background: rgba(35, 68, 20, 0.05);
    transition: transform var(--transition), box-shadow var(--transition);
}

.styled-list li:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.risk-icon {
    color: #f97066;
}

.warning-list li {
    background: rgba(244, 180, 0, 0.12);
}

.warning-icon {
    color: var(--accent);
}

.document-list,
.procedure-list,
.method-list,
.area-service-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.document-list li,
.procedure-list li,
.method-list li,
.area-service-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    background: rgba(247, 250, 255, 0.9);
    border: 1px solid rgba(209, 217, 235, 0.6);
    transition: transform var(--transition), box-shadow var(--transition);
}

.document-list li:hover,
.procedure-list li:hover,
.method-list li:hover,
.area-service-list li:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.document-list i,
.procedure-list i,
.method-list i,
.area-service-list i {
    font-size: 1.05rem;
    color: var(--primary);
    margin-top: 2px;
}

.area-service-list {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step-container {
    display: grid;
    gap: clamp(20px, 4vw, 28px);
}

.step-item {
    padding: clamp(24px, 5vw, 32px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(209, 217, 235, 0.6);
    background: rgba(248, 255, 244, 0.94);
    box-shadow: var(--shadow-sm);
    display: grid;
    gap: 16px;
}

.step-item h3 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-strong);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
}

.example {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-full);
    background: rgba(122, 201, 67, 0.12);
    color: var(--primary);
    font-size: 0.82rem;
    margin-top: 8px;
}

.fee-table-container {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(209, 217, 235, 0.6);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-sm);
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
}

.fee-table th,
.fee-table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(209, 217, 235, 0.6);
    text-align: left;
}

.fee-table th {
    background: rgba(122, 201, 67, 0.08);
    color: var(--text-strong);
    font-weight: 700;
}

.fee-examples {
    display: grid;
    gap: clamp(18px, 4vw, 28px);
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.fee-examples .fee-example {
    padding: clamp(20px, 4vw, 28px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(209, 217, 235, 0.6);
    background: rgba(247, 250, 255, 0.92);
    box-shadow: var(--shadow-sm);
}

.fee-examples .fee-example h4 {
    margin-top: 0;
    color: var(--primary);
}

.support-grid {
    display: grid;
    gap: clamp(20px, 4vw, 28px);
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.support-item {
    padding: clamp(20px, 4vw, 28px);
    border-radius: var(--radius-md);
    background: rgba(248, 255, 244, 0.94);
    border: 1px solid rgba(209, 217, 235, 0.6);
    box-shadow: var(--shadow-sm);
    display: grid;
    gap: 8px;
}

.support-item h3 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-strong);
}

.cta-section {
    background: linear-gradient(120deg, rgba(122, 201, 67, 0.94), rgba(42, 78, 24, 0.88));
    border-radius: var(--radius-xl);
    padding: clamp(32px, 8vw, 60px);
    color: #fff;
    box-shadow: var(--shadow-lg);
}

.cta-content {
    display: grid;
    gap: clamp(16px, 4vw, 24px);
}

.cta-buttons {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.cta-button {
    display: grid;
    gap: 6px;
    align-items: center;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    text-align: left;
    background: rgba(231, 244, 226, 0.16);
    color: #fff;
    border: 1px solid rgba(231, 244, 226, 0.24);
    font-weight: 600;
    transition: transform var(--transition), background var(--transition);
}

.cta-button:hover {
    transform: translateY(-2px);
    background: rgba(231, 244, 226, 0.24);
}

.cta-button i {
    font-size: 1.2rem;
}

.cta-button .sub-text,
.cta-button .phone-number {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.85;
}

.phone-button {
    background: rgba(34, 197, 94, 0.18);
}

.email-button {
    background: rgba(59, 130, 246, 0.18);
}

.line-button {
    background: rgba(22, 163, 74, 0.22);
}

.business-hours {
    font-size: 0.95rem;
    color: rgba(231, 244, 226, 0.85);
}

.related-services-section {
    background: rgba(15, 23, 42, 0.04);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 6vw, 48px);
    border: 1px solid rgba(209, 217, 235, 0.5);
    box-shadow: var(--shadow-sm);
}

.related-services-content {
    display: grid;
    gap: clamp(18px, 4vw, 28px);
}

.related-services-section .service-card {
    display: grid;
    gap: clamp(18px, 4vw, 28px);
    padding: clamp(24px, 5vw, 36px);
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid rgba(209, 217, 235, 0.6);
    box-shadow: var(--shadow-sm);
    grid-template-columns: minmax(80px, 120px) 1fr;
    align-items: start;
}

.related-services-section .service-icon {
    display: grid;
    place-items: center;
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    background: rgba(122, 201, 67, 0.12);
    color: var(--primary);
    font-size: 1.8rem;
}

.related-services-section .service-info {
    display: grid;
    gap: 14px;
}

.service-benefits {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.service-benefits li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.service-benefits i {
    color: var(--primary);
}

.service-action {
    display: grid;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(209, 217, 235, 0.6);
}

.service-link-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.65rem 1.4rem;
    border-radius: var(--radius-full);
    background: rgba(122, 201, 67, 0.12);
    color: var(--primary);
    font-weight: 600;
    transition: transform var(--transition), background var(--transition);
}

.consultation-note {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.9rem;
}

.service-link-button:hover {
    transform: translateY(-2px);
    background: rgba(122, 201, 67, 0.18);
}

.local-expertise {
    display: grid;
    gap: 12px;
}

.area-info {
    display: grid;
    gap: clamp(16px, 4vw, 24px);
}

.area-info .local-expertise ul {
    margin: 0;
    padding-left: 1.1rem;
}

.cta-urgent {
    margin: 0;
    color: rgba(231, 244, 226, 0.85);
}

.services-intro {
    margin: 0;
    color: var(--text-soft);
}

.color-check {
    display: inline-block;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-md);
    background: rgba(244, 180, 0, 0.16);
    color: #b45309;
    font-weight: 600;
}

.mail {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
}
.list-grid1 {
    display: grid;
    gap: clamp(16px, 4vw, 24px);
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.list-grid1 .list {
    background: rgba(248, 255, 244, 0.95);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(209, 217, 235, 0.6);
    box-shadow: var(--shadow-sm);
    padding: clamp(18px, 4vw, 24px);
    display: grid;
    gap: 12px;
    text-align: center;
}

.list-grid1 figure {
    margin: 0 auto;
    width: clamp(52px, 10vw, 96px);
    display: grid;
    place-items: center;
}

.list-grid1 .text h4 {
    margin: 0;
    color: var(--text-strong);
}

.list-grid1 .text p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.9rem;
}

.list-grid1 .btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.4rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    color: var(--primary);
    border: 1px solid rgba(122, 201, 67, 0.3);
}

.c {
    font-size: clamp(1.6rem, 3.4vw, 2.1rem);
    color: var(--text-strong);
    margin-bottom: clamp(16px, 4vw, 24px);
}

.list-half {
    display: grid;
    gap: clamp(20px, 4vw, 32px);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: start;
}

.list-half .text {
    background: rgba(248, 255, 244, 0.95);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 5vw, 32px);
    border: 1px solid rgba(209, 217, 235, 0.6);
    box-shadow: var(--shadow-sm);
}

.list-half .image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.shadow1 {
    box-shadow: var(--shadow-lg) !important;
}

.ta-box {
    margin-top: clamp(20px, 4vw, 28px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(209, 217, 235, 0.6);
    background: rgba(248, 255, 244, 0.95);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.ta1 {
    width: 100%;
    border-collapse: collapse;
}

.ta1 th,
.ta1 td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(209, 217, 235, 0.6);
    text-align: left;
}

.ta1 th {
    background: rgba(122, 201, 67, 0.08);
    width: 30%;
    font-weight: 700;
    color: var(--text-strong);
}

.text-right {
    text-align: right;
}

@media (max-width: 768px) {
    .hero-section {
        padding: clamp(48px, 16vw, 76px) clamp(18px, 6vw, 28px);
    }
}

@media (max-width: 980px) {
    .global-header {
        position: sticky;
    }

    .header-actions {
        display: none;
    }

    .top-bar {
        justify-content: space-between;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .main-nav__inner {
        flex-wrap: wrap;
        padding: 0 clamp(16px, 4vw, 24px);
    }

    .main-nav__list {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        max-height: 0;
        overflow: hidden;
        transition: max-height 220ms ease;
    }

    .main-nav__list.is-open {
        max-height: calc(100vh - 120px);
        padding-top: 16px;
        padding-bottom: 12px;
        overflow-y: auto;
    }

    .main-nav__link {
        padding: 12px 0;
        width: 100%;
    }

    .nav-cta {
        display: none;
    }

    .has-dropdown {
        width: 100%;
    }

    .nav-dropdown {
        position: static;
        border-radius: var(--radius-md);
        box-shadow: none;
        border: none;
        padding: 0;
        margin-left: 12px;
        margin-top: 0;
        background: transparent;
        display: grid;
        gap: 8px;
        max-height: 0;
        opacity: 0;
        pointer-events: none;
        overflow: hidden;
        transform: none;
        transition: max-height 220ms ease, opacity var(--transition), margin var(--transition);
    }

    .has-dropdown.is-open .nav-dropdown {
        max-height: 600px;
        opacity: 1;
        pointer-events: auto;
        margin-top: 8px;
    }

    .nav-dropdown__link {
        padding: 8px 0;
    }

    .nav-dropdown__meta {
        color: var(--text-soft);
    }

    .has-dropdown::after {
        display: none;
    }

    .page-hero {
        text-align: left;
    }

    .page-hero__title {
        font-size: clamp(2rem, 8vw, 2.4rem);
        line-height: 1.4;
    }

    .page-hero__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }


    .hero-stats {
        grid-template-columns: 1fr;
    }
    .page-hero__actions .button--line {
        width: 100%;
        justify-content: center;
        box-shadow: 0 6px 16px rgba(45, 180, 87, 0.12);
        padding: 0.95rem 1.2rem;
    }

}


@media (max-width: 640px) {
    .page-content {
        padding-top: 48px;
    }

    .page-hero {
        margin-bottom: 48px;
        padding: 88px 0;
    }

    .page-hero__content {
        width: 92vw;
        padding: 0 clamp(18px, 6vw, 28px);
        gap: 24px;
    }

    .page-hero__title {
        font-size: clamp(1.8rem, 9vw, 2.3rem);
    }

    .surface-card,
    .contact-card,
    .cta-banner {
        padding: 24px;
    }
}
