@import url('https://fonts.googleapis.com/css2?family=Kosugi:wght@400;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --fresh-white: #F8FBF9;
    --mint-mist: #F0F5F2;
    --clean-ivory: #E8F0EC;
    --deep-pine: #166534;
    --forest-green: #15803D;
    --neon-mint: #22C55E;
    --text-dark: #14532D;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    background: var(--fresh-white);
    color: var(--forest-green);
    line-height: 1.78;
    overflow-x: hidden;
}

strong, p {
    color: inherit;
}

a {
    color: var(--forest-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--neon-mint);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Kosugi', sans-serif;
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: 0.03em;
}

.floating-pill-nav {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: auto;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 12px 24px;
    background: rgba(248, 251, 249, 0.98);
    backdrop-filter: blur(24px) saturate(145%);
    border: 2px solid rgba(34, 197, 94, 0.18);
    border-radius: 100px;
    box-shadow: 0 24px 80px rgba(34, 197, 94, 0.14);
    transition: all 0.3s ease-out;
}

.floating-pill-nav.scrolled {
    background: rgba(248, 251, 249, 1);
    border-color: rgba(34, 197, 94, 0.28);
    box-shadow: 0 32px 100px rgba(34, 197, 94, 0.2);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.nav-logo svg {
    width: 28px;
    height: 28px;
}

.nav-logo span {
    font-family: 'Kosugi', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--deep-pine);
}

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

.nav-item {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Kosugi', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: var(--forest-green);
}

.nav-item:hover {
    color: var(--neon-mint);
    transform: scale(1.04);
}

.nav-item svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.mobile-menu-toggle {
    display: none;
    width: 48px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--deep-pine);
    transition: all 0.3s ease;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--fresh-white);
    z-index: 9998;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.mobile-overlay.active {
    display: flex;
}

.mobile-overlay .nav-item {
    font-size: 18px;
    padding: 16px;
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 32px;
    color: var(--deep-pine);
}

.hero-section {
    min-height: 100vh;
    padding-top: 120px;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
    align-items: center;
    background: var(--fresh-white);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 15% 25%, rgba(34, 197, 94, 0.06) 0%, transparent 45%),
        radial-gradient(ellipse at 65% 45%, rgba(34, 197, 94, 0.05) 0%, transparent 42%),
        radial-gradient(ellipse at 35% 75%, rgba(34, 197, 94, 0.04) 0%, transparent 38%),
        radial-gradient(ellipse at 80% 30%, rgba(34, 197, 94, 0.035) 0%, transparent 36%);
    animation: mesh-drift 20s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes mesh-drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 20px); }
}

.hero-content {
    padding-left: 64px;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: clamp(4.5rem, 9vw, 9rem);
    color: var(--deep-pine);
    line-height: 0.82;
    margin-bottom: 24px;
}

.hero-content .hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 19px;
    color: var(--forest-green);
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 20px 48px;
    background: linear-gradient(135deg, var(--neon-mint), var(--deep-pine));
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 16px 64px rgba(34, 197, 94, 0.42);
    cursor: pointer;
    transition: all 0.32s ease;
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 80px rgba(34, 197, 94, 0.5);
    color: white;
}

.hero-visual {
    position: relative;
    z-index: 1;
    padding-right: 64px;
}

.sharp-frame {
    border: 2px solid rgba(34, 197, 94, 0.22);
    box-shadow: 0 40px 160px rgba(34, 197, 94, 0.12), 0 12px 40px rgba(34, 197, 94, 0.06);
    overflow: hidden;
    position: relative;
}

.sharp-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: var(--forest-green);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.section {
    padding: 96px 0;
    background: var(--fresh-white);
    position: relative;
}

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

.section-dark {
    background: var(--clean-ivory);
}

.section-title {
    font-size: clamp(4.6rem, 6vw, 7rem);
    color: var(--deep-pine);
    margin-bottom: 48px;
    line-height: 0.86;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: var(--forest-green);
    line-height: 1.78;
    max-width: 900px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.service-card {
    border: 2px solid rgba(34, 197, 94, 0.22);
    box-shadow: 0 40px 120px rgba(34, 197, 94, 0.08), 0 8px 24px rgba(34, 197, 94, 0.04);
    overflow: hidden;
    transition: all 0.84s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 86;
    background: var(--fresh-white);
}

.service-card:hover {
    border-width: 3px;
    transform: scale(1.01);
    z-index: 96;
}

.service-card.large {
    grid-column: span 2;
}

.service-card.wide {
    grid-column: span 2;
}

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

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

.service-card h3 {
    font-family: 'Kosugi', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: var(--deep-pine);
    margin-bottom: 12px;
}

.service-card p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--forest-green);
    line-height: 1.6;
}

