:root {
    --yellow-50: #fffdf0;
    --yellow-100: #fff9d6;
    --yellow-200: #fff3a8;
    --yellow-300: #ffec7a;
    --yellow-400: #ffd700;
    --yellow-500: #f0c800;
    --yellow-600: #d4af00;
    --yellow-700: #b89600;
    --red-400: #e63946;
    --red-500: #d62839;
    --red-600: #b91c2e;
    --black-900: #1a1a1a;
    --black-800: #2d2d2d;
    --black-700: #3d3d3d;
    --cream: #fffdf5;
    --warm-white: #fffefa;
    --text-dark: #1a1a1a;
    --text-body: #3d3d3d;
    --text-muted: #6b6b6b;
    --border-light: rgba(255, 215, 0, 0.18);
    --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.07);
    --shadow-hover: 0 12px 40px rgba(255, 215, 0, 0.15);
    --font-main: 'Noto Sans JP', sans-serif;
    --radius: 30px;
    --radius-sm: 16px;
    --radius-xs: 10px;
    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

.bg-decor { position: fixed; width: 100%; height: 100%; top: 0; left: 0; overflow: hidden; z-index: -2; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.2; }
.blob-1 { width: 600px; height: 600px; background: var(--yellow-200); top: -200px; right: -100px; }
.blob-2 { width: 500px; height: 500px; background: var(--yellow-100); bottom: -150px; left: -100px; }

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

/* ===== Header ===== */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-container { display: flex; justify-content: space-between; align-items: center; height: 80px; }

.logo { display: flex; align-items: center; text-decoration: none; gap: 8px; }
.logo img, .logo svg { height: 36px; width: auto; object-fit: contain; }
.logo .logo-name { height: 70px; margin: 0 -12px; }

.nav-menu ul { display: flex; list-style: none; gap: 28px; align-items: center; }
.nav-menu a { text-decoration: none; color: var(--text-body); font-weight: 500; font-size: 0.9rem; letter-spacing: 0.02em; transition: var(--transition); }
.nav-menu a:hover { color: var(--red-400); }

.btn-primary-nav {
    background-color: var(--yellow-400);
    color: var(--black-900) !important;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 2px 12px rgba(255, 215, 0, 0.25);
    transition: var(--transition);
}
.btn-primary-nav:hover { background-color: var(--yellow-500); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255, 215, 0, 0.35); }

/* Mobile Menu */
.mobile-menu-btn { display: none; flex-direction: column; justify-content: space-between; width: 28px; height: 20px; background: none; border: none; cursor: pointer; z-index: 1001; }
.mobile-menu-btn span { display: block; width: 100%; height: 2px; background-color: var(--black-900); border-radius: 2px; transition: var(--transition); }
.mobile-menu-btn.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ===== Hero Split (index) ===== */
.hero-split {
    position: relative;
    display: flex;
    min-height: 100vh;
    background: var(--warm-white);
}

.hero-split-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 140px 0 80px 0;
}

.hero-split-content {
    max-width: 560px;
    margin-left: auto;
    padding: 0 48px 0 24px;
}

.hero-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--red-400);
    background: rgba(230, 57, 70, 0.08);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out both;
}

.hero-split-content h1 {
    font-size: 2.8rem;
    line-height: 1.45;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-split-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 2;
    margin-bottom: 36px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-split-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--black-900);
    color: var(--black-900);
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    font-size: 1rem;
}
.btn-outline-dark:hover {
    background: var(--black-900);
    color: #fff;
    transform: translateY(-2px);
}

.hero-split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(160deg, var(--black-900) 0%, #2a2000 60%, var(--black-800) 100%);
    padding: 120px 40px 80px;
    overflow: hidden;
}

/* Visual area */
.hero-visual {
    position: relative;
    width: 320px;
    height: 320px;
}

.hero-compass {
    width: 100%;
    height: 100%;
    animation: compassSpin 60s linear infinite;
}

@keyframes compassSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Float cards */
.hero-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 14px;
    padding: 10px 18px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.hero-fc-icon { display: flex; align-items: center; }
