:root {
    --primary-color: #123F49;
    --primary-light: #1F6571;
    --ink: #0B1F25;
    --accent-color: #CDA23A;
    --accent-hover: #B98C26;
    --text-main: #233238;
    --text-muted: #64727A;
    --bg-light: #F3F6F7;
    --bg-white: #FFFFFF;
    --border-color: #DDE6EA;
    --line-green: #06C755;
    --shadow-soft: 0 18px 48px rgba(11, 31, 37, 0.10);
    --shadow-card: 0 10px 28px rgba(18, 63, 73, 0.08);
    
    --font-sans: 'Noto Sans JP', sans-serif;
    --font-serif: 'Noto Serif JP', serif;
    --font-cinzel: 'Cinzel', serif;
}

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

html {
    scroll-padding-top: 80px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    line-height: 1.8;
    background-color: #FBFCFC;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img { max-width: 100%; height: auto; }

.serif { font-family: var(--font-serif); }
.cinzel { font-family: var(--font-cinzel); }

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 112px 0;
    scroll-margin-top: 80px;
}

.text-center { text-align: center; }
.mt-5 { margin-top: 3rem; }
.bg-light { background-color: var(--bg-light); }
.bg-primary {
    background:
        linear-gradient(135deg, rgba(205,162,58,0.14), transparent 34%),
        linear-gradient(180deg, #123F49, #082A32);
    color: #fff;
}
.relative { position: relative; }
.z-10 { z-index: 10; }
.sp-only { display: none; }
.pc-only { display: inline; }

/* Section Label */
.section-label {
    font-family: var(--font-cinzel);
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    color: var(--accent-color);
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Section Title */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.section-heading {
    font-size: clamp(1.85rem, 3.2vw, 2.65rem);
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 2px;
    background: var(--accent-color);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 15px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.88);
    box-shadow: 0 10px 30px rgba(11,31,37,0.06);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(221,230,234,0.78);
    padding: 10px 0;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header-logo {
    height: 42px;
    width: auto;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-menu a {
    font-weight: 500;
    color: var(--primary-color);
    font-size: 0.86rem;
    letter-spacing: 0.03em;
}

.nav-menu a:hover { color: var(--accent-color); }

.btn-nav {
    background: var(--line-green);
    color: #fff !important;
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 0.85rem;
}

.btn-nav:hover {
    background: #05B34C;
    transform: translateY(-2px);
    color: #fff !important;
}

.btn-nav i { margin-right: 5px; }

.hamburger { display: none; }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: #fff;
    overflow: hidden;
    padding: 136px 24px 96px;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('hero_nagasaki_night.png') center center / cover no-repeat;
    filter: saturate(0.98) contrast(1.05) brightness(0.78);
    transform: translateZ(0) scale(1.01);
    will-change: transform;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background:
        linear-gradient(90deg, rgba(6,23,29,0.92) 0%, rgba(9,34,42,0.78) 36%, rgba(9,34,42,0.24) 68%, rgba(9,34,42,0.08) 100%),
        linear-gradient(180deg, rgba(6,23,29,0.20) 0%, rgba(6,23,29,0.72) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1120px;
    margin-left: max(24px, calc((100vw - 1180px) / 2));
}

.hero-subtitle {
    font-family: var(--font-cinzel);
    font-size: 0.86rem;
    letter-spacing: 0.28em;
    margin-bottom: 18px;
    color: var(--accent-color);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.45rem, 4.2vw, 4.15rem);
    line-height: 1.34;
    font-weight: 600;
    text-shadow: 0 18px 40px rgba(0,0,0,0.42);
    margin-bottom: 24px;
    letter-spacing: 0;
}

.hero-title-line {
    display: block;
    white-space: nowrap;
}

.hero-title-part {
    white-space: nowrap;
}

.hero-desc {
    font-size: 1.06rem;
    line-height: 2;
    opacity: 0.92;
    margin-bottom: 34px;
    max-width: 620px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn-hero-primary {
    padding: 14px 30px;
    border: 1px solid rgba(255,255,255,0.72);
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-hero-primary:hover {
    background: #fff;
    color: var(--primary-color);
}

.btn-hero-line {
    padding: 14px 30px;
    background: var(--line-green);
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--line-green);
    box-shadow: 0 14px 30px rgba(6,199,85,0.28);
}

.btn-hero-line:hover {
    background: #05B34C;
}

.btn-hero-line i { margin-right: 6px; }

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    width: min(680px, 100%);
    margin-top: 42px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(16px);
}

.hero-proof > div {
    padding: 18px 20px;
    background: rgba(7,30,37,0.38);
}

.proof-value {
    display: block;
    color: var(--accent-color);
    font-size: 1.35rem;
    line-height: 1.1;
    font-weight: 700;
}

.proof-label {
    display: block;
    margin-top: 5px;
    font-size: 0.76rem;
    color: rgba(255,255,255,0.76);
    letter-spacing: 0.08em;
}

.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 10;
    width: 1px;
    height: 52px;
    background: rgba(255,255,255,0.22);
}

.hero-scroll span {
    display: block;
    width: 1px;
    height: 18px;
    background: var(--accent-color);
    animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: translateY(0); opacity: 0; }
    35% { opacity: 1; }
    100% { transform: translateY(34px); opacity: 0; }
}