.service-card-price {
    font-family: 'Kosugi', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--neon-mint);
    margin-top: 12px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-family: 'Kosugi', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--deep-pine);
    transition: all 0.3s ease;
}

.service-card-link:hover {
    color: var(--neon-mint);
    gap: 12px;
}

.sticky-section {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 64px;
    align-items: start;
}

.sticky-content {
    position: sticky;
    top: 140px;
    padding: 48px 0;
}

.sticky-content h2 {
    font-size: clamp(4.6rem, 6vw, 7rem);
    color: var(--deep-pine);
    margin-bottom: 24px;
}

.sticky-content p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: var(--forest-green);
    line-height: 1.78;
    margin-bottom: 24px;
}

.sticky-visual {
    position: relative;
}

.timeline-container {
    overflow-x: auto;
    padding: 0 64px;
    scroll-snap-type: x mandatory;
}

.timeline {
    display: flex;
    gap: 48px;
    min-width: calc(100vw + 200px);
    padding: 32px 0;
}

.timeline-step {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    scroll-snap-align: center;
    transition: all 0.84s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 86;
    cursor: pointer;
}

.timeline-step:hover {
    transform: scale(1.12);
    z-index: 94;
}

.timeline-circle {
    width: 56px;
    height: 56px;
    border-radius: 0;
    background: var(--neon-mint);
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-circle svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.timeline-label {
    font-family: 'Kosugi', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--deep-pine);
    text-align: center;
    white-space: nowrap;
}

.marquee-section {
    overflow: hidden;
    padding: 48px 0;
    background: var(--clean-ivory);
}

.marquee-track {
    display: flex;
    gap: 64px;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-item {
    flex-shrink: 0;
    padding: 24px 32px;
    border: 2px solid var(--neon-mint);
    display: flex;
    align-items: center;
    gap: 12px;
}

.marquee-item span {
    font-family: 'Kosugi', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: var(--deep-pine);
}

.marquee-item small {
    font-family: 'Kosugi', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--forest-green);
}

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

.advantage-card {
    border: 2px solid rgba(34, 197, 94, 0.22);
    box-shadow: 0 24px 80px rgba(34, 197, 94, 0.08);
    padding: 40px 32px;
    transition: all 0.84s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 86;
    background: var(--fresh-white);
    flex-grow: 1;
}

.advantage-card:hover {
    transform: scale(1.04);
    z-index: 96;
    box-shadow: 0 32px 100px rgba(34, 197, 94, 0.12);
}

.advantage-card h3 {
    font-family: 'Kosugi', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--deep-pine);
    margin-bottom: 16px;
}

.advantage-card p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--forest-green);
    line-height: 1.6;
}

.advantage-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
}

.team-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.team-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    border: 2px solid rgba(34, 197, 94, 0.22);
    cursor: pointer;
    transition: all 0.32s ease;
    background: var(--fresh-white);
}

.team-item:hover {
    border-color: var(--neon-mint);
    transform: translateX(8px);
}

.team-item-content h4 {
    font-family: 'Kosugi', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--deep-pine);
}

.team-item-content p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--forest-green);
    margin-top: 4px;
}

.team-photo-display {
    position: sticky;
    top: 140px;
}

.team-photo-frame {
    border: 2px solid rgba(34, 197, 94, 0.22);
    overflow: hidden;
    box-shadow: 0 40px 120px rgba(34, 197, 94, 0.08);
}

.team-photo-frame img {
    width: 100%;
    height: auto;
    display: block;
}

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

.faq-item {
    border: 2px solid rgba(34, 197, 94, 0.22);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    z-index: 86;
    background: var(--fresh-white);
}

.faq-item:hover {
    z-index: 96;
    border-color: var(--neon-mint);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    font-family: 'Kosugi', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--deep-pine);
    transition: all 0.3s ease;
}

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

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 300;
    color: var(--neon-mint);
    transition: transform 0.4s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--forest-green);
    line-height: 1.6;
}

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

.faq-answer-content {
    padding: 0 24px 24px;
}

.reviews-carousel {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 48px 0;
    overflow: auto;
}

