:root {
    /* Sophisticated Color Palette */
    --c-primary: #4a7c2c;    /* Deep, muted green */
    --c-secondary: #d97706;  /* Earthy orange */
    --c-accent: #facc15;     /* Refined yellow */
    --c-text: #333333;       /* Nearly black */
    --c-text-muted: #5e6b56;
    --c-bg: #fffcf9;         /* Off-white paper feel */
    --c-bg-alt: #f1f5f0;
    --c-border: #e2e8df;
    
    /* Typography */
    --f-sans: 'Noto Sans JP', sans-serif;
    --f-serif: 'Zen Maru Gothic', sans-serif;
    --f-lead: 'Zen Kaku Gothic New', sans-serif;
    --f-en: 'Outfit', sans-serif;
    
    /* Motion */
    --e-fluid: cubic-bezier(0.3, 0.8, 0.3, 1);
    --e-slow: cubic-bezier(0.2, 0, 0.2, 1);
}

/* Base & Texture */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body {
    font-family: var(--f-sans);
    color: var(--c-text);
    background-color: var(--c-bg);
    line-height: 1.8;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.grain-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3BaseFilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/baseFilter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.container--narrow {
    max-width: 900px;
}

.serif { font-family: var(--f-serif); font-weight: 900; }
.en-label { 
    font-family: var(--f-en); 
    text-transform: uppercase; 
    letter-spacing: 0.2em; 
    font-size: 0.7rem; 
    color: var(--c-primary);
    display: block;
    margin-bottom: 4px;
}

/* Header */
.header {
    padding: 40px 0;
    background: transparent;
    position: absolute;
    top: 0; left: 0; width: 100%;
    z-index: 100;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__brand {
    display: flex;
    flex-direction: column;
}

.en-label { 
    font-family: var(--f-en); 
    text-transform: uppercase; 
    letter-spacing: 0.25em; 
    font-size: 0.85rem; 
    font-weight: 600;
    color: var(--c-primary);
    display: block;
    margin-bottom: 6px;
}

.header__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-primary);
    line-height: 1.2;
}

.header__nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--c-text);
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
    letter-spacing: 0.05em;
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--c-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--e-fluid);
}

.nav-link:hover {
    color: var(--c-primary);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Hero Section (Asymmetric & Overlapping) */
.hero {
    padding: 160px 0 0; /* No bottom padding here */
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    position: relative;
    width: 100%;
}

.hero__caption {
    position: relative;
    z-index: 10;
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    padding-right: 40px;
    padding-bottom: 120px; /* Text keeps its own breathing room */
    pointer-events: none;
    max-width: 800px;
}

.hero__visual {
    position: relative;
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    justify-self: end;
    align-self: end; /* Pin to the bottom of the grid row */
    width: 65%;
    z-index: 1;
    overflow: visible;
}

.nowrap {
    white-space: nowrap;
}

.eyebrow {
    font-family: var(--f-en);
    background: var(--c-accent);
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    display: inline-block;
    margin-bottom: 40px;
    box-shadow: 10px 10px 0 rgba(0,0,0,0.05);
}

.hero__title {
    font-family: var(--f-serif);
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: 1.05;
    font-weight: 900;
    color: var(--c-text);
    text-shadow: 0 0 30px #fff, 0 0 30px #fff; /* To stand out against the image shadow if overlapped */
}

.hero__lead {
    font-family: var(--f-lead);
    font-size: 1.35rem;
    color: var(--c-text-muted);
    font-weight: 400;
    line-height: 1.7;
    margin-top: 30px;
    padding-left: 30px;
    border-left: 2px solid var(--c-primary);
    width: fit-content;
}

.hero__image-wrapper {
    position: relative;
    /* Removed card-like clipping and shadows to let the illustration breathe */
}

.hero__img {
    width: 100%;
    height: auto;
    filter: sepia(0.05) brightness(1.05);
    display: block;
    position: relative;
    z-index: 2;
    margin-top: 110px;
    margin-bottom: 0px; /* Ensure no extra space at bottom */
}

.hero__decoration {
    position: absolute;
    top: 25%; left: 25%;
    transform: translate(-30%, -40%);
    width: 120%; height: 120%;
    background: var(--c-bg-alt);
    z-index: 1;
    border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
    opacity: 0.6;
    pointer-events: none;
}

.hero__decoration::after {
    content: "";
    position: absolute;
    top: 0; right: 10%;
    width: 80px; height: 80px;
    background: var(--c-accent);
    border-radius: 50%;
    opacity: 0.3;
}

/* General Styles */
main {
    overflow: hidden;
    width: 100%;
}

.section {
    padding: 120px 0;
    overflow: hidden;
}

.section-heading {
    font-size: 2.5rem;
    margin-bottom: 40px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.section-heading::before {
    content: "";
    position: absolute;
    top: 50%; left: -0.4em;
    transform: translateY(-40%);
    width: 2.2em; height: 2.2em;
    background: var(--c-bg-alt);
    border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
    z-index: -1;
    opacity: 0.8;
    max-width: 90vw; /* Prevent from overflowing the viewport */
}

.usage .section-heading::before {
    background: #fff;
    opacity: 1;
}

/* About Section */
.about {
    border-top: 1px solid var(--c-border);
}

.about__desc {
    font-size: 1.2rem;
    margin-bottom: 60px;
}

.fee-display {
    background: #fff;
    padding: 60px;
    border: 1px solid var(--c-border);
    border-radius: 4px;
    position: relative;
}

.fee-display__body {
    width: fit-content;
    margin: 0 auto;
}

.fee-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
}

.fee-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--c-text-muted);
    width: 140px; /* Increased to prevent wrapping */
    flex-shrink: 0;
}