/* ===== VISION ===== */
.vision { background: var(--bg-white); }

.vision-voc {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 40px 0 30px;
    flex-wrap: wrap;
}

.voc-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 15px 18px;
    background: #F8FAFA;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.voc-letter {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.voc-equal {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.voc-word {
    font-size: 1.3rem;
    color: var(--text-main);
    font-weight: 500;
}

.vision-message {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 2;
}

/* ===== VALUE STRIP ===== */
.value-strip {
    padding: 92px 0;
    background:
        linear-gradient(135deg, rgba(205,162,58,0.10), transparent 30%),
        linear-gradient(180deg, #123F49 0%, #082A32 100%);
    color: #fff;
}

.value-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.45fr;
    gap: 56px;
    align-items: center;
}

.value-title {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.35;
    margin-bottom: 22px;
}

.value-desc {
    color: rgba(255,255,255,0.76);
    font-size: 1rem;
    line-height: 2;
    max-width: 430px;
    margin-bottom: 26px;
}

.value-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.95rem;
}

.value-link i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.value-link:hover i {
    transform: translateX(5px);
}

.value-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.value-step {
    min-height: 260px;
    padding: 30px 26px;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(10px);
    border-radius: 8px;
}

.value-step-num {
    display: block;
    color: var(--accent-color);
    font-size: 0.92rem;
    letter-spacing: 0.16em;
    margin-bottom: 42px;
}

.value-step h3 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 14px;
}

.value-step p {
    color: rgba(255,255,255,0.72);
    font-size: 0.92rem;
    line-height: 1.9;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0 26px 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    min-height: 100%;
    box-shadow: 0 1px 0 rgba(18,63,73,0.03);
}

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

.service-card-featured {
    border-color: var(--border-color);
    box-shadow: 0 1px 0 rgba(18,63,73,0.03);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), rgba(205,162,58,0));
    z-index: 2;
}

.service-visual {
    margin: 0 -26px 26px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #DDE6EA;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.94) contrast(1.02);
    transition: transform 0.5s ease;
}

.service-card:hover .service-visual img {
    transform: scale(1.04);
}

.service-icon-wrap {
    width: 54px; height: 54px;
    background: #0F3D48;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.service-kicker {
    font-family: var(--font-cinzel);
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    color: var(--accent-color);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.service-brand {
    font-family: var(--font-cinzel);
    font-size: 0.8rem;
    color: var(--accent-color);
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}

.service-card > p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    font-size: 0.9rem;
    color: var(--text-main);
    padding: 5px 0;
}