.review-card {
    flex-shrink: 0;
    width: 380px;
    border: 2px solid rgba(34, 197, 94, 0.22);
    padding: 32px;
    background: var(--fresh-white);
    transition: all 0.84s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 86;
}

.review-card:hover {
    z-index: 100;
}

.review-card.active {
    transform: scale(1.15);
    z-index: 100;
    border-color: var(--neon-mint);
    box-shadow: 0 40px 120px rgba(34, 197, 94, 0.12);
}

.review-card.side {
    transform: scale(0.85);
    opacity: 0.7;
}

.review-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-bottom: 20px;
}

.review-card p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--forest-green);
    line-height: 1.6;
    margin-bottom: 16px;
}

.review-author {
    font-family: 'Kosugi', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--deep-pine);
}

.review-date {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--forest-green);
    margin-top: 4px;
}

.carousel-nav {
    display: flex;
    gap: 16px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border: 2px solid var(--neon-mint);
    background: var(--fresh-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--neon-mint);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--deep-pine);
}

.carousel-btn:hover svg {
    stroke: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
}

.contact-info h2 {
    font-size: clamp(4.6rem, 6vw, 7rem);
    color: var(--deep-pine);
    margin-bottom: 32px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--neon-mint);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-item p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--forest-green);
    line-height: 1.6;
}

.contact-info-item strong {
    font-family: 'Kosugi', sans-serif;
    font-weight: 700;
    color: var(--deep-pine);
    display: block;
    margin-bottom: 4px;
}

.contact-form {
    border: 2px solid rgba(34, 197, 94, 0.22);
    padding: 48px;
    box-shadow: 0 40px 120px rgba(34, 197, 94, 0.08);
    background: var(--fresh-white);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: 'Kosugi', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--deep-pine);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--neon-mint);
    border-radius: 0 8px 16px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--forest-green);
    background: white;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--deep-pine);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(21, 128, 61, 0.5);
}

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

.form-submit {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--neon-mint), var(--deep-pine));
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.32s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(34, 197, 94, 0.4);
}

.footer {
    background: var(--clean-ivory);
    border-top: 3px solid var(--neon-mint);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col h4 {
    font-family: 'Kosugi', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--deep-pine);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

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

.footer-col a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--forest-green);
    transition: color 0.3s ease;
}

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

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

.footer-logo svg {
    width: 32px;
    height: 32px;
}

.footer-logo span {
    font-family: 'Kosugi', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--deep-pine);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(34, 197, 94, 0.22);
}

.footer-bottom p {
    font-family: 'Kosugi', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: var(--forest-green);
}

.cookie-consent-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 380px;
    max-width: calc(100vw - 48px);
    padding: 24px;
    background: rgba(248, 251, 249, 0.98);
    backdrop-filter: blur(24px);
    border: 2px solid var(--neon-mint);
    box-shadow: 0 24px 80px rgba(34, 197, 94, 0.2);
    z-index: 9997;
    display: block;
}

.cookie-consent-banner.hidden {
    display: none;
}

.cookie-title {
    font-family: 'Kosugi', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--deep-pine);
    margin-bottom: 12px;
}

.cookie-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--forest-green);
    line-height: 1.5;
    margin-bottom: 16px;
}

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

.cookie-btn {
    flex: 1;
    padding: 12px 16px;
    font-family: 'Kosugi', sans-serif;
    font-weight: 500;
    font-size: 12px;
    border: 2px solid var(--neon-mint);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background: var(--neon-mint);
    color: white;
}

.cookie-btn-decline {
    background: transparent;
    color: var(--deep-pine);
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

.cookie-link {
    display: block;
    margin-top: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--forest-green);
    text-decoration: underline;
}

.cookie-link:hover {
    color: var(--neon-mint);
}

.gmap-container {
    width: 100%;
    height: 400px;
    border: 2px solid rgba(34, 197, 94, 0.22);
    margin-top: 32px;
}

.gmap-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

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

.gallery-item {
    border: 2px solid rgba(34, 197, 94, 0.22);
    overflow: hidden;
    transition: all 0.84s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.02);
    border-color: var(--neon-mint);
}

.gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.gallery-item-info {
    padding: 16px;
    background: var(--fresh-white);
}

.gallery-item-info h4 {
    font-family: 'Kosugi', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--deep-pine);
    margin-bottom: 4px;
}

.gallery-item-info p {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--forest-green);
}