.hero-fc-1 { top: 10%; right: -20px; animation: floatCard 5s ease-in-out infinite; }
.hero-fc-2 { bottom: 30%; left: -30px; animation: floatCard 6s ease-in-out 1s infinite; }
.hero-fc-3 { bottom: 8%; right: 10px; animation: floatCard 5.5s ease-in-out 2s infinite; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Numbers bar */
.hero-numbers-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 28px 24px;
    background: var(--yellow-400);
    z-index: 10;
}

.hero-num-item { display: flex; align-items: baseline; gap: 6px; }
.hero-num-val { font-size: 1.6rem; font-weight: 800; color: var(--black-900); line-height: 1; }
.hero-num-val small { font-size: 1rem; }
.hero-num-text { font-size: 0.8rem; font-weight: 600; color: var(--black-800); }
.hero-num-sep { width: 1px; height: 28px; background: rgba(26, 26, 26, 0.2); }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Buttons ===== */
.btn-primary {
    background: var(--yellow-400);
    color: var(--black-900);
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.25);
}
.btn-primary:hover { background: var(--yellow-500); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(255, 215, 0, 0.35); }

.hero-btn-glow { position: relative; overflow: hidden; }
.hero-btn-glow::after {
    content: '';
    position: absolute;
    top: -50%; left: -60%;
    width: 40%; height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    animation: shimmer 3.5s ease-in-out infinite;
}
@keyframes shimmer { 0%, 100% { left: -60%; } 50% { left: 120%; } }

.btn-outline {
    background: transparent;
    border: 2px solid var(--yellow-400);
    color: var(--yellow-400);
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    font-size: 1rem;
}
.btn-outline:hover { background: var(--yellow-400); color: var(--black-900); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(255, 215, 0, 0.25); }

.btn-secondary {
    background: transparent;
    border: 2px solid var(--red-400);
    color: var(--red-400);
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    font-size: 1rem;
}
.btn-secondary:hover { background: var(--red-400); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(230, 57, 70, 0.25); }

.full-width { width: 100%; }
.center-btn { text-align: center; }
.mt-40 { margin-top: 40px; }
.pc-only { display: inline; }

/* ===== Sections ===== */
.section { padding: 100px 0; position: relative; }
.section-dark { background: var(--black-900); }
.section-head { margin-bottom: 60px; text-align: center; }
.section-label { font-weight: 700; color: var(--red-400); text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.8rem; margin-bottom: 12px; display: block; }
.section-title { font-size: 2.2rem; font-weight: 700; color: var(--text-dark); letter-spacing: -0.01em; }

/* ===== Strength Stack (numbered cards) ===== */
.strength-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.strength-card {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: var(--transition);
}

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

.strength-card-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    background: var(--black-900);
    color: var(--yellow-400);
    font-size: 2rem;
    font-weight: 800;
    flex-shrink: 0;
}

.strength-card-body {
    padding: 36px 40px;
    flex: 1;
}

.strength-card-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.5;
}

.strength-card-body p {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.9;
}

.strength-card-accent {
    width: 6px;
    background: var(--yellow-400);
    flex-shrink: 0;
}

/* ===== Service Tile Scroll ===== */
.svc-tile-scroll {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.svc-tile {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 215, 0, 0.12);
    border-radius: var(--radius-sm);
    padding: 28px 20px;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
}

.svc-tile:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: var(--yellow-400);
    transform: translateY(-4px);
}

.svc-tile-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-tile-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.svc-tile h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.svc-tile p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

/* ===== CTA Split ===== */
.cta-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.cta-split-left {
    flex: 1;
    padding-top: 12px;
}

.cta-split-left h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.4;
}

.cta-split-left > p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 32px;
}

.cta-trust-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.cta-split-right {
    flex: 1;
}

.cta-form-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 40px 36px;
    box-shadow: var(--shadow-card);
}

.form-input-light {
    width: 100%;
    padding: 16px 20px;
    background: var(--yellow-50);
    border: 1px solid var(--yellow-200);
    border-radius: var(--radius-xs);
    color: var(--text-dark);
    margin-bottom: 14px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-input-light::placeholder {
    color: var(--text-muted);
}

.form-input-light:focus {
    outline: none;
    border-color: var(--yellow-400);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.12);
}

