:root {
    --navy-50: #eef1f7;
    --navy-100: #d5dbe8;
    --navy-200: #a8b5d0;
    --navy-300: #7b8fb8;
    --navy-400: #4e69a0;
    --navy-500: #2a4073;
    --navy-600: #1e3160;
    --navy-700: #14234d;
    --navy-800: #0d1a3a;
    --warm-white: #f8f9fc;
    --ice: #f0f2f8;
    --text-dark: #1a2340;
    --text-body: #3d4a62;
    --text-muted: #6b7a94;
    --border-light: rgba(42, 64, 115, 0.1);
    --shadow-soft: 0 4px 20px rgba(20, 35, 77, 0.05);
    --shadow-card: 0 8px 28px rgba(20, 35, 77, 0.07);
    --shadow-hover: 0 12px 36px rgba(20, 35, 77, 0.12);
    --font-main: 'Noto Sans JP', sans-serif;
    --radius: 30px;
    --radius-sm: 16px;
    --radius-xs: 10px;
}

* {
    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;
}

/* ===== Background Decorations ===== */
.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%;
    opacity: 0.15;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--navy-100);
    top: -180px;
    right: -80px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--navy-50);
    bottom: -120px;
    left: -80px;
}

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

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

.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: color 0.3s ease;
}

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

.btn-primary-nav {
    background-color: var(--navy-500);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    box-shadow: 0 2px 12px rgba(42, 64, 115, 0.18);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary-nav:hover {
    background-color: var(--navy-600);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(42, 64, 115, 0.25);
}

/* ===== Mobile Menu Button ===== */
.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(--navy-600);
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.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 Asymmetric (index.html) ===== */
.hero-asym {
    position: relative;
    padding-top: 160px;
    padding-bottom: 100px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 50% at 20% 30%, rgba(42, 64, 115, 0.04) 0%, transparent 70%),
        linear-gradient(165deg, var(--warm-white) 0%, var(--ice) 50%, var(--navy-50) 100%);
}

.hero-asym-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-tagline {
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--navy-400);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.hero-tagline::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background-color: var(--navy-400);
    border-radius: 1px;
}

.hero-asym h1 {
    font-size: 3rem;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.hero-desc {
    font-size: 1rem;
    color: var(--text-body);
    margin-bottom: 40px;
    max-width: 480px;
    line-height: 2;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero geometric visual */
.hero-geo {
    position: relative;
    height: 420px;
}

.geo-block {
    position: absolute;
    border-radius: var(--radius-sm);
    opacity: 0.9;
}

.geo-block-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--navy-500), var(--navy-600));
    top: 20px;
    right: 0;
    border-radius: var(--radius);
}

.geo-block-2 {
    width: 160px;
    height: 160px;
    background: var(--navy-100);
    top: 140px;
    right: 180px;
    border-radius: var(--radius);
}

.geo-block-3 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--navy-400), var(--navy-500));
    bottom: 40px;
    right: 60px;
    border-radius: var(--radius-sm);
}

.geo-block-4 {
    width: 80px;
    height: 80px;
    background: var(--navy-200);
    top: 60px;
    right: 240px;
    border-radius: 50%;
}

.geo-line-h {
    position: absolute;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--navy-300), transparent);
    top: 250px;
    right: 300px;
    border-radius: 2px;
    opacity: 0.5;
}

.geo-line-v {
    position: absolute;
    width: 3px;
    height: 80px;
    background: linear-gradient(180deg, var(--navy-300), transparent);
    bottom: 100px;
    right: 340px;
    border-radius: 2px;
    opacity: 0.5;
}

/* Hero badge strip */
.hero-badge-strip {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}

.hero-badge {
    display: flex;
    flex-direction: column;
}

.hero-badge-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy-500);
    line-height: 1.2;
}

.hero-badge-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
}

/* ===== Buttons ===== */
.btn-primary {
    background: var(--navy-500);
    color: #fff;
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(42, 64, 115, 0.18);
}

