/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #000000;
    line-height: 1.8;
    overflow-x: hidden;
}

h2 {
    font-size: 32px;
    line-height: 200%;
    letter-spacing: 0.5px;
}

h3 {
    font-size: 28px;
    line-height: 200%;
    letter-spacing: 0.5px;
}

p {
    font-size: 16px;
    line-height: 200%;
    letter-spacing: 0.8px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1;
}

a {
    text-decoration: none;
}

.mt-24 {
    margin-top: 24px;
}

/* Header */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 80px);
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
    transition: opacity 0.4s ease, visibility 0.4s ease;
    /* 初期状態：非表示・クリック無効 */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.header.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 20px;
    color: #2B5BA6;
}

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

.nav a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: normal;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.nav a:hover {
    opacity: 0.85;
}

.btn-contact {
    background: #2B5BA6;
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: #1e4478;
    transform: translateY(-2px);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2B5BA6;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    width: calc(100% - 80px);
    max-width: 1200px;
    background: white;
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.mobile-nav a {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 70px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100%;
    background-image: url(https://ichipura.com/JAPolis_coporate/img/earth_bg.png);
    background-size: 58%;
    background-repeat: no-repeat;
    background-position: 100% 75%;
    z-index: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--back_ground_color, linear-gradient(252deg, #88BFEF 2.75%, #4F92CD 45.64%, #284A67 81.24%));
    z-index: -1;
}

.hero-content img {
    width: 80%;
}

/* PC用ロゴ（デフォルト表示） */
.hero-content img.hero-logo-pc {
    display: block;
    width: 200px;
    height: auto;
    margin-bottom: 32px;
}

/* PC用タイトル画像（デフォルト表示） */
.hero-title-pc {
    display: block;
}

/* SP用タイトル画像（デフォルト非表示） */
.hero-title-sp {
    display: none;
}

.hero-title {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.hero-subtitle-en {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.hero-text {
    max-width: 900px;
    margin-top: 32px;
    color: #ffffff;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
}

.scroll-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: normal;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

.scroll-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

/* 矢印が順番に点灯するアニメーション */
.scroll-arrow {
    opacity: 0;
    display: block;
}

.scroll-arrow:nth-child(1) {
    animation: arrowFlow 1.8s ease-in-out infinite;
    animation-delay: 0s;
}

.scroll-arrow:nth-child(2) {
    animation: arrowFlow 1.8s ease-in-out infinite;
    animation-delay: 0.3s;
}

.scroll-arrow:nth-child(3) {
    animation: arrowFlow 1.8s ease-in-out infinite;
    animation-delay: 0.6s;
}

@keyframes arrowFlow {
    0% {
        opacity: 0;
        transform: translateY(-4px);
    }

    30% {
        opacity: 1;
        transform: translateY(0);
    }

    60% {
        opacity: 0.3;
        transform: translateY(3px);
    }

    100% {
        opacity: 0;
        transform: translateY(6px);
    }
}

/* Section Titles */
.section-title-en {
    color: var(--orange, #E8AE32);
    font-family: Futura;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 3.2px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #EFEFEF;
    background-image: url(https://ichipura.com/JAPolis_coporate/img/wamon.png);
    background-size: cover;
}

.about-diagram {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.about-diagram img {
    width: 100%;
    max-width: 803px;
}

.diagram-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.diagram-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #2B5BA6;
}

.diagram-symbol {
    font-size: 32px;
    color: #C8A882;
    font-weight: 700;
}

.diagram-logo {
    margin: 0 20px;
}

.logo-circle {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.about-description {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.description-item p {
    font-size: 15px;
    line-height: 1.8;
    text-align: center;
}

.mvv {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

}

.mvv-item {
    text-align: center;
    padding: 12px 0;
    position: relative;
    box-sizing: content-box;
}

.mvv-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right,
            #88BFEF 0%,
            #4F92CD 35%,
            #284A67 70%,
            #E8AE32 90%,
            #E8AE32 0%);
}


.mvv-item:hover {
    transform: translateY(-5px);
}

.mvv-item .title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    background: var(--back_ground_color, linear-gradient(252deg, #88BFEF 2.75%, #4F92CD 45.64%, #284A67 81.24%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    font-weight: 700;
}

/* Service Section */
.service {
    position: relative;
    padding: 100px 0;
    background: #284A67;
    color: white;
    border-bottom: 10px solid #000000;
}

.service-intro {
    margin-bottom: 24px;
}

.service-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 12px;
}

.pillar {
    display: flex;
    width: 384px;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    border-radius: 4px;
    border-top: 1px solid var(--orange, #E8AE32);
    border-left: 1px solid var(--orange, #E8AE32);
}

.pillar .category {
    font-size: 20px;
    line-height: 150%;
    font-weight: 700;
}

/* Service Detail */
.service-detail1 {
    color: #000000;
    display: flex;
    padding: 40px;
    align-items: center;
    gap: 85px;
    align-self: stretch;
    border-radius: 4px 4px 0 0;
    background: var(--white, #FFF);
    position: relative;
}

/* グラデーションのborder-topを疑似要素で作成 */
.service-detail1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(252deg, #88BFEF 2.75%, #4F92CD 45.64%, #284A67 81.24%);
    border-radius: 4px 4px 0 0;
}

.service-detail-sub {
    color: #000000;
    display: flex;
    padding: 40px;
    align-items: center;
    gap: 85px;
    align-self: stretch;
    background: var(--white, #FFF);
    position: relative;
    z-index: 10;
}

.service-detail-sub::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(252deg, #88BFEF 2.75%, #4F92CD 45.64%, #284A67 81.24%);
}

.service-detail.alt {
    background: #FAF8F5;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-content.reverse {
    direction: rtl;
}

.service-detail-content.reverse>* {
    direction: ltr;
}

.service-number img {
    width: 60px;
}

.service-detail-category {
    width: fit-content;
    padding: 8px 12px;
    border-radius: 8px;
    background: var(--gray, #626262);
    color: var(--white, #FFF);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 200%;
    letter-spacing: 0.8px;
    margin-top: 12px;
}

.service-detail-description {
    margin-top: 32px;
    margin-bottom: 16px;
}

/* SP用ロゴ画像：PCでは非表示 */
.service-sp-logo {
    display: none;
}

.service-sns {
    margin-bottom: 24px;
    display: flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 32px;
    align-self: stretch;
    border-radius: 4px;
    background: var(--back_ground_color_2, #EFEFEF);
    font-weight: 700;
}

.sns-icons {
    display: flex;
    align-items: center;
    gap: 40px;
}

.sns-icons img {
    width: 50px;
    height: 50px;
    aspect-ratio: 1/1;
}

.sns-icons a:hover {
    transform: scale(1.1);
}

.btn-detail {
    color: #ffffff;
    display: flex;
    padding: 12px 80px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    background: var(--back_ground_color, linear-gradient(252deg, #88BFEF 2.75%, #4F92CD 45.64%, #284A67 81.24%));
    box-shadow: -1px 2px 6px 0 rgba(0, 0, 0, 0.25);
    width: fit-content;
}

.btn-detail span img {
    width: 24px;
    display: block;
}

.btn-detail:hover {
    background: #284A67;
}

.service-detail-image {
    border-radius: 10px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.back-img {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

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

/* Philosophy Section */
.philosophy {
    padding: 80px 0 0 0;
    background: #EFEFEF;
    border-bottom: 1px solid #000000;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.philosophy-text {
    font-size: 16px;
    line-height: 2;
}

.philosophy-text p {
    margin-bottom: 15px;
}

.philosophy-images {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    top: -150px;
}

.philosophy-image img {
    width: 100%;
    height: 100%;
}

/* Message Section */
.message {
    padding: 80px 0;
    background: #EFEFEF;
}

.message-content {
    display: grid;
    grid-template-columns: 40% 1fr;
    margin-top: 24px;
    overflow: hidden;
}

.message-image {
    border-radius: 4px;
}

.message-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.message-text {
    padding: 24px;
    background: #ffffff;
    border-radius: 4px;
    z-index: 10;
    position: relative;
    top: 40px;
    left: -40px;
    width: calc(100% + 40px);
}

.message-text h3 {
    font-family: Futura;
    font-size: 32px;
    font-weight: 700;
}

.message-name {
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #4F92CD;
    margin-bottom: 24px;
}

.message-body {
    font-size: 15px;
    line-height: 2;
}

.message-body p {
    margin-bottom: 20px;
}

.message-signature {
    margin-top: 24px;
    text-align: right;
}

.message-signature img {
    width: 231px;
}

/* Company Section */
.company {
    position: relative;
    padding: 80px 0;
    background: #284A67;
    color: white;
}

.company-table {
    margin-top: 24px;
}

.company-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    padding: 16px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.company-row:last-child {
    border-bottom: none;
}

.company-label {
    font-weight: 700;
    font-size: 16px;
}

.company-value {
    font-size: 16px;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 80px 0 32px;
    background: #ffffff;
}

.contact-boxes {
    display: flex;
    gap: 120px;
    justify-content: center;
    align-items: center;
}

.contact-box {
    text-align: center;
    padding: 24px;
}

.contact-box-title {
    font-size: 16px;
    margin-bottom: 24px;
}

.mail-button {
    display: inline-flex;
    align-items: center;
    min-height: 56px;
    gap: 8px;
    padding: 12px 80px;
    background: linear-gradient(135deg, #88BFEF, #4F92CD, #284A67);
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.05em;
    transition: opacity 0.2s ease;
}

.mail-button:hover {
    background: #284A67;
}

.btn-icon {
    width: 24px;
    position: relative;
    top: 4px;
}

.line {
    height: 144px;
}

/* Footer */
.footer {
    background: #ffffff;
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #626262;
    text-decoration: underline;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.85;
}

.copyright {
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .service-detail-content {
        grid-template-columns: 1fr;
    }

    .service-detail-content.reverse {
        direction: ltr;
    }

    .message-content {
        grid-template-columns: 1fr;
    }
}

/* ===== SP（〜768px）===== */
@media (max-width: 768px) {
    p {
        font-size: 14px;
    }

    /* ヘッダー：SP非追従・透明背景・position:absoluteでFV上に固定 */
    .header {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        transform: none;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* スクロール後のSPヘッダーも透明維持 */
    .header.visible {
        background: transparent;
        box-shadow: none;
    }

    .header-content {
        padding: 16px 0 0;
    }

    /* SPロゴ幅 */
    .logo svg {
        width: 100px;
        height: auto;
    }

    /* ハンバーガー：白・2本線 */
    .hamburger {
        gap: 7px;
        position: relative;
        z-index: 1100;
    }

    .hamburger span {
        background: #ffffff;
    }

    /* 3本目の線を非表示にして2本線に */
    .hamburger span:nth-child(2) {
        display: none;
    }

    /* ×表示時：1本目と3本目で×を作る */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(0px, 7px) !important;
    }

    .hamburger.active span:nth-child(2) {
        display: none !important;
        opacity: 0 !important;
    }

    .hamburger.active span:nth-child(3) {
        display: block;
        transform: rotate(-45deg) translate(0px, -7px) !important;
    }

    /* モバイルメニュー：全画面オーバーレイ */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        background: #284A67;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .mobile-menu.active {
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .mobile-nav {
        align-items: center;
        gap: 8px;
        padding: 40px 20px;
    }

    .mobile-nav a {
        color: #ffffff;
        font-size: 14px;
        font-weight: 500;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        text-align: center;
        width: 240px;
    }

    /* ×ボタン用：メニューオープン時は3本目を戻して×表示 */
    .hamburger.active span:nth-child(3) {
        display: block;
    }

    /* Hero */
    .hero {
        padding: 0;
        min-height: 100vh;
        display: flex;
        align-items: stretch;
        justify-content: center;
    }

    .hero::before {
        background-image: url(https://ichipura.com/JAPolis_coporate//img/Layer.png);
        background-size: 100% auto;
        background-position: center 30%;
        opacity: 1;
    }

    /* SP：containerをflex縦並びにして上下に分ける */
    .hero .container {
        display: flex;
        align-items: stretch;
        padding: 0;
        width: 100%;
    }

    .hero-content {
        width: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }

    /* タイトルエリア（上部） */
    .hero-content>.hero-title-sp {
        display: block;
        width: 100%;
        max-width: 400px;
        margin: 71px 0 0 8px;
    }

    /* PC用ロゴ非表示 */
    .hero-content img.hero-logo-pc {
        display: none;
    }

    /* PC用タイトル非表示 */
    .hero-title-pc {
        display: none;
    }

    /* 本文テキスト表示（SPデザイン通り） */
    .hero-text {
        display: block;
        margin: 20px 20px 0;
    }

    .hero-text p {
        font-size: 12px;
        line-height: 2;
    }

    .hero-text br {
        display: none;
    }

    /* Scroll Down：下部中央 */
    .scroll-indicator {
        margin: 16px auto 24px;
        width: 100%;
        align-items: center;
    }

    /* セクション共通 */
    .section-title-en {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .section-title-ja {
        font-size: 18px;
        margin-bottom: 24px;
    }

    /* About */
    .about {
        padding: 60px 0;
    }

    .about-diagram {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }

    .about-diagram img {
        width: 100%;
        max-width: 320px;
    }

    /* MVV：縦並び・中央寄せ */
    .mvv {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .mvv-item {
        padding: 24px 0;
        text-align: center;
    }

    .mvv-item .title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .mvv-item p {
        font-size: 14px;
    }

    /* Service */
    .service {
        padding: 60px 0 80px;
    }

    .service-intro {
        font-size: 14px;
        line-height: 2;
    }

    /* 3つの柱：縦1列 */
    .service-pillars {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 24px;
    }

    .pillar {
        width: 100%;
        height: auto;
        padding: 20px;
        gap: 12px;
    }

    .pillar .category {
        font-size: 18px;
    }

    .pillar p {
        font-size: 14px;
    }

    /* Service Detail：テキスト→画像の縦並び */
    .service-detail1,
    .service-detail-sub {
        display: block;
        padding: 24px 16px;
    }

    .service-detail-content {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .service-detail-text {
        width: 100%;
    }

    /* SP用ロゴ画像：表示・中央寄せ */
    .service-sp-logo {
        display: block;
        width: 80%;
        max-width: 280px;
        margin: 16px auto 0;
    }

    /* PC用サービス画像：SP時は非表示 */
    .service-detail-image {
        display: none;
    }

    .service-detail-title {
        font-size: 16px;
    }

    .service-detail-description {
        font-size: 14px;
        margin-top: 16px;
    }

    .service-detail-category {
        font-size: 12px;
    }

    .btn-detail {
        padding: 14px 0;
        width: 100%;
        font-size: 12px;
        box-sizing: border-box;
    }

    .service-sns {
        flex-direction: column;
        gap: 16px;
        padding: 20px 16px;
        align-items: center;
        font-size: 12px;
    }

    .sns-icons {
        gap: 32px;
    }

    .sns-icons img {
        width: 45px;
        height: 45px;
    }

    .back-img {
        bottom: 0;
    }

    /* Philosophy */
    .philosophy {
        padding: 60px 0 40px;
    }

    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .philosophy-text {
        font-size: 14px;
    }

    .philosophy-images {
        position: static;
        margin-top: 32px;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .philosophy-image img {
        width: 100%;
        border-radius: 8px;
    }

    /* Message */
    .message {
        padding: 60px 0;
    }

    .message-content {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 24px;
    }

    .message-image img {
        width: 100%;
    }

    .message-text {
        position: static;
        top: auto;
        left: auto;
        width: 100%;
        padding: 20px;
        margin-top: 0;
        border-radius: 0 0 4px 4px;
    }

    .message-text h3 {
        font-size: 18px;
    }

    .message-name {
        font-size: 12px;
    }

    .message-body {
        font-size: 14px;
    }

    .message-signature img {
        width: 160px;
    }

    /* Company：ラベルと値を縦並び */
    .company {
        padding: 60px 0;
    }

    .company-row {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 14px 0;
    }

    .company-label {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.7);
    }

    .company-value {
        font-size: 12px;
    }

    /* Contact */
    .contact {
        padding: 60px 0 24px;
    }

    .contact-boxes {
        flex-direction: column;
        gap: 32px;
        align-items: stretch;
    }

    .contact-box {
        padding: 0;
    }

    .contact-box-title {
        font-size: 12px;
        text-align: center;
    }

    .mail-button {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 12px;
    }

    .line {
        display: none;
    }

    /* Footer */
    .footer {
        padding: 24px 0;
    }

    .footer-links a {
        font-size: 12px;
    }

    .copyright {
        font-size: 11px;
    }
}