.fee-group {
    display: flex;
    gap: 15px;
}

.fee-tag {
    padding: 12px 24px;
    background: var(--c-bg-alt);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 2px;
}

.fee-plus-icon {
    margin: 15px 0;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--c-secondary);
    text-shadow: 0 2px 10px rgba(217, 119, 6, 0.2);
}

.fee-row--new .fee-tag--highlight {
    background: var(--c-secondary);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(217, 119, 6, 0.2);
}

.fee-note {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed var(--c-border);
    font-size: 0.9rem;
    color: var(--c-text-muted);
    text-align: center; /* Ensure the note is centered */
}

/* Usage Section (Offset Layout) */
.usage {
    background: var(--c-bg-alt);
    position: relative;
}

.usage__notes {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--c-text-muted);
}

.usage__notes li {
    text-indent: -1em;
    padding-left: 1em;
}

.usage__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.usage-card {
    background: #fff;
    padding: 40px;
    position: relative;
    transition: transform 0.6s var(--e-fluid);
}

.usage-card:nth-child(even) {
    transform: translateY(40px);
}

.usage-card__num {
    font-family: var(--f-en);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--c-secondary);
    display: block;
    margin-bottom: 15px;
}

.usage-card__title-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.usage-card__title {
    font-size: 1.25rem;
    font-weight: 700;
}

.usage-card__badge {
    font-family: var(--f-en);
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    background: var(--c-secondary);
    padding: 2px 10px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    display: inline-block;
}

.usage-card__text {
    font-size: 0.95rem;
    color: var(--c-text-muted);
}

/* Cost Section */
.cost__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.cost__avg {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
}

.cost__avg-label {
    font-size: 0.9rem;
    color: var(--c-text-muted);
}

.cost__avg-value {
    font-family: var(--f-en);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--c-primary);
}

.cost__avg-value small {
    font-size: 1.5rem;
    margin-left: 5px;
}

.cost__formula-card {
    background: var(--c-bg-alt);
    padding: 30px;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.cost__formula {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.cost__formula-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.formula-box {
    background: #fff;
    padding: 12px 10px;
    border: 1px solid var(--c-border);
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    width: 140px;
    text-align: center;
    flex-shrink: 0;
}

.formula-box.highlight {
    background: var(--c-primary);
    color: #fff;
    border-color: var(--c-primary);
    width: fit-content;
    min-width: 260px;
    padding: 15px 30px;
    margin: 0 auto;
}

.formula-symbol {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--c-text-muted);
}

.formula-arrow {
    font-size: 2.2rem; /* Even larger */
    font-weight: 900;
    color: var(--c-secondary); /* Switch to standout orange */
    line-height: 1;
    margin: 10px 0;
    text-align: center;
    text-shadow: 0 2px 10px rgba(217, 119, 6, 0.2);
}

.formula-note {
    font-size: 0.8rem;
    text-indent: -1em;
    padding-left: 1em;
    color: var(--c-text-muted);
    line-height: 1.6;
    text-align: left;
}

.cost__table-sub {
    font-size: 0.9rem;
    color: var(--c-text-muted);
    margin-bottom: 20px;
}

.cost__link {
    margin-top: 30px;
    text-align: right;
}

.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end; /* Align to right for cost section */
    gap: 8px;
    color: var(--c-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
    text-align: left; /* Text inside can align left */
    max-width: 100%; /* Ensure it doesn't exceed parent */
}

.text-link:hover {
    color: var(--c-secondary);
    text-decoration: underline;
}

/* Chart */
.chart-container {
    background: #fff;
    padding: 40px;
    border: 1px solid var(--c-border);
    overflow: hidden; /* Added to clip labels */
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    height: 180px;
    margin-top: 40px; /* Space for labels above bars */
    margin-bottom: 20px;
    padding-bottom: 40px;
    position: relative;
    border-bottom: 1px solid var(--c-text);
}

.chart-item {
    flex: 1;
    background: var(--c-primary);
    height: var(--h);
    position: relative;
    transition: height 1s var(--e-fluid);
}

.chart-item::before {
    content: attr(data-value);
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    font-weight: 700;
    white-space: nowrap;
    color: var(--c-text-muted);
}

.chart-item::after {
    content: attr(data-label);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--f-en);
}