.btn-primary:hover {
    background: var(--navy-600);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(42, 64, 115, 0.25);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--navy-400);
    color: var(--navy-600);
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 1rem;
}

.btn-outline:hover {
    background: var(--navy-500);
    color: #fff;
    border-color: var(--navy-500);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(42, 64, 115, 0.18);
}

.full-width {
    width: 100%;
}

/* ===== PC Only ===== */
.pc-only {
    display: inline;
}

/* ===== Sections ===== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-head {
    margin-bottom: 60px;
    text-align: center;
}

.section-label {
    font-weight: 600;
    color: var(--navy-400);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    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;
}

/* ===== Timeline Strengths ===== */
.timeline {
    position: relative;
    max-width: 740px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--navy-200), var(--navy-100), transparent);
}

.timeline-item {
    display: flex;
    gap: 36px;
    margin-bottom: 48px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    width: 56px;
    height: 56px;
    background: var(--navy-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(42, 64, 115, 0.2);
}

.timeline-marker img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.timeline-content {
    background: #fff;
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.timeline-content p {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.85;
}

/* ===== Service Card Grid (2 col, horizontal layout) ===== */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.svc-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #fff;
    padding: 28px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.svc-card-icon {
    width: 52px;
    height: 52px;
    background: var(--navy-50);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    flex-shrink: 0;
}

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

.svc-card-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.svc-card-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== CTA Block (navy gradient + centered form) ===== */
.cta-block {
    background: linear-gradient(145deg, var(--navy-600), var(--navy-500));
    border-radius: var(--radius);
    padding: 70px 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-block::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    top: -180px;
    right: -80px;
}

.cta-block::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    bottom: -70px;
    left: -40px;
}

.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.9;
    line-height: 1.8;
    font-size: 0.95rem;
}

.cta-form {
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-xs);
    color: #fff;
    margin-bottom: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.form-row .form-input {
    margin-bottom: 0;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.45);
}

/* ===== 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: transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-detail-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.svc-detail-icon {
    width: 100px;
    height: 100px;
    background: var(--navy-50);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    flex-shrink: 0;
}

.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(--navy-50);
    color: var(--navy-600);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 500;
    border: 1px solid var(--border-light);
}

/* Service Sub Grid */
.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: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.svc-sub-icon {
    width: 48px;
    height: 48px;
    background: var(--navy-50);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    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(165deg, var(--warm-white) 0%, var(--navy-50) 100%);
    color: var(--text-dark);
    padding: 160px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-small h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.hero-small p {
    color: var(--text-muted);
}

/* ===== Profile Table ===== */
.profile-section {
    background: var(--navy-50);
    border-radius: var(--radius);
    padding: 60px;
    border: 1px solid var(--border-light);
}

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

.profile-table tr {
    border-bottom: 1px solid var(--border-light);
}

.profile-table tr:last-child {
    border-bottom: none;
}

.profile-table th {
    text-align: left;
    padding: 24px 0;
    width: 200px;
    color: var(--navy-600);
    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;
}

/* ===== Map ===== */
.map-container {
    width: 100%;
    height: 400px;
    background-color: var(--navy-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;
}

/* ===== Contact Section (company page) ===== */
.contact-container {
    background: linear-gradient(145deg, var(--navy-600), var(--navy-500));
    border-radius: var(--radius);
    padding: 70px;
    color: #fff;
    display: flex;
    gap: 60px;
    position: relative;
    overflow: hidden;
}

.contact-container::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    top: -180px;
    right: -80px;
}

.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.9;
    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.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-xs);
    color: #fff;
    margin-bottom: 16px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.glass-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.45);
}