/* ===== CTA Block (services page) ===== */
.cta-block {
    background: linear-gradient(135deg, var(--black-900) 0%, #2a2200 100%);
    border-radius: var(--radius);
    padding: 70px 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cta-block::before { content: ''; position: absolute; width: 400px; height: 400px; background: rgba(255, 215, 0, 0.06); border-radius: 50%; top: -200px; right: -100px; }
.cta-block::after { content: ''; position: absolute; width: 250px; height: 250px; background: rgba(255, 215, 0, 0.04); border-radius: 50%; bottom: -80px; left: -50px; }
.cta-text { text-align: center; margin-bottom: 40px; position: relative; z-index: 1; }
.cta-text h2 { font-size: 2rem; font-weight: 700; margin-bottom: 14px; line-height: 1.4; }
.cta-text p { opacity: 0.8; line-height: 1.8; font-size: 0.95rem; }

.form-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-xs);
    color: #fff;
    margin-bottom: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}
.form-input::placeholder { color: rgba(255, 255, 255, 0.45); }
.form-input:focus { outline: none; background: rgba(255, 255, 255, 0.12); border-color: var(--yellow-400); }

/* ===== Service Detail Cards (services.html) ===== */
.svc-detail-list { display: flex; flex-direction: column; gap: 24px; }
.svc-detail-card { display: flex; gap: 32px; background: #fff; padding: 40px; border-radius: var(--radius); border: 1px solid var(--border-light); box-shadow: var(--shadow-soft); transition: var(--transition); }
.svc-detail-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.svc-detail-icon { width: 100px; height: 100px; background: var(--yellow-50); border-radius: 24px; display: flex; align-items: center; justify-content: center; padding: 20px; flex-shrink: 0; border: 2px solid var(--yellow-200); }
.svc-detail-icon img { width: 100%; height: 100%; object-fit: contain; }
.svc-detail-body h3 { font-size: 1.3rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.svc-detail-body p { font-size: 0.95rem; color: var(--text-body); line-height: 1.85; margin-bottom: 16px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.svc-tag { background: var(--yellow-50); color: var(--black-800); padding: 6px 16px; border-radius: 20px; font-size: 0.82rem; font-weight: 600; border: 1px solid var(--yellow-200); }

.svc-sub-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.svc-sub-card { background: #fff; padding: 36px 28px; border-radius: var(--radius); border: 1px solid var(--border-light); box-shadow: var(--shadow-soft); transition: var(--transition); }
.svc-sub-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.svc-sub-icon { width: 48px; height: 48px; margin-bottom: 16px; }
.svc-sub-icon img { width: 100%; height: 100%; object-fit: contain; }
.svc-sub-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.svc-sub-card p { font-size: 0.9rem; color: var(--text-body); line-height: 1.8; }

/* ===== Hero Small (sub pages) ===== */
.hero-small {
    background: linear-gradient(135deg, var(--black-900) 0%, #2a2000 100%);
    color: #fff;
    padding: 160px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-small::after { content: ''; position: absolute; bottom: -60px; left: 50%; transform: translateX(-50%); width: 600px; height: 200px; background: radial-gradient(ellipse, rgba(255, 215, 0, 0.12) 0%, transparent 70%); pointer-events: none; }
.hero-small h1 { font-size: 2.4rem; font-weight: 700; margin-bottom: 8px; color: #fff; }
.hero-small p { color: rgba(255, 255, 255, 0.55); }

/* ===== Profile Table ===== */
.profile-section { background: var(--yellow-50); border-radius: var(--radius); padding: 60px; border: 1px solid var(--yellow-200); }
.profile-table { width: 100%; border-collapse: collapse; }
.profile-table tr { border-bottom: 1px solid var(--yellow-200); }
.profile-table tr:last-child { border-bottom: none; }
.profile-table th { text-align: left; padding: 24px 0; width: 200px; color: var(--red-500); font-size: 0.95rem; font-weight: 600; vertical-align: top; }
.profile-table td { padding: 24px 0; font-size: 1rem; color: var(--text-body); }
.profile-table td ul { padding-left: 18px; }
.profile-table td li { margin-bottom: 4px; }

/* ===== Contact (company page) ===== */
.contact-container { background: linear-gradient(135deg, var(--black-900) 0%, #2a2200 100%); border-radius: var(--radius); padding: 70px; color: #fff; display: flex; gap: 60px; position: relative; overflow: hidden; }
.contact-container::before { content: ''; position: absolute; width: 400px; height: 400px; background: rgba(255, 215, 0, 0.06); border-radius: 50%; top: -200px; right: -100px; }
.contact-container::after { content: ''; position: absolute; width: 250px; height: 250px; background: rgba(255, 215, 0, 0.04); border-radius: 50%; bottom: -80px; left: -50px; }
.contact-info-side { flex: 1; z-index: 1; }
.contact-info-side h2 { font-size: 2.4rem; font-weight: 700; margin-bottom: 16px; line-height: 1.3; }
.contact-info-side p { opacity: 0.8; line-height: 1.8; }
.contact-form-side { flex: 1; z-index: 1; }
.glass-input { width: 100%; padding: 16px 20px; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 215, 0, 0.2); border-radius: var(--radius-xs); color: #fff; margin-bottom: 16px; font-family: inherit; font-size: 0.95rem; transition: var(--transition); }
.glass-input::placeholder { color: rgba(255, 255, 255, 0.45); }
.glass-input:focus { outline: none; background: rgba(255, 255, 255, 0.12); border-color: var(--yellow-400); }

/* ===== Map ===== */
.map-container { width: 100%; height: 400px; background-color: var(--yellow-50); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--border-light); }
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* ===== Footer ===== */
.footer { padding: 60px 0 32px; background: var(--black-900); border-top: 2px solid var(--yellow-400); }
.footer-container { display: flex; justify-content: space-between; align-items: center; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { text-decoration: none; color: rgba(255, 255, 255, 0.5); font-size: 0.85rem; transition: var(--transition); }
.footer-links a:hover { color: var(--yellow-400); }
.copy { color: rgba(255, 255, 255, 0.4); font-size: 0.85rem; }

/* ===== Privacy ===== */
.privacy-content h3 { color: var(--text-dark); font-size: 1.1rem; font-weight: 600; margin-top: 32px; margin-bottom: 12px; }
.privacy-content ul { padding-left: 20px; margin: 8px 0 16px; }
.privacy-content li { margin-bottom: 4px; }

/* ===== Responsive: Tablet ===== */
@media (max-width: 1024px) {
    .header-container { height: 72px; }
    .logo .logo-name { height: 60px; margin: 0 -8px; }

    .hero-split { flex-direction: column; min-height: auto; }
    .hero-split-left { padding: 120px 0 40px; }
    .hero-split-content { max-width: 100%; margin: 0; padding: 0 24px; text-align: center; }
    .hero-split-actions { justify-content: center; }
    .hero-split-right { padding: 60px 40px 100px; min-height: 400px; }
    .hero-visual { width: 260px; height: 260px; }
    .hero-numbers-bar { gap: 32px; }

    .strength-card-body { padding: 28px 24px; }
    .svc-tile-scroll { grid-template-columns: repeat(3, 1fr); }
    .cta-split { gap: 40px; }
    .cta-block { padding: 50px 40px; }
    .contact-container { padding: 50px; gap: 40px; }
}

/* ===== Responsive: Mobile ===== */
@media (max-width: 768px) {
    .header-container { height: 64px; }
    .logo .logo-name { height: 54px; margin: 0 -6px; }
    .logo img:first-child { height: 32px !important; }

    .mobile-menu-btn { display: flex; }
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
        background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(10px);
        display: flex; align-items: center; justify-content: center;
        transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1); z-index: 1000;
        opacity: 0; visibility: hidden;
    }
    .nav-menu.active { right: 0; opacity: 1; visibility: visible; }
    .nav-menu ul { flex-direction: column; gap: 24px; text-align: center; }
    .nav-menu a { font-size: 1.2rem; font-weight: 600; color: var(--text-dark); }

    /* Hero Split - mobile */
    .hero-split { flex-direction: column; }
    .hero-split-left { padding: 110px 0 32px; }
    .hero-split-content { text-align: center; padding: 0 20px; }
    .hero-split-content h1 { font-size: 1.9rem; line-height: 1.5; }
    .hero-split-desc { font-size: 0.88rem; margin-bottom: 28px; }
    .hero-split-actions { justify-content: center; flex-direction: column; align-items: center; gap: 12px; }
    .hero-split-actions .btn-primary,
    .hero-split-actions .btn-outline-dark { width: 100%; max-width: 300px; text-align: center; }
    .pc-only { display: none; }

    .hero-split-right { padding: 40px 20px 100px; min-height: 320px; }
    .hero-visual { width: 220px; height: 220px; }
    .hero-float-card { font-size: 0.75rem; padding: 8px 14px; }
    .hero-fc-1 { right: 0; }
    .hero-fc-2 { left: 0; }

    .hero-numbers-bar { gap: 20px; padding: 20px 16px; flex-wrap: wrap; justify-content: center; }
    .hero-num-val { font-size: 1.3rem; }
    .hero-num-text { font-size: 0.72rem; }

    /* Strength cards - mobile */
    .strength-card { flex-direction: column; }
    .strength-card-num { width: 100%; height: 56px; font-size: 1.5rem; }
    .strength-card-body { padding: 24px 20px; }
    .strength-card-body h3 { font-size: 1.05rem; }
    .strength-card-body p { font-size: 0.85rem; }
    .strength-card-accent { width: 100%; height: 4px; }

    /* Service tiles - mobile */
    .svc-tile-scroll { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .svc-tile { padding: 20px 14px; }
    .svc-tile-icon { width: 36px; height: 36px; margin-bottom: 10px; }
    .svc-tile h3 { font-size: 0.88rem; }
    .svc-tile p { font-size: 0.72rem; }

    /* CTA Split - mobile */
    .cta-split { flex-direction: column; gap: 32px; }
    .cta-split-left h2 { font-size: 1.6rem; }
    .cta-form-card { padding: 28px 20px; }
    .form-input-light { padding: 14px 16px; }

    .cta-block { padding: 40px 20px; }
    .cta-text h2 { font-size: 1.5rem; }
    .cta-text p { font-size: 0.85rem; }

    /* Service detail cards - mobile */
    .svc-detail-card { flex-direction: column; gap: 20px; padding: 28px 20px; }
    .svc-detail-icon { width: 72px; height: 72px; padding: 14px; }
    .svc-detail-body h3 { font-size: 1.15rem; }
    .svc-detail-body p { font-size: 0.88rem; }
    .svc-tag { font-size: 0.78rem; padding: 5px 12px; }
    .svc-sub-grid { grid-template-columns: 1fr; gap: 14px; }
    .svc-sub-card { padding: 24px 20px; }

    .section { padding: 60px 0; }
    .section-head { margin-bottom: 36px; }
    .section-title { font-size: 1.5rem; }

    .hero-small { padding: 110px 0 48px; }
    .hero-small h1 { font-size: 1.8rem; }

    .profile-section { padding: 32px 20px; }
    .profile-table th { display: block; width: 100%; padding: 16px 0 4px; }
    .profile-table td { display: block; padding: 4px 0 16px; }

    .contact-container { padding: 40px 20px; gap: 28px; flex-direction: column; }
    .contact-info-side { text-align: center; }
    .contact-info-side h2 { font-size: 1.6rem; margin-bottom: 12px; }
    .contact-info-side p { font-size: 0.9rem; }
    .glass-input { padding: 14px 16px; margin-bottom: 12px; font-size: 0.95rem; }

    .btn-primary { padding: 15px 32px; font-size: 1rem; }
    .btn-secondary { padding: 13px 28px; font-size: 0.95rem; }
    .btn-outline { padding: 13px 28px; font-size: 0.95rem; }

    .footer-container { flex-direction: column; gap: 12px; text-align: center; }
}