.chart-item--max { background: var(--c-secondary); }
.chart-item--dashed {
    background: var(--c-bg-alt);
    border: 1px dashed var(--c-secondary);
    opacity: 0.8;
}

.chart-caption {
    font-size: 0.75rem;
    text-indent: -1em;
    padding-left: 1em;
    text-align: left;
    color: var(--c-text-muted);
}

/* Table */
.minimal-table {
    width: 100%;
    border-collapse: collapse;
}

.minimal-table th {
    padding: 20px;
    text-align: left;
    border-bottom: 2px solid var(--c-text);
    font-size: 0.9rem;
    color: var(--c-text-muted);
}

.minimal-table td {
    padding: 24px 20px;
    border-bottom: 1px solid var(--c-border);
}

/* CTA */
.cta-inner {
    background: #2a4a1a; /* Sophisticated deep green instead of flat black */
    padding: 80px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: "";
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta__title {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    z-index: 1;
    line-height: 1.4;
}

.cta__title::before {
    content: "";
    position: absolute;
    top: 50%; left: -0.4em;
    transform: translateY(-40%);
    width: 2.2em; height: 2.2em;
    background: rgba(255, 255, 255, 0.15); /* Subtle white glow on dark background */
    border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
    z-index: -1;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    color: var(--c-text);
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 40px;
    transition: transform 0.3s;
}

.cta-btn:hover {
    transform: translateY(-5px);
}

.footer {
    padding: 60px 0;
    border-top: 1px solid var(--c-border);
    font-size: 0.8rem;
    color: var(--c-text-muted);
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        position: relative;
        width: 100%;
    }
    .container { 
        padding: 0 16px; 
        max-width: 100vw; 
        /* Removed overflow: hidden from here to allow bleeding elements, 
           handled per-section or by main/body instead */
    }
    
    .hero,
    .hero .container,
    .hero__visual,
    .hero__image-wrapper { 
        overflow: visible !important; 
    }
    
    .nowrap { white-space: normal !important; }
    
    /* Ensure content stays within viewport */
    .section-heading { font-size: 1.6rem !important; word-break: break-all; max-width: 100%; }
    .section-heading::before { width: 1.4em; height: 1.4em; left: -0.1em; }
    
    .usage__header, .cost__info { left: 0 !important; transform: none !important; }
    
    /* Hero Title Adjust */
    .hero__title { font-size: clamp(2rem, 10vw, 2.8rem); line-height: 1.1; }
    .hero__title span.nowrap { white-space: normal; } /* Allow wrap for long words on tiny screens */
    
    /* Hero Decoration Fix for Mobile */
    .hero__visual { width: 100%; overflow: hidden; }
    .hero__decoration { width: 100%; left: 0; transform: translate(0, -50%); }

    /* Formula Card Responsive */
    .cost__formula-card { padding: 20px 8px; overflow: hidden; text-align: center; }
    .cost__formula-row { gap: 4px; width: 100%; justify-content: center; margin-bottom: 5px; }
    .formula-box { width: 44%; flex: none; padding: 10px 2px; font-size: 0.72rem; max-width: none; }
    .formula-symbol { font-size: 0.8rem; }
    .formula-box--result { width: 90%; min-width: 0; padding: 12px 10px; font-size: 0.9rem; }
    .formula-arrow { 
        font-size: 2.2rem; 
        margin: 5px auto; 
        display: block; 
    }
    
    /* Chart Responsive */
    .chart-container { padding: 30px; }
    .chart-bars { gap: 5px; height: 130px; }
    .chart-item::before { font-size: 0.5rem; top: -15px; }
    .chart-item::after { font-size: 0.6rem; bottom: -30px; }
    .chart-caption { font-size: 0.7rem; }

    /* Header optimization */
    .header { padding: 20px 0; position: relative; }
    .header__inner { flex-direction: column; gap: 20px; align-items: center; text-align: center; }
    .header__logo { font-size: 1.2rem; }
    .en-label { font-size: 0.7rem; }
    .header__nav { 
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px; 
        width: 100%; 
        border-top: 1px solid var(--c-border); 
        padding-top: 25px; 
        margin-top: 5px;
    }
    .nav-link { 
        font-size: 0.8rem; 
        white-space: nowrap;
        text-align: left; 
        padding: 12px 12px;
        background: #fff !important;
        border: 1px solid var(--c-border) !important;
        border-radius: 10px;
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        color: var(--c-text);
        text-decoration: none !important;
        transition: all 0.2s ease;
        font-weight: 500;
        position: relative;
        overflow: hidden;
    }
    /* Reset any global nav-link decorations */
    .nav-link::before { display: none !important; }
    
    .nav-link::after {
        content: "→" !important;
        position: static !important; /* Reset from potential absolute positioning */
        transform: none !important;
        width: auto !important;
        height: auto !important;
        background: none !important;
        font-family: var(--f-en);
        font-size: 0.9rem;
        margin-left: 5px;
        color: var(--c-primary);
        font-weight: 700;
        opacity: 0.8;
        display: inline-block !important;
        flex-shrink: 0;
    }
    .nav-link:last-child {
        grid-column: 1 / 3;
    }
    .nav-link:active {
        transform: scale(0.97);
        background: var(--c-bg-alt);
        border-color: var(--c-primary);
    }

    /* Hero Optimization - Vertical Stack */
    .hero { padding: 40px 0 0; min-height: auto; }
    .hero__grid { display: flex; flex-direction: column; text-align: center; gap: 40px; }
    .hero__caption { padding-right: 0; max-width: 100%; }
    .hero__title { 
        font-size: 2rem !important; 
        margin-bottom: 20px; 
        line-height: 1.2; 
        word-break: break-all;
        width: 100%;
    }
    .hero__visual { 
        width: 100%;    
        max-width: 100%; 
        justify-self: center; 
        order: 1; 
        margin-bottom: 0; /* Clear PC's negative margin */
        padding: 40px 0 0; /* Add some padding for the decoration */
    }
    .hero__decoration {
        width: 130%; /* Slightly larger than the image area to feel like an accent */
        height: 110%;
        left: 50%;
        top: 35%;
        transform: translate(-50%, -45%);
        opacity: 0.4;
        border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%; /* Original organic shape */
        background: var(--c-bg-alt);
    }
    .hero__decoration::after {
        width: 60px;
        height: 60px;
        right: 5%;
        top: 0;
    }
    .hero__img { margin-top: 0; }
    .hero__lead { order: 2; margin-top: 0; text-align: left; font-size: 1.1rem; }
    .eyebrow { margin-bottom: 20px; }

    .hero__caption {
        padding-bottom: 0;
    }

    .cost__split, .usage__grid {
        grid-template-columns: 1fr !important;
    }
    .cost__split { gap: 40px; }
    .cost__avg-value { font-size: 3rem; }


    .usage-card:nth-child(even) { transform: none; }
    
    .fee-display { padding: 24px 12px; overflow: hidden; }
    .fee-display__body { width: 100%; max-width: 100%; margin: 0; }
    .fee-row { flex-direction: column !important; align-items: stretch !important; gap: 12px; width: 100%; }
    .fee-label { width: auto; font-size: 0.85rem; margin-bottom: 4px; text-align: center; }
    .fee-group { flex-direction: column !important; gap: 8px; width: 100%; }
    .fee-tag { 
        padding: 12px 8px; 
        font-size: 0.85rem; 
        width: 100% !important; 
        max-width: 100%;
        text-align: center;
    }
    .fee-tag--highlight { width: 100% !important; } 
    
    .fee-plus-icon { 
        margin: 15px 0; 
        font-size: 2.2rem;
    }
    .cta-inner { padding: 60px 24px; }
    .cta__title { font-size: 2rem; }
}