/* ===== Footer ===== */
.footer {
    padding: 60px 0 32px;
    background: var(--ice);
    border-top: 1px solid var(--border-light);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

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

.copy {
    color: var(--text-muted);
    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-asym {
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .hero-asym-inner {
        gap: 40px;
    }

    .hero-asym h1 {
        font-size: 2.4rem;
    }

    .hero-geo {
        height: 340px;
    }

    .geo-block-1 { width: 160px; height: 160px; }
    .geo-block-2 { width: 130px; height: 130px; right: 140px; }
    .geo-block-3 { width: 100px; height: 100px; }
    .geo-block-4 { width: 60px; height: 60px; right: 200px; }

    .svc-grid {
        gap: 16px;
    }

    .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 Asymmetric - mobile */
    .hero-asym {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-asym-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-asym h1 {
        font-size: 2rem;
        line-height: 1.45;
    }

    .hero-desc {
        font-size: 0.9rem;
        margin-bottom: 28px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }

    .hero-btns .btn-primary,
    .hero-btns .btn-outline {
        text-align: center;
        width: 100%;
        max-width: 300px;
    }

    .hero-geo {
        height: 220px;
        order: -1;
    }

    .geo-block-1 { width: 120px; height: 120px; right: 0; top: 0; }
    .geo-block-2 { width: 100px; height: 100px; right: auto; left: 0; top: 80px; }
    .geo-block-3 { width: 80px; height: 80px; right: 30%; bottom: 0; }
    .geo-block-4 { width: 50px; height: 50px; right: auto; left: 40%; top: 0; }
    .geo-line-h, .geo-line-v { display: none; }

    .hero-badge-strip {
        gap: 20px;
        margin-top: 32px;
        padding-top: 24px;
    }

    .hero-badge-num {
        font-size: 1.3rem;
    }

    .hero-badge-label {
        font-size: 0.7rem;
    }

    .pc-only {
        display: none;
    }

    /* Timeline - mobile */
    .timeline::before {
        left: 20px;
    }

    .timeline-marker {
        width: 42px;
        height: 42px;
    }

    .timeline-marker img {
        width: 20px;
        height: 20px;
    }

    .timeline-item {
        gap: 20px;
        margin-bottom: 32px;
    }

    .timeline-content {
        padding: 24px 20px;
    }

    .timeline-content h3 {
        font-size: 1.05rem;
    }

    .timeline-content p {
        font-size: 0.85rem;
    }

    /* Service grid - mobile */
    .svc-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .svc-card {
        padding: 22px 18px;
        gap: 16px;
    }

    .svc-card-icon {
        width: 44px;
        height: 44px;
        padding: 8px;
    }

    .svc-card-body h3 {
        font-size: 0.95rem;
    }

    .svc-card-body p {
        font-size: 0.8rem;
    }

    /* CTA - mobile */
    .cta-block {
        padding: 40px 20px;
    }

    .cta-text {
        margin-bottom: 28px;
    }

    .cta-text h2 {
        font-size: 1.5rem;
    }

    .cta-text p {
        font-size: 0.85rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-row .form-input {
        margin-bottom: 12px;
    }

    .form-input {
        padding: 14px 16px;
        font-size: 0.95rem;
    }

    /* Service detail - 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;
    }

    /* Sections */
    .section {
        padding: 60px 0;
    }

    .section-head {
        margin-bottom: 36px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    /* Hero small - mobile */
    .hero-small {
        padding: 110px 0 48px;
    }

    .hero-small h1 {
        font-size: 1.8rem;
    }

    /* Profile - mobile */
    .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 - mobile */
    .contact-container {
        padding: 40px 20px;
        gap: 28px;
        flex-direction: column;
    }

    .contact-info-side {
        text-align: center;
    }

    .contact-info-side h2 {
        font-size: 1.6rem;
    }

    .glass-input {
        padding: 14px 16px;
        margin-bottom: 12px;
    }

    .btn-primary {
        padding: 15px 32px;
        font-size: 1rem;
    }

    .btn-outline {
        padding: 13px 28px;
        font-size: 0.95rem;
    }

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