.service-features i {
    color: var(--accent-color);
    margin-right: 8px;
    font-size: 0.8rem;
}

.service-link {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}

.service-link:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.service-link i { font-size: 0.8rem; transition: transform 0.3s; }
.service-link:hover i { transform: translateX(4px); }

/* ===== STORY ===== */
.split-layout {
    display: flex;
    align-items: center;
    gap: 72px;
}

.split-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.split-image::before {
    content: '';
    position: absolute;
    inset: 10% 6%;
    background:
        linear-gradient(135deg, rgba(205,162,58,0.18), transparent 42%),
        #EAF0F2;
    border-radius: 8px;
    transform: rotate(-3deg);
}

.floating-logo {
    max-width: 72%;
    height: auto;
    filter: drop-shadow(0 22px 35px rgba(21,70,82,0.18));
    position: relative;
    z-index: 1;
}

.split-text { flex: 1.2; }

.story-catch {
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.5;
    font-family: var(--font-serif);
}

.story-content p {
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 1rem;
}

/* ===== MEANING ===== */
.meaning-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.meaning-card {
    background: var(--bg-white);
    padding: 38px 28px;
    border-radius: 8px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.meaning-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
}

.card-number {
    position: absolute;
    top: -15px; right: -10px;
    font-size: 7rem;
    color: rgba(21,70,82,0.03);
    line-height: 1;
}

.card-icon {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.meaning-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.small-text {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: var(--font-sans);
    margin-top: 4px;
    font-weight: 400;
}

.meaning-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* ===== REPRESENTATIVE ===== */
.rep-layout {
    display: flex;
    gap: 68px;
    align-items: flex-start;
}

.rep-photo {
    flex: 0 0 320px;
    position: sticky;
    top: 112px;
}

.rep-photo-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #e8eef1 0%, #d0dde3 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    gap: 10px;
    font-size: 1rem;
}

.rep-image {
    width: 320px;
    height: 420px;
    object-fit: cover;
    object-position: top center;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    border: 8px solid #fff;
    display: block;
    margin: 0 auto;
}

.rep-text { flex: 1; }

.rep-name {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--accent-color);
}

.rep-name span { font-size: 1.5rem; }

.rep-message p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.rep-message p:first-child {
    font-size: 1.2rem;
    font-family: var(--font-serif);
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.rep-profile {
    margin-top: 25px;
    padding: 22px 24px;
    border: 1px solid var(--border-color);
    background: #fff;
    border-radius: 8px;
}

.rep-profile-name {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 5px;
}

.rep-profile p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.text-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--accent-color);
    text-underline-offset: 3px;
}

.text-link:hover {
    color: var(--accent-color);
}