/* Page Top Button */
.pagetop {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 65px;
    height: 65px;
    background: var(--c-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s var(--e-fluid), opacity 0.4s var(--e-fluid), visibility 0.4s, background-color 0.3s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    /* Organic shape: Different from h2 (40% 60% 30% 70% / 60% 30% 70% 40%) */
    border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%;
    box-shadow: 0 10px 30px rgba(74, 124, 44, 0.2);
}

@keyframes pagetop-wobble {
    0%, 100% {
        border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%;
        transform: translateY(0) rotate(0deg);
    }
    33% {
        border-radius: 40% 60% 30% 70% / 60% 35% 65% 40%;
        transform: translateY(-8px) rotate(2deg); /* Removed translateX */
    }
    66% {
        border-radius: 70% 30% 65% 35% / 35% 70% 30% 65%;
        transform: translateY(-3px) rotate(-2deg); /* Removed translateX */
    }
}

.pagetop.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    animation: pagetop-wobble 5s infinite ease-in-out;
}

.pagetop:hover {
    animation-play-state: paused;
    transform: translateY(-10px) scale(1.1);
    background: var(--c-secondary);
    box-shadow: 0 15px 40px rgba(217, 119, 6, 0.3);
}

.pagetop svg {
    transition: transform 0.4s var(--e-fluid);
}

.pagetop:hover svg {
    transform: translateY(-3px);
}

@media (max-width: 900px) {
    .pagetop {
        right: 20px;
        bottom: 20px;
        width: 55px;
        height: 55px;
    }
}