.hero-compact {
    padding: 140px 0 80px;
    text-align: center;
    background: var(--fresh-white);
    position: relative;
}

.hero-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 15% 25%, rgba(34, 197, 94, 0.06) 0%, transparent 45%),
        radial-gradient(ellipse at 65% 45%, rgba(34, 197, 94, 0.05) 0%, transparent 42%),
        radial-gradient(ellipse at 35% 75%, rgba(34, 197, 94, 0.04) 0%, transparent 38%);
    pointer-events: none;
}

.hero-compact h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--deep-pine);
    line-height: 0.9;
    margin-bottom: 24px;
    position: relative;
}

.hero-compact p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: var(--forest-green);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 24px;
}

.legal-content h2 {
    font-family: 'Kosugi', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--deep-pine);
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-family: 'Kosugi', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--deep-pine);
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-content p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--forest-green);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--forest-green);
    line-height: 1.8;
    margin-bottom: 8px;
}

.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px;
    background: var(--fresh-white);
    position: relative;
}

.thank-you-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 15% 25%, rgba(34, 197, 94, 0.06) 0%, transparent 45%),
        radial-gradient(ellipse at 65% 45%, rgba(34, 197, 94, 0.05) 0%, transparent 42%);
    pointer-events: none;
}

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

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    background: var(--neon-mint);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.thank-you-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--deep-pine);
    margin-bottom: 16px;
}

.thank-you-content p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: var(--forest-green);
    max-width: 500px;
    margin-bottom: 32px;
}

.thank-you-content .cta-button {
    display: inline-flex;
    padding: 16px 32px;
}

.service-detail-section {
    padding: 140px 0 96px;
    background: var(--fresh-white);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.service-detail-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--deep-pine);
    margin-bottom: 24px;
    line-height: 0.9;
}

.service-detail-content p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: var(--forest-green);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-top: 32px;
}

.service-features li {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--forest-green);
    padding: 12px 0;
    border-bottom: 1px solid rgba(34, 197, 94, 0.22);
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--neon-mint);
    flex-shrink: 0;
}

.service-price-box {
    border: 2px solid var(--neon-mint);
    padding: 32px;
    background: var(--fresh-white);
    position: sticky;
    top: 140px;
}

.service-price-box h3 {
    font-family: 'Kosugi', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--deep-pine);
    margin-bottom: 24px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(34, 197, 94, 0.22);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item span {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--forest-green);
}

.price-item strong {
    font-family: 'Kosugi', sans-serif;
    font-weight: 700;
    color: var(--neon-mint);
}

.price-total {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid var(--neon-mint);
}

.price-total span {
    font-family: 'Kosugi', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--deep-pine);
}

.price-total strong {
    font-family: 'Kosugi', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--neon-mint);
}

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

.area-card {
    border: 2px solid rgba(34, 197, 94, 0.22);
    padding: 32px;
    transition: all 0.84s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: var(--fresh-white);
}

.area-card:hover {
    border-color: var(--neon-mint);
    transform: translateY(-4px);
}

.area-card h3 {
    font-family: 'Kosugi', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--deep-pine);
    margin-bottom: 12px;
}

.area-card p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--forest-green);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .floating-pill-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-section {
        grid-template-columns: 1fr;
        padding-top: 100px;
    }
    
    .hero-content {
        padding-left: 24px;
        padding-right: 24px;
        order: 2;
    }
    
    .hero-visual {
        padding-right: 24px;
        order: 1;
    }
    
    .hero-content h1 {
        font-size: clamp(2.5rem, 7vw, 4rem);
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.large,
    .service-card.wide {
        grid-column: span 1;
    }
    
    .sticky-section {
        grid-template-columns: 1fr;
    }
    
    .sticky-content {
        position: relative;
        top: 0;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .team-section {
        grid-template-columns: 1fr;
    }
    
    .team-photo-display {
        position: relative;
        top: 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .service-price-box {
        position: relative;
        top: 0;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 64px 0;
    }
    
    .section-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .hero-content {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .hero-visual {
        padding-right: 16px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-consent-banner {
        left: 16px;
        right: 16px;
        width: auto;
        max-width: none;
    }
    
    .reviews-carousel {
        flex-direction: column;
        gap: 16px;
    }
    
    .review-card {
        width: 100%;
    }
    
    .review-card.active,
    .review-card.side {
        transform: scale(1);
        opacity: 1;
    }
    
    .carousel-nav {
        justify-content: center;
    }
}