/* ===== COMPANY ===== */
.company-table-wrap {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

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

.company-table th,
.company-table td {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
    font-size: 0.95rem;
    vertical-align: top;
}

.company-table th {
    width: 160px;
    color: var(--primary-color);
    font-weight: 600;
    background: #F7FAFA;
}

.company-table td {
    color: var(--text-main);
}

.table-line-link {
    color: var(--line-green);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.table-line-link:hover { opacity: 0.8; }

/* ===== CTA ===== */
.message-cta {
    position: relative;
    background:
        linear-gradient(90deg, rgba(5,22,28,0.94), rgba(7,39,48,0.82)),
        url('kunchi_bg.jpg') center / cover;
    color: #fff;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background:
        linear-gradient(180deg, rgba(5,22,28,0.22), rgba(5,22,28,0.76)),
        radial-gradient(circle at 50% 20%, rgba(205,162,58,0.15) 0%, transparent 52%);
}

.cta-label {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.message-title {
    font-size: clamp(1.75rem, 3.5vw, 2.8rem);
    line-height: 1.7;
    margin-bottom: 20px;
}

.message-subtitle {
    font-size: 1.05rem;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.8;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    padding: 16px 36px;
    border-radius: 999px;
    font-size: 1.05rem;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-primary:hover i.fa-arrow-right {
    transform: translateX(5px);
}

.btn-primary i.fa-arrow-right { transition: transform 0.3s; }

.line-btn {
    background: var(--line-green);
    box-shadow: 0 10px 25px rgba(6,199,85,0.3);
}

.line-btn:hover {
    background: #05B34C;
    box-shadow: 0 15px 30px rgba(6,199,85,0.4);
}

.cta-note {
    margin-top: 15px;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ===== FOOTER ===== */
.footer {
    background: #071E25;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-info { flex: 1.5; }

.footer-logo {
    height: 45px;
    margin-bottom: 15px;
    display: block;
    opacity: 0.94;
}

.footer-info p {
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-links h4 {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

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

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .split-layout { flex-direction: column; text-align: center; }
    .split-text { text-align: left; }
    .meaning-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 2.6rem; }
    .value-layout { grid-template-columns: 1fr; gap: 36px; }
    .rep-layout { flex-direction: column; align-items: center; }
    .rep-photo { flex: none; width: 100%; text-align: center; margin-bottom: 20px; position: static; }
    .rep-image { width: min(360px, 100%); height: 420px; }
}

@media (max-width: 768px) {
    .sp-only { display: block; }
    .pc-only { display: none; }
    
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; max-width: 300px;
        height: 100vh;
        background: rgba(255,255,255,0.98);
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
        padding: 80px 30px;
        transition: right 0.4s ease;
        z-index: 999;
    }
    .nav-menu.active { right: 0; }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
    
    .nav-menu a { color: var(--text-main); font-size: 1rem; }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px; height: 20px;
        cursor: pointer;
        z-index: 1001;
    }
    .hamburger span {
        display: block; width: 100%; height: 2.5px;
        background: var(--primary-color);
        transition: 0.3s;
    }
    .hamburger.active span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }
    
    .services-grid { grid-template-columns: 1fr; }
    .meaning-grid { grid-template-columns: 1fr; }
    .value-strip { padding: 72px 0; }
    .value-steps { grid-template-columns: 1fr; }
    .value-step { min-height: auto; }
    .value-step-num { margin-bottom: 26px; }
    .hero {
        min-height: 86vh;
        text-align: left;
        padding: 112px 22px 62px;
    }
    .hero-content { margin-left: 0; }
    .hero-title {
        font-size: clamp(1.95rem, 7.2vw, 2.45rem);
        line-height: 1.34;
    }
    .hero-title-line,
    .hero-title-part {
        display: block;
        white-space: nowrap;
    }
    .hero-bg { background-position: 58% center; }
    .hero-overlay {
        background:
            linear-gradient(90deg, rgba(6,23,29,0.94) 0%, rgba(9,34,42,0.82) 58%, rgba(9,34,42,0.42) 100%),
            linear-gradient(180deg, rgba(6,23,29,0.16) 0%, rgba(6,23,29,0.78) 100%);
    }
    .hero-proof { display: none; }
    .section-title { font-size: 1.9rem; }
    .message-title { font-size: 1.6rem; }
    .vision-voc { gap: 20px; }
    .services.section-padding { padding-top: 64px; }
    .service-card { padding: 0 24px 28px; }
    .service-visual { margin: 0 -24px 24px; }
    .footer-flex { flex-direction: column; gap: 30px; }
    .company-table th { width: 120px; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .hero-title { font-size: 1.9rem; }
    .hero-desc { font-size: 0.95rem; }
    .section-padding { padding: 70px 0; }
    .value-strip { padding: 64px 0; }
    .value-title { font-size: 2rem; }
    .value-step { padding: 26px 24px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn-hero-primary, .btn-hero-line { width: 100%; text-align: center; justify-content: center; }
    .company-table th, .company-table td { display: block; width: 100%; }
    .company-table th { border-bottom: none; padding-bottom: 5px; }
    .rep-image { height: 360px; }
    .hero-scroll { display: none; }
}
